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



error - hillko - 15.06.2014

Код HTML:
C:\Users\User\Desktop\fire.pwn(28) : error 017: undefined symbol "MapAndreas_FindZ_For2DCoord"
C:\Users\User\Desktop\fire.pwn(32) : error 017: undefined symbol "foreach"
C:\Users\User\Desktop\fire.pwn(32) : error 029: invalid expression, assumed zero
C:\Users\User\Desktop\fire.pwn(32) : error 017: undefined symbol "i"
C:\Users\User\Desktop\fire.pwn(32) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


5 Errors.
28 MapAndreas_FindZ_For2DCoord(object_x, object_y, object_z);
32 foreach (new i : Player)


Re: error - mahardika - 15.06.2014

are youhave map andreas included?
for line 32 use foreach(player,i)


Re: error - hillko - 15.06.2014

Quote:
Originally Posted by mahardika
Посмотреть сообщение
are youhave map andreas included?
for line 32 use foreach(player,i)
and what should be done?


Re: error - Threshold - 15.06.2014

Add:
pawn Код:
#include <MapAndreas>
#include <foreach>
to the top of your script.

MapAndreas (Include): https://sampforum.blast.hk/showthread.php?tid=273263
Foreach (Include): https://sampforum.blast.hk/showthread.php?tid=92679


Re: error - hillko - 15.06.2014

Quote:
Originally Posted by Threshold
Посмотреть сообщение
Add:
pawn Код:
#include <MapAndreas>
#include <foreach>
to the top of your script.

MapAndreas (Include): https://sampforum.blast.hk/showthread.php?tid=273263
Foreach (Include): https://sampforum.blast.hk/showthread.php?tid=92679
Код HTML:
C:\Users\User\Desktop\fire.pwn(34) : error 017: undefined symbol "foreach"
C:\Users\User\Desktop\fire.pwn(34) : error 029: invalid expression, assumed zero
C:\Users\User\Desktop\fire.pwn(34) : error 017: undefined symbol "i"
C:\Users\User\Desktop\fire.pwn(34) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
foreach (new i : Player)


Re: error - Threshold - 15.06.2014

Did you include foreach -_-