13.12.2010, 20:38
1. Can someone make an mute-unmute command with "strcmp"?
2. Mega Jump (on/off)
Mega Jump(on):
Mega Jump(off):
2. Mega Jump (on/off)
Mega Jump(on):
pawn Код:
else if(dialogid == 15)
{
if(response)
{
if (PRESSED(KEY_JUMP))
}
SetPlayerVelocity(playerid,0.0,0.2,0.5);
}
}
return 1;
}
pawn Код:
else if(dialogid == 16)
{
if(response)
{
if (PRESSED(KEY_JUMP))
}
SetPlayerVelocity(playerid,0.0,0.0,0.0);
}
}
return 1;
}