[Duda] Como defino un admin en un GM?
#5

Quote:
Originally Posted by TakeR.
Посмотреть сообщение
C:\Users\care\Desktop\-Server Dm 0.3c-\gamemodes\EditByTaker.pwn(203) : error 001: expected token: ")", but found "!"
C:\Users\care\Desktop\-Server Dm 0.3c-\gamemodes\EditByTaker.pwn(203) : error 029: invalid expression, assumed zero
C:\Users\care\Desktop\-Server Dm 0.3c-\gamemodes\EditByTaker.pwn(203) : warning 215: expression has no effect
C:\Users\care\Desktop\-Server Dm 0.3c-\gamemodes\EditByTaker.pwn(203) : error 001: expected token: ";", but found ")"
C:\Users\care\Desktop\-Server Dm 0.3c-\gamemodes\EditByTaker.pwn(203) : fatal error 107: too many error messages on one line



Linea:
if(PlayerInfo[playerid][pAdmin] !< 1);
NUNCA podes usar !<
A lo sumo podes usar <= o != pero el '!' con '<' no.
Ya se a lo que te referнs, capas que queres usar lo contrario de una variable como el != pero con <
Podrнas usar else.

pawn Код:
if(PlayerInfo[playerid][pAdmin] <= 1)
{
// accion
}
{
else
{
SendClientMessage(playerid, -1, "No eres admin o no tienes nivel!");
}
return 1; // con o sin, como tengas en tu script
}
edit Ahora que me doy cuenta, vos pusiste if(PlayerInfo[playerid][pAdmin] <= 1); y va sin punto & comas cuando verifica con if.
Reply


Messages In This Thread
[Duda] Como defino un admin en un GM? - by TakeR. - 16.11.2011, 22:49
Respuesta: [Duda] Como defino un admin en un GM? - by davidxxx - 16.11.2011, 23:07
Respuesta: [Duda] Como defino un admin en un GM? - by leoals - 16.11.2011, 23:35
Re: [Duda] Como defino un admin en un GM? - by TakeR. - 16.11.2011, 23:46
Respuesta: [Duda] Como defino un admin en un GM? - by TiNcH010 - 17.11.2011, 00:03
Re: [Duda] Como defino un admin en un GM? - by TakeR. - 17.11.2011, 00:46
Respuesta: [Duda] Como defino un admin en un GM? - by [J]ulian - 17.11.2011, 06:50
Respuesta: Re: [Duda] Como defino un admin en un GM? - by TiNcH010 - 17.11.2011, 20:13
Re: [Duda] Como defino un admin en un GM? - by TakeR. - 18.11.2011, 22:49

Forum Jump:


Users browsing this thread: 1 Guest(s)