[AJUDA] Comando bugado
#1

pawn Код:
if(strcmp(cmd, "/avisar", true) == 0 || strcmp(cmd, "/av", true) == 0)
    {
new string[256];
new sendername[MAX_PLAYER_NAME];
        if(IsPlayerConnected(playerid))
        {
            if(PlayerInfo[playerid][PlayerAdmin] == 0)
            {
                SendClientMessage(playerid, COLOR_RED, "Vocк nгo й Administrador!");
                return 1;
            }
        GetPlayerName(playerid, Pname, sizeof(Pname));
            new length = strlen(cmdtext);
            while ((idx < length) && (cmdtext[idx] <= ' '))
            {
                idx++;
            }
            new offset = idx;
            new result[64];
            while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
            {
                result[idx - offset] = cmdtext[idx];
                idx++;
            }
            result[idx - offset] = EOS;
            if(!strlen(result))
            {
                SendClientMessage(playerid, COLOR_RED, "USE: /av [texto]");
                return 1;
            }
            SendClientMessageToAll(COLOR_WHITE, "|______________ Aviso da Administraзгo [TAG] ______________|");
            format(string, sizeof(string), "{FF0000}Administrador %s: %s", sendername, result);
        }
        return 1;
    }
Quando dou /avisar nгo aparece o texto meu sу o Aviso da Administraзгo [TAG]...

Como arrumo isso?
Reply


Messages In This Thread
[AJUDA] Comando bugado - by [AF]Junior - 21.02.2011, 23:18
Re: [AJUDA] Comando bugado - by steki. - 21.02.2011, 23:27
Re: [AJUDA] Comando bugado - by ManoLexuS - 21.02.2011, 23:28
Re: [AJUDA] Comando bugado - by [AF]Junior - 21.02.2011, 23:34
Re: [AJUDA] Comando bugado - by junioor - 22.02.2011, 01:15

Forum Jump:


Users browsing this thread: 1 Guest(s)