August 22, 201312 yr Hello! How can I retrieve quest status: Not started, Started, Complete? Or how can I fetch interface text in quests area, click quest and read what is typed in its description? Thanks, dark_xor.
August 22, 201312 yr Hello! How can I retrieve quest status: Not started, Started, Complete? Or how can I fetch interface text in quests area, click quest and read what is typed in its description? Thanks, dark_xor. Use "Configs". You can turn them on in "Settings -> Advanced". I've used this in my SnapeGrass script to check if the Quest "Fremmenik Trails" has been started: if(client.getConfig(347) != 1) { // Quest has not been started. } Every quest has another config ID. You have to start a quest and keep an eye on config changes. ;)