Message to admin problem! - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Message to admin problem! (
/showthread.php?tid=345979)
Message to admin problem! -
cod5devious - 26.05.2012
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)
Re: Message to admin problem! -
CidadeNovaRP - 26.05.2012
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;
}