28.04.2010, 01:09
Queria Criar um Especie de Sistema VIP com Admin Entгo Seguinte
No Inicio eu Coloco
Entгo Depois
no Comando
Entгo da o Erro
undefined symbol "AdminLevel"
Na Linha
O Que Fazer? Queria como fazer Sistema de Admin-Vip Com Este Levels
No Inicio eu Coloco
pawn Код:
new AdminLevel[MAX_PLAYERS];
no Comando
pawn Код:
if(strcmp(cmd, "/server", true) == 0)
{
if(AdminLevel[playerid] == 4)//Qual Nivel do Admin
{
if(!strlen(tmp))
{
SendClientMessage(playerid,COLOR,"Forma Correta: /server [trancar/destrancar/desligar]");
}
else if(strcmp(tmp,"trancar",true) == 0){
if(ServerTrancado == 0)
{
GetPlayerName(playerid, aName, sizeof(aName));
format(string,256," %s trancou o server",aName);
ServerTrancado = 1;
}else{
SendClientMessage(playerid, COLOR, " ja bloqueado!");
}
}
else if(strcmp(tmp,"untrancar",true) == 0){
if(ServerTrancado == 1)
{
GetPlayerName(playerid, aName, sizeof(aName));
format(string,256," %s destrancou o server",aName);
ServerTrancado = 0;
}else{
SendClientMessage(playerid, COLOR, "esta destrancado!");
}
}
else if(strcmp(tmp,"shutdown",true) == 0){
SendRconCommand("exit");
}
}else{
SendClientMessage(playerid,COLOR,"nгo tem Level Suficiente");
}
return 1;
}
undefined symbol "AdminLevel"
Na Linha
pawn Код:
if(AdminLevel[playerid] == 4)//Qual Nivel do Admin