#1

Guys I downloaded the filterscript of the vehicle system, only that another admin system was implemented, and let's say I can not use this command, how could I solve it?
Obviously I log in with the rcon sept admin but nothing, he tells me I can not use this command


CMD:avcomandi(playerid, params[])
{
if(!PermissionCheck(playerid)) return SendClientMessage(playerid, 0xFFFFFFFF, "Non puoi utilizzare questo comando");
if(pAdminLevel(playerid))
{
SendClientMessage(playerid, 0xEE0000FF, "/aggiungiv /editav /settabenzina /vinutilizzabile (respawntutto) /respawnav (respawnaquestamacchina)\n");
SendClientMessage(playerid, 0xEE0000FF, "/aggiungiconcessionaria /eliminaconcessionaria /fix /spostaconcessionaria /gotoconcessionaria\n");
SendClientMessage(playerid, 0xEE0000FF, "/aggiungibenzinaio /eliminabenzinaio /spostabenzinaio /gotobenzinaio");
}
return 1;
}


IsAdmin was implemented in the system
but in my gamemode is pAdminLevel.
How can I correct this error?
Reply
#2

What makes the player pAdminLevel = 1; ?

Edit: IsAdmin = when player log in as a rcon admin.
Reply
#3

I don't understand... for resolve what i need to edit?

can u fix?
Reply
#4

Quote:
Originally Posted by kevi11
Посмотреть сообщение
IsAdmin was implemented in the system
but in my gamemode is pAdminLevel.
Do you have any command that makes the player pAdminLevel?

Like: When you use /rcon login [password] it makes the player who use this command (IsAdmin)..
Reply
#5

I just replaced all "IsAdmin" in "pAdminLevel"
and now i just this error compile:

C:\Users\dgfh\Desktop\Nuova cartella\filterscripts\sistema veicoli backup\backup sistema veicoli.pwn(886) : error 029: invalid expression, assumed zero
C:\Users\dgfh\Desktop\Nuova cartella\filterscripts\sistema veicoli backup\backup sistema veicoli.pwn(886) : error 029: invalid expression, assumed zero
C:\Users\dgfh\Desktop\Nuova cartella\filterscripts\sistema veicoli backup\backup sistema veicoli.pwn(886) : warning 215: expression has no effect
C:\Users\dgfh\Desktop\Nuova cartella\filterscripts\sistema veicoli backup\backup sistema veicoli.pwn(886) : error 001: expected token: ";", but found ")"
C:\Users\dgfh\Desktop\Nuova cartella\filterscripts\sistema veicoli backup\backup sistema veicoli.pwn(886) : fatal error 107: too many error messages on one line



Script:

GetPlayerVehicleAccess(playerid, vehicleid)
{
if(IsValidVehicle(vehicleid))
{
if(VehicleCreated[vehicleid] == VEHICLE_DEALERSHIP)
{
if(pAdminLevel(playerid, 1)) ---------------------- THE PROBLEM IS HERE.
{
return 1;
}
}
else if(VehicleCreated[vehicleid] == VEHICLE_PLAYER)
{
if(strcmp(VehicleOwner[vehicleid], PlayerName(playerid)) == 0)
{
return 2;
}
else if(GetPVarInt(playerid, "Chiavimacchina") == vehicleid)
{
return 1;
}
}
}
else
{
return 1;
}
return 0;
}

now for resolve this?
Reply
#6

Quote:
Originally Posted by kevi11
Посмотреть сообщение
I just replaced all "IsAdmin" in "pAdminLevel"
and now i just this error compile:

C:\Users\dgfh\Desktop\Nuova cartella\filterscripts\sistema veicoli backup\backup sistema veicoli.pwn(886) : error 029: invalid expression, assumed zero
C:\Users\dgfh\Desktop\Nuova cartella\filterscripts\sistema veicoli backup\backup sistema veicoli.pwn(886) : error 029: invalid expression, assumed zero
C:\Users\dgfh\Desktop\Nuova cartella\filterscripts\sistema veicoli backup\backup sistema veicoli.pwn(886) : warning 215: expression has no effect
C:\Users\dgfh\Desktop\Nuova cartella\filterscripts\sistema veicoli backup\backup sistema veicoli.pwn(886) : error 001: expected token: ";", but found ")"
C:\Users\dgfh\Desktop\Nuova cartella\filterscripts\sistema veicoli backup\backup sistema veicoli.pwn(886) : fatal error 107: too many error messages on one line



Script:

GetPlayerVehicleAccess(playerid, vehicleid)
{
if(IsValidVehicle(vehicleid))
{
if(VehicleCreated[vehicleid] == VEHICLE_DEALERSHIP)
{
if(pAdminLevel(playerid, 1)) ---------------------- THE PROBLEM IS HERE.
{
return 1;
}
}
else if(VehicleCreated[vehicleid] == VEHICLE_PLAYER)
{
if(strcmp(VehicleOwner[vehicleid], PlayerName(playerid)) == 0)
{
return 2;
}
else if(GetPVarInt(playerid, "Chiavimacchina") == vehicleid)
{
return 1;
}
}
}
else
{
return 1;
}
return 0;
}

now for resolve this?
Wait a second , change IsAdmin to pAdminLevel(playerid, 1)

Here is the command
Код:
CMD:avcomandi(playerid, params[])
{
   if(!PermissionCheck(playerid)) return SendClientMessage(playerid, 0xFFFFFFFF, "Non puoi utilizzare questo comando");
   if(pAdminLevel(playerid, 1))
   {
       SendClientMessage(playerid, 0xEE0000FF, "/aggiungiv /editav /settabenzina /vinutilizzabile (respawntutto) /respawnav (respawnaquestamacchina)\n");
       SendClientMessage(playerid, 0xEE0000FF, "/aggiungiconcessionaria /eliminaconcessionaria /fix /spostaconcessionaria /gotoconcessionaria\n");
       SendClientMessage(playerid, 0xEE0000FF, "/aggiungibenzinaio /eliminabenzinaio /spostabenzinaio /gotobenzinaio");
   }
   return 1;
}
Reply
#7

Again error on compiler here.


GetPlayerVehicleAccess(playerid, vehicleid)
{
if(IsValidVehicle(vehicleid))
{
if(VehicleCreated[vehicleid] == VEHICLE_DEALERSHIP)
{
if(pAdminLevel(playerid, 1)) ---------------------- THE PROBLEM IS HERE.
{
return 1;
}
}
else if(VehicleCreated[vehicleid] == VEHICLE_PLAYER)
{
if(strcmp(VehicleOwner[vehicleid], PlayerName(playerid)) == 0)
{
return 2;
}
else if(GetPVarInt(playerid, "Chiavimacchina") == vehicleid)
{
return 1;
}
}
}
else
{
return 1;
}
return 0;
}
Reply
#8

Quote:
Originally Posted by Zamora
Посмотреть сообщение
Wait a second , change IsAdmin to pAdminLevel(playerid, 1)

Here is the command
Код:
CMD:avcomandi(playerid, params[])
{
   if(!PermissionCheck(playerid)) return SendClientMessage(playerid, 0xFFFFFFFF, "Non puoi utilizzare questo comando");
   if(pAdminLevel(playerid, 1))
   {
       SendClientMessage(playerid, 0xEE0000FF, "/aggiungiv /editav /settabenzina /vinutilizzabile (respawntutto) /respawnav (respawnaquestamacchina)\n");
       SendClientMessage(playerid, 0xEE0000FF, "/aggiungiconcessionaria /eliminaconcessionaria /fix /spostaconcessionaria /gotoconcessionaria\n");
       SendClientMessage(playerid, 0xEE0000FF, "/aggiungibenzinaio /eliminabenzinaio /spostabenzinaio /gotobenzinaio");
   }
   return 1;
}
Try this.
Reply
#9

See brother cuz i didn't understand you.

If
Код:
pAdminLevel(playerid, 1) or pAdminLevel(playerid)
Working with you then just use it instead of IsAdmin.. if its not then remove all
Код:
pAdminLevel(playerid, 1)
and replace them with
Код:
IsAdmin(playerid)
Edit: Sorry for that mess i just didn't concentrate well..
Edit 2: Check your PM's
Reply
#10

I Join on my server i put the cmd and they say "You can't use this CMD", and i'm logged with rcon and been set at level Admin.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)