Author | Message | Time |
---|---|---|
LivedKrad | Does anyone know the maximum amount of run to location packets you can add into the sort of "queue"? It would seem, after trying to do a sort of "pathing" to Akara, the character doesn't want to go beyond four RUN packets. [code] Public Sub MidToAkara() RunToLoc 5830, 4439 RunToLoc 5848, 4437 RunToLoc 5855, 4428 RunToLoc 5870, 4430 RunToLoc 5862, 4427 RunToLoc 5875, 4430 End Sub [/code] I have to recall the MidToAkara() routine for it to run all the way to 5875, 4430. Any suggestions? Ideas? | July 22, 2005, 9:33 PM |
Elneroth | Don't send them all at once. Send one, then wait for the 'Stopped Moving' packet, then send another. If you have already sent one, then send another immediatally, it cancels out the first one and goes to the second's coordinates. If you try to run 'too far' at once, it will give you a Reassignment packet. | July 22, 2005, 11:14 PM |