Invalid Command Length (Exceeding 50 characters)
#1

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[MAX_STRING];
            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;
    }
Reply
#2

wtf? exceeding 50 characters?

Try this :
pawn Код:
if ( !strcmp( cmdtext, "/me", true ) )
{
    if ( cmdtext[ 3 ] != ' ' || ! cmdtext[ 4 ] ) // Style from hold-studio by Slice
        return SendClientMessage( playerid, -1, "SYNTAX: /me [ message ]" );

    new hello[ 24 ]; GetPlayerName( playerid, hello, sizeof ( hello ) );

    new string[ 128 ]; format( string, sizeof ( string ), "* %s %s", hello, cmdtext[ 3 ] );

    ProxDetector( 30.0, playerid, string, COLOR_PURPLE, COLOR_PURPLE, COLOR_PURPLE, COLOR_PURPLE, COLOR_PURPLE );

    return 1;
}
Are you sure that command sends the error?
Reply
#3

Yes man.......
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)