SA-MP Forums Archive
[Ajuda] Comando em Zcmd - 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] Comando em Zcmd (/showthread.php?tid=281389)



[Ajuda] Comando em Zcmd - noobre - 05.09.2011

A ideia que eu queria mesmo era usar este comando para fazer o Administrador entrar e sair de serviзo.
Este foi o comando que fiz, nгo sei se ajuda nгo sei se nгo. Apenas fi-lo com o conhecimento que tenho.
Ajuda, por favor.

pawn Код:
CMD:adminduty(playerid, params[])
{
    new lvl;
    new string[128];
    if(lvl < 1)
    {
    format(string, sizeof(string), "O administrador %s (ID:%d) estб agora fora de serviзo.", GetPlayerNameEx(playerid),playerid);
    SendClientMessageToAll(0xE40000AA,string);
    PlayerInfo[playerid][Adminduty] = 0;
    SetPlayerColor(playerid, 0xFFFFFFAA);
    }
    else if (lvl < 1)
    {
    format(string, sizeof(string), "O administrador %s (ID:%d) estб agora de serviзo.", GetPlayerNameEx(playerid),playerid);
    SendClientMessageToAll(0xE40000AA,string);
    PlayerInfo[playerid][Adminduty] = 1;
    SetPlayerColor(playerid, 0xE40000AA);
    }
    return 1;
}



Re: [Ajuda] Comando em Zcmd - [R] ousenber [K] - 05.09.2011

Seria isso?

PHP код:

CMD
:adminduty(playeridparams[])
{
    new 
string[128];
    if(
PlayerInfo[playerid][Adminduty] == 1)
    {
        
format(stringsizeof(string), "O administrador %s (ID:%d) estб agora fora de serviзo."GetPlayerNameEx(playerid),playerid);
        
SendClientMessageToAll(0xE40000AA,string);
        
PlayerInfo[playerid][Adminduty] = 0;
        
SetPlayerColor(playerid0xFFFFFFAA);
    }
    else if(
PlayerInfo[playerid][Adminduty] == 0)
    {
        
format(stringsizeof(string), "O administrador %s (ID:%d) estб agora de serviзo."GetPlayerNameEx(playerid),playerid);
        
SendClientMessageToAll(0xE40000AA,string);
        
PlayerInfo[playerid][Adminduty] = 1;
        
SetPlayerColor(playerid0xE40000AA);
    }
    return 
1;




Re: [Ajuda] Comando em Zcmd - noobre - 05.09.2011

exactamente, obrigado.