Invalid Command Lenght
#8

There is ~3 command that keep doing it (Dont know about other commands)
pawn Код:
if(strcmp(cmd, "/me", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(gPlayerLogged[playerid] == 0)
            {
                SendClientMessage(playerid, COLOR_GREY, "   You havent logged in yet !");
                return 1;
            }
            GetPlayerName(playerid, sendername, sizeof(sendername));
            new length = strlen(cmdtext);
            while ((idx < length) && (cmdtext[idx] <= ' '))
            {
                idx++;
            }
            new offset = idx;
            new result[96];
            while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
            {
                result[idx - offset] = cmdtext[idx];
                idx++;
            }
            result[idx - offset] = EOS;
            if(!strlen(result))
            {
                SendClientMessage(playerid, COLOR_WHITE, "USAGE: /me [action]");
                return 1;
            }
            if(PlayerInfo[playerid][pMask] == 1)
            {
                format(string, sizeof(string), "* Stranger %s", result);
            }
            else
            {
                format(string, sizeof(string), "* %s %s", sendername, result);
            }
            ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
        }
        return 1;
    }
pawn Код:
if(strcmp(cmd, "/ooc", true) == 0 || strcmp(cmd, "/o", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(gPlayerLogged[playerid] == 0)
            {
                SendClientMessage(playerid, COLOR_GREY, "   You havent logged in yet !");
                return 1;
            }
            if((noooc) && PlayerInfo[playerid][pAdmin] < 3)
            {
                SendClientMessage(playerid, COLOR_GREY, "   The OOC channel has been disabled by an Admin !");
                return 1;
            }
            GetPlayerName(playerid, sendername, sizeof(sendername));
            new length = strlen(cmdtext);
            while ((idx < length) && (cmdtext[idx] <= ' '))
            {
                idx++;
            }
            new offset = idx;
            new result[160];
            while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
            {
                result[idx - offset] = cmdtext[idx];
                idx++;
            }
            result[idx - offset] = EOS;
            if(!strlen(result))
            {
                SendClientMessage(playerid, COLOR_WHITE, "USAGE: (/o)oc [ooc chat]");
                return 1;
            }
            new atext[60];
            if(PlayerInfo[playerid][pAdmin] == 0){ atext = ""; }
            if(PlayerInfo[playerid][pAdmin] == 1){ atext = ""; }
            if(PlayerInfo[playerid][pAdmin] == 2){ atext = "Junior Admin"; }
            if(PlayerInfo[playerid][pAdmin] == 3){ atext = "General Admin"; }
            if(PlayerInfo[playerid][pAdmin] == 4){ atext = "Senior Admin"; }
            if(PlayerInfo[playerid][pAdmin] == 1337){ atext = "Head Admin"; }
            if(PlayerInfo[playerid][pAdmin] == 99998){ atext = "Server Scripter"; }
            if(PlayerInfo[playerid][pAdmin] == 99999){ atext = "Server Manager"; }
            if(PlayerInfo[playerid][pAdmin] == 100000){ atext = "Community Owner"; }
            format(string, sizeof(string), "(( %s %s: %s ))", atext, sendername, result);
            OOCOff(COLOR_OOC,string);
        }
        return 1;
    }
pawn Код:
if(strcmp(cmd, "/b", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(gPlayerLogged[playerid] == 0)
            {
                SendClientMessage(playerid, COLOR_GREY, "   You havent logged in yet !");
                return 1;
            }
            GetPlayerName(playerid, sendername, sizeof(sendername));
            new length = strlen(cmdtext);
            while ((idx < length) && (cmdtext[idx] <= ' '))
            {
                idx++;
            }
            new offset = idx;
            new result[96];
            while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
            {
                result[idx - offset] = cmdtext[idx];
                idx++;
            }
            result[idx - offset] = EOS;
            if(!strlen(result))
            {
                SendClientMessage(playerid, COLOR_WHITE, "USAGE: /b [local ooc chat]");
                return 1;
            }
            if(PlayerInfo[playerid][pMask] == 1)
            {
                format(string, sizeof(string), "Stranger: (( %s ))", result);
            }
            else
            {
                format(string, sizeof(string), "%s: (( %s ))", sendername, result);
            }
            ProxDetector(20.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
        }
        return 1;
    }
Reply


Messages In This Thread
Invalid Command Lenght - by Max_Coldheart - 01.08.2011, 08:53
Re: Invalid Command Lenght - by Max_Coldheart - 02.08.2011, 08:09
AW: Invalid Command Lenght - by samtey - 02.08.2011, 08:19
Re: Invalid Command Lenght - by Max_Coldheart - 02.08.2011, 08:27
Re: Invalid Command Lenght - by Kush - 02.08.2011, 08:30
Re: Invalid Command Lenght - by Max_Coldheart - 02.08.2011, 08:36
Re: Invalid Command Lenght - by Kush - 02.08.2011, 08:39
Re: Invalid Command Lenght - by Max_Coldheart - 02.08.2011, 10:36
Re: Invalid Command Lenght - by XpanD - 04.08.2011, 09:52
AW: Re: Invalid Command Lenght - by samtey - 04.08.2011, 11:23

Forum Jump:


Users browsing this thread: 1 Guest(s)