01.04.2016, 18:50
pawn Код:
if(GetPlayerState(playerid) == PLAYER_STATE_ONFOOT && SpeedSet[playerid] == 1)
{
new Float: Xs, Float: Ys, Float: Zs;
GetPlayerVelocity(playerid, Xs, Ys, Zs);
SetPlayerVelocity(playerid, Xs*1.2, Ys*1.2, Zs);
}
Any help would be kind.