Message to admin problem!
#1

error:
Код:
C:\Users\Jo\Downloads\xantry.pwn(574) : error 033: array must be indexed (variable "AdminLevel")
Code
pawn Код:
public MessageToAdmins(color,const string[])
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
    if(IsPlayerConnected(i) == 1)
    if(PlayerInfo[i][AdminLevel] >= 1)
    SendClientMessage(i, color, string);
    }
    return 1;
}
Line:
pawn Код:
if(PlayerInfo[i][AdminLevel] >= 1)
Reply
#2

Try:
pawn Код:
public MessageToAdmins(color,const string[])
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(!IsPlayerConnected(i)) continue;
        if(PlayerInfo[i][AdminLevel] > 0) SendClientMessage(i, color, string);
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)