09.12.2012, 06:53
Hello
I Have one keystate, which makes super jump on foot. How can i make it like so i need to type first /EnableKeystate then i can super jump?
Thats how i have it!
I Rep every comment
I Have one keystate, which makes super jump on foot. How can i make it like so i need to type first /EnableKeystate then i can super jump?
pawn Код:
if (PRESSED(KEY_JUMP))
{
new
Float:x,
Float:y,
Float:z;
GetPlayerPos(playerid, x, y, z);
SetPlayerPos(playerid, x, y, z + 5.0);
}
I Rep every comment