SA-MP Forums Archive
error 033 - 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: error 033 (/showthread.php?tid=244553)



error 033 - sekol - 27.03.2011

pawn Код:
new name[128];
format(name, sizeof(name), "%s", GetName(playerid));
...
else if(DoorInfo[i][dType] == 2 && DoorInfo[i][dOwner] == name) // error line
This code gives me
Код:
error 033: array must be indexed (variable "name")
What's wrong?


Re: error 033 - Cameltoe - 27.03.2011

Strcmp


Re: error 033 - sekol - 27.03.2011

Ahh, yes! I forgot about this! Solved.