SA-MP Forums Archive
How to fix - 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: How to fix (/showthread.php?tid=356354)



How to fix - Jartsu - 03.07.2012

Quote:

C:\Documents and Settings\Jarek\Desktop\pawno\include\zcmd.inc(60) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\zcmd.inc(61) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\zcmd.inc(62) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\zcmd.inc(90) : error 017: undefined symbol "tolower"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 204) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 205) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 206) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 207) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 20 : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 209) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 210) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 214) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 234) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 235) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 236) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 237) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 23 : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 239) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 240) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 244) : error 017: undefined symbol "funcidx"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 262) : error 017: undefined symbol "IsPlayerNPC"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 284) : error 017: undefined symbol "IsPlayerNPC"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 406) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 407) : error 017: undefined symbol "CreatePlayer3DTextLabel"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 40 : error 017: undefined symbol "CreatePlayerObject"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 409) : error 017: undefined symbol "DeletePlayer3DTextLabel"
C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc( 411) : error 017: undefined symbol "DestroyPlayerObject"

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


26 Errors.

Plz help


Re: How to fix - Roko_foko - 03.07.2012

Read the errors. It says undefined symbol "something". To solve that kind of error you go to the file( it's link/adress is C:\Documents and Settings\Jarek\Desktop\pawno\include\streamer.inc) open it and define the symol. To define
pawn Код:
new Name; // for variables
FunctionName(){}//for functions
But from what I see here you actualy don't know what are you doing.
PS: this will clean your errors but I think(know) it won't work as it shloud.


Re: How to fix - Vince - 03.07.2012

Include sa-mp natives first. a_samp must be at the top of your includes list.


Re: How to fix - Jartsu - 03.07.2012

Where i type it
Quote:

new Name; // for variables
FunctionName(){}//for functions




Re: How to fix - Jarnu - 03.07.2012

first do as Vince said..

add following line at top of your script
pawn Код:
#include <a_samp>