I use this command to get jetpack for admin players, but my arms are stuck
http://i.imgur.com/1m0uFzC.jpg
This is the code
http://i.imgur.com/1m0uFzC.jpg
This is the code
PHP Code:
CMD:jetpack(playerid, params[])
{
if(IsPlayerAdmin(playerid))
{
SetPlayerSpecialAction(playerid, SPECIAL_ACTION_USEJETPACK);
}
else if(GetPlayerSpecialAction(playerid) == SPECIAL_ACTION_USEJETPACK)
{
ClearAnimations(playerid);
return 1;
}
return 1;
}