walk packet - visual effect

06/18/2014 20:41 k4r3r#1
Hi! I'm making packet-using bot and I have big problem - I stopped on walking event, beacuse sending "walk" only sends packet to server and our character (in client) is standing in the same place. Do you have any ideas to move our character visually with packet? :)
06/18/2014 22:34 iArtrix#2
Use packet tp 1 <id> <x> <y> or [Only registered and activated users can see links. Click Here To Register...] Ghostwalk.
06/19/2014 12:30 scream52#3
the packet walk work just when your mouse click on the map.
But your character don't move !
(Why your title is " visual effect ") ?
06/19/2014 13:14 k4r3r#4
Yeah, but i don't want to walk with mouse - I want to move my character with bot - packets. But when I send packet "walk" for ex. with packetloggger, character doesn't move.
06/19/2014 16:13 Rorc#5
The character will only walk serversided, you could emulate the recv packet you get when you walk to see the effect also on your screen.
06/19/2014 17:45 k4r3r#6
Oh, I know that - but i only receive packet "cond" - it informates about speed, nothing else. Do you have any ideas to resolve my problem? :c
06/19/2014 17:47 iArtrix#7
Try send packet.
walk 1 <x> <y> <speed>
walk 1 <150 <1> <speed>
06/19/2014 17:49 k4r3r#8
Man, I know how to SEND packet and change my position SERVERSIDE, but I need to change my position CLIENTSIDE!
06/20/2014 15:39 Kingrap#9
use walk for move in server side and tp for move in client side :)

walk 1 x y speed
tp 1 UserID x y
06/28/2014 03:18 MaxMilimeter#10
Had the same problem, only way are the tp packets mentioned above.