29.08.2015, 18:54
have u realized there's a space between some letters ? o:
Код:
CMD:handsup(playerid, params[])
{
if(GetPlayerSpecialAction(playerid) == SPECIAL_ACTION_NONE)
{
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_HANDSUP);
}
return 1;
}
CMD:handsdown(playerid, params[])
{
if(GetPlayerSpecialAction(playerid) == SPECIAL_ACTION_HANDSUP)
{
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_NONE);
}
return 1;
}

