SA-MP Forums Archive
[AJUDA] acrecentar uma coisa no cmd! - 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] acrecentar uma coisa no cmd! (/showthread.php?tid=299006)



[AJUDA] acrecentar uma coisa no cmd! - danktog - 23.11.2011

olб, queria saber como eu coloco um negocio no comando que quando o player ja tiver level 0 de presidente, aparecer uma mensagem dizendo assim: esse player ja tem level 0 de presidente!!!

Код:
if(strcmp(cmd, "/tirarpres", true) == 0) {
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(LevelAdmin[playerid] == 4){
new tmp[256];
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, Vermelho, "/tirarpres [ID PLAYER]");
return 1;
}
plid = strval(tmp);
if(IsPlayerConnected(plid)){
new sstring[256];
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(sstring, sizeof(sstring), "-| Vocк tirou o cargo de presidente do jogador %s (ID: %d)! |-", pname,plid);
SendClientMessage(playerid,0x0080FFAA, sstring);
dini_IntSet(file, "Presidente", 0);
}else{
SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
return 1;
}
}
return 1;
}
O sistema de identificar se й presidente й esse:
if(dini_Int(file, "Presidente") == 1

VLW !!!

Quando


Re: [AJUDA] acrecentar uma coisa no cmd! - steki. - 23.11.2011

Quote:

Quando

Tenso


Re: [AJUDA] acrecentar uma coisa no cmd! - Pharrel - 23.11.2011

pawn Код:
if(strcmp(cmd, "/tirarpres", true) == 0)
{
    new aname[MAX_PLAYER_NAME];
    GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
    format(file, sizeof(file), PASTA_CONTAS, aname);
    if(LevelAdmin[playerid] == 4)
    {
        new tmp[256];
        new plid;
        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp)) return SendClientMessage(playerid, Vermelho, "/tirarpres [ID PLAYER]");
        plid = strval(tmp);
        if(IsPlayerConnected(plid))
        {
            if(dini_Int(file, "Presidente") == 0)
                return SendClientMessage(playerid, -1, "O jogador nгo й presidente!");
            new sstring[256];
            new pname[MAX_PLAYER_NAME];
            GetPlayerName(plid, pname, MAX_PLAYER_NAME);
            format(sstring, sizeof(sstring), "-| Vocк tirou o cargo de presidente do jogador %s (ID: %d)! |-", pname,plid);
            SendClientMessage(playerid,0x0080FFAA, sstring);
            dini_IntSet(file, "Presidente", 0);
        }
        else return SendClientMessage(playerid, Vermelho, "(ERRO) ID invбlido");
    }
    return 1;
}



Re: [AJUDA] acrecentar uma coisa no cmd! - danktog - 23.11.2011

Vlw Pharrel !
Jб mim ajudou aqui