Page 1 of 1
runspeed for players
Posted: Thu Aug 09, 2007 5:23 am
by Unfaithful
runspeed for players plz!!!
Posted: Thu Aug 09, 2007 1:07 pm
by CWO
Thats not managed by POL at all. Thats managed by the client. This is why speedhacking is possible. If POL were to even try and attempt to make a player run faster by itself it would just throw the server and client out of sync.
Posted: Sat Aug 18, 2007 5:22 am
by Unfaithful
so why runuo has [speedboost ?
Posted: Sat Aug 18, 2007 10:51 pm
by CWO
Oh you're talking about that... FYI thats still the client doing that, its just a feature thats hidden inside of it and all it needs is a simple packet to activate.
Code: Select all
use uo;
program boost(who)
SendPacket(who, "BF0006002601");
endprogram
save that as a textcmd or put that one line wherever you want to activate it. Just a note that this will only allow someone on foot to move as fast as if they were mounted. This doesn't affect them while they are mounted.
On logout, it will automatically deactivate. To deactivate it at any other time, just use
Posted: Fri Aug 24, 2007 1:07 am
by Unfaithful
oh its great thx
Posted: Sat Feb 23, 2008 1:24 am
by ultek
what would happened if some application working between serwer and client (serwer<--app-->client) send that packet to client without informing srv about that? out-of-sync?
Posted: Sat Feb 23, 2008 4:23 am
by CWO
Out of sync. It would just screw up things. Mostly because the client and server stay in sync with the move request and confirm/deny move by sending a 1 byte sequence number inside those packets that acts as a counter. It counts from 0-255 then resets back to 1 again (not 0).