SA-MP Forums Archive
[Ajuda] Me Explica - 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] Me Explica (/showthread.php?tid=381458)



Me Explica - Owtsiixx_Twd - 29.09.2012

pawn Код:
CMD:sa(playerid)
{
     SetPlayerHealth(playerid, 9999);
     SetPlayerArmour(playerid, 100);
     return 1;
}
agr vem minha duvida como retornar esse comando? tipo /sa > equipa Quando ele digita /sa dnv volta sem colete com a life normal 100% como fazer isto OBS:esse comando ai foi sу um exemplo xD



Re: Me Explica - FeelLikeASir_ - 29.09.2012

Variбvel.


Re: Me Explica - dPlaYer_ - 29.09.2012

pawn Код:
CMD:sa(playerid)
{
    static dplayer;
    if(dplayer == 0)
    {
        SetPlayerHealth(playerid, 9999);
        SetPlayerArmour(playerid, 100);
        dplayer = 1;
    }
    else if(dplayer == 1)
    {
        SetPlayerHealth(playerid, 100);
        SetPlayerArmour(playerid, 0);
        dplayer = 0;
    }
    return 1;
}