Why this error? - 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)
+--- Thread: Why this error? (
/showthread.php?tid=598892)
Why this error? -
AndreiWow - 18.01.2016
D:\server\gamemodes\rptestsv.pwn(1150) : error 017: undefined symbol "AdminLevel"
Код:
pInfo[pID][AdminLevel] = value;
Код:
enum PlayerInfo
{
Pass[129],
Adminlevel,
VIPlevel,
Money,
Scores,
Kills,
Deaths
}
new pInfo[MAX_PLAYERS][PlayerInfo];
Re: Why this error? -
RoboN1X - 18.01.2016
case sensitive.
Код:
pInfo[pID][Adminlevel] = value;
Re: Why this error? -
Abulsoud - 18.01.2016
you had a small L at your playerinfo, yet you are defining it with a capatilized L.
Use RoboN's fix, should work