atoo 6 Share Posted April 17, 2019 I've checked some scripts that use config to check where you are @ a quest. But i don't really understand how to use it, could anyone lend me a hand or show any great example? Cheers. Link to comment Share on other sites More sharing options...
RetroBot 35 Share Posted April 17, 2019 When making your script be sure to have the player settings up in the debugger and check it every action you do during a quest (examples - talking to npc for quest, gathering items for a quest, etc) since the configs are normally updated after every required action during a quest. Here's an example for the waterfall quest. script.getPlayerSettings().getConfig(65) == 0 The waterfall quest is [65] under the player settings and if the quest is not started a 0 will be next to it. Once you begin the quest the config will be updated to [65] 1. Link to comment Share on other sites More sharing options...
atoo 6 Author Share Posted April 18, 2019 13 hours ago, RetroBot said: When making your script be sure to have the player settings up in the debugger and check it every action you do during a quest (examples - talking to npc for quest, gathering items for a quest, etc) since the configs are normally updated after every required action during a quest. Here's an example for the waterfall quest. script.getPlayerSettings().getConfig(65) == 0 The waterfall quest is [65] under the player settings and if the quest is not started a 0 will be next to it. Once you begin the quest the config will be updated to [65] 1. Thanks, how can i get the numbers for each quest? Link to comment Share on other sites More sharing options...
atoo 6 Author Share Posted April 18, 2019 3 hours ago, atoo said: Thanks, how can i get the numbers for each quest? Nevermind i found out, thanks! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.