Originally Posted by
remi87
hey Angry,
appreciate the help. It seems to be working after I put in that sleep command. But why isnt the script saving when I change stuff? I put False for picking up rare items and it still is picking up rare items etc... What could be causing it NOT to save anything I change in the script?
1 last thing, when I kill the mobs in the celler, my character teleports to early before my ferrets pick up all the gold. Do you know where in the script I can change this?And if it doesnt work, where do I need to put a sleep command at?
For looting, you need to change the False in the INI file, NOT in the script itself. The script will always do what the INI file says, reguardless of what you add to the script.
For the gold, its best to just add some pickup radius. Getting ~20 will grab all the gold on the screen, and you wont need your ferrets at all to pick up gold. Tho you should still use them for the 10% GF they provide.
As for adding a longer delay, its line 295ish.
Code:
Send($skillCompanion)
RandSleep(5, 10, 50)
Call("TownPortal")
Just change to look like:
Code:
Send($skillCompanion)
RandSleep(5, 10, 50)
Sleep(3000)
Call("TownPortal")