25.04.2016, 20:59
Check if the player using jetpack
So it would be like that some where in your turf system
Maybe i miss something cuz i'm using ma phone :P
PHP код:
if(GetPlayerSpecialAction(playerid) == SPECIAL_ACTION_USEJETPACK)
{
}
PHP код:
new Float:x, Float:y, Float:z
GetPlayerPos(playerid, x, y, z);
if(GetPlayerSpecialAction(playerid) == SPECIAL_ACTION_USEJETPACK)
{
SetPlayerPos(playerid, x, y, z+5);
}