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


Messages In This Thread
Invalid Command Length (Exceeding 50 characters) - by adrianneow - 06.07.2011, 09:52
Re: Invalid Command Length (Exceeding 50 characters) - by Basicz - 06.07.2011, 10:15
Re: Invalid Command Length (Exceeding 50 characters) - by adrianneow - 06.07.2011, 15:08

Forum Jump:


Users browsing this thread: 1 Guest(s)