21.04.2012, 05:57
Hi all. I've created a megajump command. But I don't know how to enable or disable it. Like if someone type /mjump, he will enable/disable megajump.
Here's the code
Here's the code
pawn Код:
OnPlayerKeyStateChange
if(PRESSED(KEY_JUMP))
{
new Float:P[3];
GetPlayerPos(playerid,P[0],P[1],P[2]);
GetPlayerVelocity(playerid,P[0],P[1],P[2]);
SetPlayerVelocity(playerid,P[0],P[1],P[2]+5.0);
}
zcmd
new Float:P[3];
GetPlayerPos(playerid,P[0],P[1],P[2]);
GetPlayerVelocity(playerid,P[0],P[1],P[2]);
SetPlayerVelocity(playerid,P[0],P[1],P[2]+5.0);
return 1;