[UNSOLVED]My admin system has a couple of errors which im not sure of... - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [UNSOLVED]My admin system has a couple of errors which im not sure of... (
/showthread.php?tid=122285)
[UNSOLVED]My admin system has a couple of errors which im not sure of... -
Lorenc_ - 21.01.2010
Re: My admin system has a couple of errors which im not sure of... -
MisterTickle - 21.01.2010
Where is the gPlayerInfo enum?
You are using PLAYER_MAIN for user accounts it seems, You need to use that instead of gPlayerInfo
Re: My admin system has a couple of errors which im not sure of... -
Lorenc_ - 21.01.2010
Re: My admin system has a couple of errors which im not sure of... -
CuervO - 21.01.2010
pawn Код:
enum gPlayerInfo
{
PLAYER_NAME[MAX_PLAYER_NAME],
PLAYER_IP[16],
PLAYER_REGGED,
PLAYER_PASS,
PLAYER_LOGGED,
PLAYER_LEVEL,
PLAYER_WIRED,
PLAYER_JAILED
};
new gPlayerInfo[MAX_PLAYERS][Info];
Re: My admin system has a couple of errors which im not sure of... -
Lorenc_ - 21.01.2010
Re: My admin system has a couple of errors which im not sure of... -
Lorenc_ - 21.01.2010