|
Post by Shawn Dao on Feb 5, 2020 11:57:56 GMT
Is it possible to add in custom location? (ie. get current coordinates - for NM) Nope
|
|
|
Post by espadz on Feb 5, 2020 14:00:39 GMT
Hey Sangdao , first of all thank you very much for your work , i wonder if you could explain to me how the script works exactly , for example does the auto repetitive quest checks each time depending on the frequency/time interval you give ? lets say i put 10 seconds , will this mean that the script will check for completed repetitive quests every 10 seconds and validates them and retakes them again ? because if that's the case then it isn't working properly , same exact thing with the usage of black spirit skills, i have debug enabled so i can see the areas that the script is verifying , it seems like he only checks completed quests first time then he doesn't every 10 seconds as the example i gave or its possible that i don't understand how it works/got it wrong maybe
|
|
|
Post by thenewguy on Feb 5, 2020 17:18:31 GMT
Had an issue where the bot constantly brought pots til bag was full. I'll send you the log if it happens again.
|
|
|
Post by furbach on Feb 5, 2020 17:29:40 GMT
why the script pauses without commands?
|
|
|
Post by aelzki on Feb 5, 2020 23:41:20 GMT
What is the difference with Return farm location and change farm location? what is the best timing for those Shawn Dao
|
|
|
Post by Shawn Dao on Feb 6, 2020 13:49:45 GMT
why the script pauses without commands? Please send me a pm with video and log
|
|
|
Post by Shawn Dao on Feb 6, 2020 13:53:29 GMT
What is the difference with Return farm location and change farm location? what is the best timing for those Shawn Dao Return farm location: It make your char run back to farm location. Let says you set 1800 seconds and you're in saved location 1. Every 30 minutes, your char will return to saved location 1 Change farm location: It change farm location periodically. For e.g: You set 3600 seconds, your char will change farm location every 1 hour Keeps value as default for best settings
|
|
|
Post by Shawn Dao on Feb 6, 2020 14:07:49 GMT
Hey Sangdao , first of all thank you very much for your work , i wonder if you could explain to me how the script works exactly , for example does the auto repetitive quest checks each time depending on the frequency/time interval you give ? lets say i put 10 seconds , will this mean that the script will check for completed repetitive quests every 10 seconds and validates them and retakes them again ? because if that's the case then it isn't working properly , same exact thing with the usage of black spirit skills, i have debug enabled so i can see the areas that the script is verifying , it seems like he only checks completed quests first time then he doesn't every 10 seconds as the example i gave or its possible that i don't understand how it works/got it wrong maybe There is an endless loop running behind. Every cycle of the loop will trigger the enabled functions. Here what a cycle looks like: -- If char is in village if (isInVillage()) then doSellJunk()
doBuyPotion()
doBuyPetFood() end
doRotateLocation()
doReturnLocation()
doSpoils()
doCompleteQuests()
doWorldBoss()
doOutlaw()
doUltimateSkills()
doUpgradeSkill()
doOpenArenaChest()
doFuseLightStone()
doFuseCrystal()
doPetFeed()
doAbsorb()
doBlackSpiritQuest()
if(checkBagFull()) then returnToVillage() end
deadCheck()
The functions are only be triggered if it satisfied 2 following conditions: - Enabled - Time comes or In Village (Buy Potion, Sell Junk, Buy Pet Food)
|
|
|
Post by aelzki on Feb 6, 2020 14:20:00 GMT
What is the difference with Return farm location and change farm location? what is the best timing for those Shawn Dao Return farm location: It make your char run back to farm location. Let says you set 1800 seconds and you're in saved location 1. Every 30 minutes, your char will return to saved location 1 Change farm location: It change farm location periodically. For e.g: You set 3600 seconds, your char will change farm location every 1 hour Keeps value as default for best settings Got it. Another question, would you be able to add camp gathering functions?
|
|
|
Post by aelzki on Feb 6, 2020 14:26:48 GMT
Return farm location: It make your char run back to farm location. Let says you set 1800 seconds and you're in saved location 1. Every 30 minutes, your char will return to saved location 1 Change farm location: It change farm location periodically. For e.g: You set 3600 seconds, your char will change farm location every 1 hour Keeps value as default for best settings Got it. Another question, would you be able to add camp gathering functions? Another one, once the WB ends, my character ends up stucked in World Boss entrance.
|
|
|
Post by espadz on Feb 6, 2020 16:23:48 GMT
Hey Sangdao , first of all thank you very much for your work , i wonder if you could explain to me how the script works exactly , for example does the auto repetitive quest checks each time depending on the frequency/time interval you give ? lets say i put 10 seconds , will this mean that the script will check for completed repetitive quests every 10 seconds and validates them and retakes them again ? because if that's the case then it isn't working properly , same exact thing with the usage of black spirit skills, i have debug enabled so i can see the areas that the script is verifying , it seems like he only checks completed quests first time then he doesn't every 10 seconds as the example i gave or its possible that i don't understand how it works/got it wrong maybe There is an endless loop running behind. Every cycle of the loop will trigger the enabled functions. Here what a cycle looks like: -- If char is in village if (isInVillage()) then doSellJunk()
doBuyPotion()
doBuyPetFood() end
doRotateLocation()
doReturnLocation()
doSpoils()
doCompleteQuests()
doWorldBoss()
doOutlaw()
doUltimateSkills()
doUpgradeSkill()
doOpenArenaChest()
doFuseLightStone()
doFuseCrystal()
doPetFeed()
doAbsorb()
doBlackSpiritQuest()
if(checkBagFull()) then returnToVillage() end
deadCheck()
The functions are only be triggered if it satisfied 2 following conditions: - Enabled - Time comes or In Village (Buy Potion, Sell Junk, Buy Pet Food) So this means that the check frequency should be set the same for everything ? ill try using the default and let you know
|
|
|
Post by conget on Feb 6, 2020 19:45:10 GMT
I purchased pro because I thought that was the issue, whenever i runs script i get this issue.
|
|
|
Post by Shawn Dao on Feb 7, 2020 0:29:41 GMT
Return farm location: It make your char run back to farm location. Let says you set 1800 seconds and you're in saved location 1. Every 30 minutes, your char will return to saved location 1 Change farm location: It change farm location periodically. For e.g: You set 3600 seconds, your char will change farm location every 1 hour Keeps value as default for best settings Got it. Another question, would you be able to add camp gathering functions? Will think about it
|
|
|
Post by Shawn Dao on Feb 7, 2020 0:29:55 GMT
Got it. Another question, would you be able to add camp gathering functions? Another one, once the WB ends, my character ends up stucked in World Boss entrance. Please send me a pm with logs. Thanks!
|
|
|
Post by Shawn Dao on Feb 7, 2020 0:30:25 GMT
I purchased pro because I thought that was the issue, whenever i runs script i get this issue. Redownload the script
|
|