4 errors: YSI - 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: 4 errors: YSI (
/showthread.php?tid=439677)
4 errors: YSI -
jordyvc - 26.05.2013
Hey,
I have some errors:
Код:
G:\Server\gamemodes\rp.pwn(49381) : error 017: undefined symbol "YSI_gwheelmodelsS"
G:\Server\gamemodes\rp.pwn(49381) : error 017: undefined symbol "YSI_gwheelmodelsA"
G:\Server\gamemodes\rp.pwn(49381) : warning 215: expression has no effect
G:\Server\gamemodes\rp.pwn(49381) : error 001: expected token: ";", but found "]"
G:\Server\gamemodes\rp.pwn(49381) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
4 Errors.
And this is the pawn code where the error is:
pawn Код:
iswheelmodel(modelid) {
new wheelmodels[17] = {1025,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1096,1097,1098};
foreach(wheelmodels, I) {
if (modelid == wheelmodels[I])
return true;
}
return false;
}
Thanks in advance!
Regards,
Jordyvc
Re: 4 errors: YSI -
Dzines4SAMP - 26.05.2013
Which line is line no. 49381 in that code.
Re: 4 errors: YSI -
jordyvc - 26.05.2013
foreach(wheelmodels, I) {
Is line 49381.