Chat Commands Interfering
#2

Not promising anything, as I don't use strcmp anymore, but..

pawn Код:
if (strcmp("/t", cmdtext, true, 2) == 0)
    {
        if(TEAMS)
        {
            if(strlen(cmdtext) <= 3)
            {
                SendClientMessage(playerid, COLOR_WHITE, "USAGE: /t (Text)");
                return 1;
            }
            new output[255];
            strmid(output,cmdtext,2,strlen(cmdtext));
            for(new i=0;i<MAX_PLAYERS;i++)
            {
                if() // All the teams
                {
                    format(string, sizeof(string), "(LOCAL) %s said %s.", playername, output);
                    SendClientMessage(i, COLOR_ORANGE, string);
                }
            }
            return 1;
        }
        else
        {
            // can't use command message
        }
        return 1;
    }
   
    if (strcmp("/tt", cmdtext, true, 3) == 0)
    {
        if(TEAMS)
        {
            if(strlen(cmdtext) <= 3)
            {
                SendClientMessage(playerid, COLOR_WHITE, "USAGE: /tt (Text)");
                return 1;
            }
            new output[255];
            strmid(output,cmdtext,2,strlen(cmdtext));
            for(new i=0;i<MAX_PLAYERS;i++)
            {
                if() // All the teams
                {
                    format(string, sizeof(string), "(LOCAL-TELE) %s said %s.", playername, output);
                    SendClientMessage(i, COLOR_WHITE, string);
                }
            }
            return 1;
        }
        else
        {
            // can't use command message
        }
        return 1;
    }
[pawn][/pawn] for your code tags.
Reply


Messages In This Thread
[SOLVED! DELETE!] Chat Commands Interfering - by [HIR]AlbanianSoilder - 22.12.2010, 02:11
Re: Chat Commands Interfering - by iFriSki - 22.12.2010, 02:17
Re: Chat Commands Interfering - by Krx17 - 22.12.2010, 02:23
Re: Chat Commands Interfering - by [HIR]AlbanianSoilder - 22.12.2010, 06:00

Forum Jump:


Users browsing this thread: 1 Guest(s)