Possible to increase players run speed?
#6

Dunno, try something like that

pawn Code:
// Get player's velocity
new Float:x, Float:y, Float:z;
GetPlayerVelocity(playerid, x, y, z);
// Add to current velocity
new Float:increment = 10.0;
x += increment;
y += increment;
z += increment;
// Set player's velocity to incremented velocity that we calculated
SetPlayerVelocity(playerid, x, y, z);
Reply


Messages In This Thread
Possible to increase players run speed? - by MafiaOink - 16.07.2016, 16:52
Re: Possible to increase players run speed? - by iKarim - 16.07.2016, 16:57
Re: Possible to increase players run speed? - by MafiaOink - 16.07.2016, 16:59
Re: Possible to increase players run speed? - by WhiteGhost - 16.07.2016, 17:00
Re: Possible to increase players run speed? - by MafiaOink - 16.07.2016, 17:03
Re: Possible to increase players run speed? - by [KHK]Khalid - 16.07.2016, 17:21
Re: Possible to increase players run speed? - by MafiaOink - 16.07.2016, 17:28
Re: Possible to increase players run speed? - by Mauzen - 16.07.2016, 17:55
Re: Possible to increase players run speed? - by MafiaOink - 16.07.2016, 22:46

Forum Jump:


Users browsing this thread: 1 Guest(s)