Changing Class Stops Bot
Posted: Sat Jun 08, 2013 11:32 pm
This is weird. Just started happening yesterday, got around to rebooting the system today and it persists.
Here is the problem, the code below is part of the beginning of my dailies. It gets my character to the daily location. But first, it changes to the class I want to run the dailies on. It leaves the house in Lower East and is supposed to travel via snoops to another map. Problem is when it gets to Varanas Bridge it just sits there. If I leave the bot running and port back to Lower East the bot then continues as though it just arrived on the bridge. So now for the weird. If I remove the class change portion and change class manually before starting the bot, it runs flawlessly. The code below is the portion that is hanging. It should take you to Varanas Snoop but it just sits on the bride.
Here is the problem, the code below is part of the beginning of my dailies. It gets my character to the daily location. But first, it changes to the class I want to run the dailies on. It leaves the house in Lower East and is supposed to travel via snoops to another map. Problem is when it gets to Varanas Bridge it just sits there. If I leave the bot running and port back to Lower East the bot then continues as though it just arrived on the bridge. So now for the weird. If I remove the class change portion and change class manually before starting the bot, it runs flawlessly. The code below is the portion that is hanging. It should take you to Varanas Snoop but it just sits on the bride.
Code: Select all
<?xml version="1.0" encoding="utf-8"?><waypoints type="TRAVEL">
<!-- # 1 --><waypoint x="0" z="2" y="0">
player:target_NPC("Housekeeper");
ChoiceOptionByName("Change class");
yrest(500);
player:update();
player:target_NPC("Housekeeper");
ChoiceOptionByName("Leave the house");
waitForLoadingScreen();
player:update();
player:mount();
yrest(3000);
</waypoint>
<!-- # 2 --><waypoint x="4726" z="416" y="77"> </waypoint>
<!-- # 3 --><waypoint x="4392" z="174" y="78"> </waypoint>
<!-- # 4 --><waypoint x="4471" z="-35" y="77">
player:target_NPC("Dieve");
ChoiceOptionByName("I want to transport to Varanas Gates");
waitForLoadingScreen();
player:update();
yrest(500);
</waypoint>
<!-- # 5 --><waypoint x="2336" z="1139" y="28">
error("Finished",0)
</waypoint>
</waypoints>