Ill try to give as much info as possible
here is what happens from my understanding, the bot finishes and logs into next character, bot succesfully logs into next character and trys to goto waypoint one or closest, BUT bot thinks its at a X,Y,Z location its not really at? and enters a chain unsticking loop till stoped.
Code: Select all
You did 10 of 10 All Done Stop.
CharacterName = $$$$ Done
Loading next character on this account
Use MACRO: Executing RoMScript "}LoginNextToon=true;a={".
Use MACRO: Executing RoMScript "Logout();".
Player address changed: 0x4525C300
Maximum range of range attack skills is less than COMBAT_DISTANCE 100. Reducing
COMBAT_DISTANCE setting to 0.
Loading Next Farmer..
We changed the option 'COMBAT_DISTANCE' from '0' to '90'.
We changed the option 'COMBAT_RANGED_PULL' from 'false' to 'false'.
We changed the option 'WAYPOINT_DEVIATION' from '0' to '0'.
We changed the option 'ANTI_KS' from 'true' to 'true'.
We changed the option 'LOOT_PAUSE_AFTER' from '5' to '5'.
GM detection started
We changed the option 'INV_AUTOSELL_ENABLE' from 'true' to 'true'.
We changed the option 'INV_AUTOSELL_FROMSLOT' from '1' to '1'.
We changed the option 'INV_AUTOSELL_TOSLOT' from '90' to '90'.
We changed the option 'INV_AUTOSELL_QUALITY' from 'white,green' to 'white,green
.
We changed the option 'INV_AUTOSELL_TYPES_NOSELL' from 'Accessories,Amulets' to
'Accessories,Amulets'.
Loaded waypoint path tokenquick.xml
No return path with default naming tokenquick_return.xml found.
We use the normal waypoint path tokenquick.xml now.
We found Logar Bulletin Board and will harvest it.
Quest accepted: sharp bear claw
Quest accepted: collect boar tusks
Got the Quests
Clearing target.
Moving to waypoint #1, (-613, -5812)
You've done 0 of 10 Daily Quests.
Got the Quests
Moving to waypoint #2, (-564, -5904)
Clearing target.
Unsticking player... at position -606,-5829. Trial 1 from maximum 10 trials
Moving to waypoint #2, (-564, -5904)
Clearing target.
Unsticking player... at position -606,-5829. Trial 2 from maximum 10 trials
Moving to waypoint #2, (-564, -5904)
Clearing target.
Unsticking player... at position -606,-5829. Trial 3 from maximum 10 trials
Moving to waypoint #1, (-613, -5812)
You've done 0 of 10 Daily Quests.
Got the Quests
Moving to waypoint #2, (-564, -5904)
Clearing target.
Unsticking player... at position -606,-5829. Trial 4 from maximum 10 trials
Moving to waypoint #2, (-564, -5904)
Clearing target.
Unsticking player... at position -606,-5829. Trial 5 from maximum 10 trials
Moving to waypoint #2, (-564, -5904)
Clearing target.
Unsticking player... at position -606,-5829. Trial 6 from maximum 10 trials
Moving to waypoint #4, (-654, -6022)
Paused. (Delete) to continue, (CTRL+L) exit to shell, (CTRL+C) quit
Stopping execution.
Code: Select all
function nextplease()
if loadeggafter == true then
printf("Loading Egg Farmer Script\n"); yrest(2000);
loadPaths("eggs");
else
printf("Loading next character on this account\n"); yrest(2000);
sendMacro("}LoginNextToon=true;a={")
sendMacro("Logout();");
waitForLoadingScreen(90);
printf("Loading Next Farmer..\n");
loadPaths("tokenquick");
end
end
always the same thou bot trys to goto the first waypoint even thou its already there or ran past it and unsticks for no reason. maybe my bot is using the X,Y,Z location as the character it just came from?
ive come back to find the bot half a screen away from where it loged in at(loged in at correct spot) just from unsticking itself and running to a new wrong spot etc.
Doesnt happen everytime but def happens once an account always sometimes a few times.
i noticed Player address changed: 0x4525C300 happens, do i need a player.update after my loadPaths maybe?