[DUVIDA]Comandos
#1

pawn Код:
if(strcmp(cmd, "/an", true) == 0)
    {
    new string[256];
        GetPlayerName(playerid, sendername, sizeof(sendername));
        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)) return SendClientMessage(playerid, COR_BRANCO, "Use: /an [Texto]");
        format(string, sizeof(string), "[Anuncio] %s: %s",sendername,result);
        SendClientMessageToAll(COR_AMARELO, string);
        GivePlayerMoney(playerid,-100);
        return 1;
    }

//-------------------------[akill]----------------------------------------------
    if(strcmp(cmd, "/matar", true) == 0)
    {
   if(IsPlayerAdmin(playerid))
   {
    new tmp[256];
    tmp = strtok(cmdtext, idx);
    new otherplayer = strval(tmp);
    if(!strlen(tmp)) return SendClientMessage(playerid, COR_BRANCO, "USO: /matar [playerid]");
    if(!IsPlayerConnected(otherplayer)) return SendClientMessage(playerid, COR_BRANCO, "[ID ERRADO]");
        SetPlayerHealth(otherplayer, 0);
   }
   return 1;
    }
Oque tem de Errado nesses cmds ? , Pois eu logo na Rcon e vou digitando os Comandos fica Tudo Embaralhado , Tudo Estranho , Eu uso um Aparece Outro , Usa e nao aparece , Nao sгo sу esses comandos esses sao apenas alguns do conjunto !
Reply


Messages In This Thread
[DUVIDA]Comandos - by hudsonramos10 - 20.03.2010, 17:38
Re: [DUVIDA]Comandos - by Chivits - 20.03.2010, 18:26
Re: [DUVIDA]Comandos - by hudsonramos10 - 20.03.2010, 18:32
Re: [DUVIDA]Comandos - by Poderoso Chefгo - 21.03.2010, 15:14
Re: [DUVIDA]Comandos - by xolp25 - 21.03.2010, 17:07
Re: [DUVIDA]Comandos - by Poderoso Chefгo - 21.03.2010, 20:48

Forum Jump:


Users browsing this thread: 2 Guest(s)