Page 1 of 1

Spring Rain Festival waypoint files?

Posted: Wed Apr 17, 2013 8:53 pm
by Edamh
Anyone have any waypoint files for the Spring Rain Festival that they would like to share?

"Jump! Jump! Wabbits!"

Posted: Wed Apr 17, 2013 9:15 pm
by Edamh
Here's the code that I found in my waypoint files folder for the quest "Jump! Jump! Wabbits!". This is NOT my code. I don't recall who contributed it; I'm merely sharing it.
You need to accept the quest prior to loading the waypoint file. The waypoint will be using swimhack in public, so keep that in mind and all the possible bans that entails. Once waypoint file loaded, place the bot by the bridge on the road on the way to Logar. After the bot chases the rabbit for a little while, the quest will complete. If you don't have the title, let it run to 150. Otherwise, stop the bot manually.

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints>
<onLoad>
deedee=105476
fly()
while true do
   mytarget=nil
   mytarget=player:findNearestNameOrId(deedee)
   if mytarget~=nil then
      player:target(mytarget)
      teleport(mytarget.X, mytarget.Z, mytarget.Y+25)
      Attack();
      --fly()
   else
      printf("-")
   end
   player:update();
end
</onLoad>
</waypoints>