SA-MP Forums Archive
[Ajuda]/hundsup - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda]/hundsup (/showthread.php?tid=278747)



[Ajuda]/hundsup - mau_tito - 23.08.2011

Tenhu um game mode mas nao tem /handsup alguem poderia me passar esse comando!!!!


Re: [Ajuda]/hundsup - Lуs - 23.08.2011

pawn Код:
if(strcmp(cmd, "/handsup", true) == 0)
    {
    if(GetPlayerState(playerid) == PLAYER_STATE_ONFOOT)
        {
            SetPlayerSpecialAction(playerid,SPECIAL_ACTION_HANDSUP);
            return 1;
        }
        return 1;
    }



Re: [Ajuda]/hundsup - JonathanFeitosa - 23.08.2011

pawn Код:
if(strcmp(cmdtext, "/handsup", true) == 0)
{
    SetPlayerSpecialAction(playerid,SPECIAL_ACTION_HANDSUP);
    return true;
}