SA-MP Forums Archive
How do people move slowly? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: How do people move slowly? (/showthread.php?tid=275602)



How do people move slowly? - Join7 - 10.08.2011

How do people move slowly? As of Roleplay


Re: How do people move slowly? - Riddick94 - 10.08.2011

Slowly? you mean only using animation of walking?


Re: How do people move slowly? - Jafet_Macario - 10.08.2011

Search in your gamemode for
pawn Код:
UsePlayerPedAnims();
and delete it.I think this is what you looking for...


Re: How do people move slowly? - davve95 - 10.08.2011

Try to hold alt key when u walking


Re: How do people move slowly? - Join7 - 10.08.2011

No. To run slower and not as usual
EDIT: Roleplay servers you know how to run slow


Re: How do people move slowly? - Riddick94 - 10.08.2011

Jafet has already told you.

Remove:
pawn Код:
UsePlayerPedAnims();
from:

pawn Код:
public OnGameModeInit()
{
return true;
}
And all skins will walk/run/sprint by they way.

Or.. you can use GetPlayerVelocity and SetPlayerVelocity in timer.


Re: How do people move slowly? - Join7 - 10.08.2011

Thanks all