18.02.2013, 15:37
i use the cmd ingame it says i am not admin here is it;
i Removed This part maybe that will make it work but it didn't
What did i do wrong?
pawn Код:
if(strcmp(cmd, "/reloadhouses", true) == 0)
{
if(PInfo[playerid][AdminLevel] == 5)
{
for(new i=0;i<MAX_HOUSES;i++)
{
ReloadHouse(i);
}
SendClientMessage(playerid, COLOR_WHITE, "You have reloaded all houses.");
AdminLog(playerid, "/reloadhouses", "Reloaded Houses", "Houses");
return 1;
}
else
{
SendClientMessage(playerid, COLOR_ERROR, "You are not an administrator !");
return 1;
}
}
pawn Код:
if(strcmp(cmd, "/reloadhouses", true) == 0)
{
if(PInfo[playerid][AdminLevel] == 2)
{
for(new i=0;i<MAX_HOUSES;i++)
{
ReloadHouse(i);
}
SendClientMessage(playerid, COLOR_WHITE, "You have reloaded all houses.");
AdminLog(playerid, "/reloadhouses", "Reloaded Houses", "Houses");
return 1;
}
}