Multiple times message?
#1

When im ingame and im using this cmd /amsg, it sometimes shows up like 4 or 8 times when it should just appear only 1 time..

Is there something wrong in the lines?

Thx in Advance



PHP Code:
     if(strcmp(cmd"/amsg"true) == 0)
    {
        if(
IsPlayerConnected(playerid))
        {
            if (
PlayerInfo[playerid][pAdmin] >= 3)
            {
                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))
                {
                    
SendClientMessage(playeridCOLOR_LIGHTYELLOW2"[USAGE:] /amsg [Message]");
                    return 
1;
                }
                
format(stringsizeof(string), "Admin %s: %s",GetPlayerNameEx(playerid),result);
                for(new 
0MAX_PLAYERSi++)
                {
                    if(
IsPlayerConnected(i))
                    {
                        
SendClientMessageToAll(COLOR_GREEN,string);
                    }
                }
                return 
1;
            }
            else
            {
                
SendClientMessage(playeridCOLOR_LIGHTYELLOW2"[ERROR:] Your not an administrator!");
                return 
1;
            }
        }
        return 
1;
    } 
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)