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



Undefined Symbol - Cyboorg - 03.06.2017

While compiling script i got these errors,which include do i need ?

Код:
C:\Users\Desktop\yads.pwn(240) : error 017: undefined symbol "DIALOG_STYLE_TABLIST"
C:\Users\Desktop\yads.pwn(259) : error 017: undefined symbol "DIALOG_STYLE_TABLIST_HEADERS"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Errors.



Re: Undefined Symbol - asri - 03.06.2017

i think you need update you all files samp


Re: Undefined Symbol - Cyboorg - 03.06.2017

Actually,i have updated all files.! But i'm missing a file that this dialog needs it to compile.


Re: Undefined Symbol - Vince - 03.06.2017

Put your files in their proper locations and don't doubleclick on .pwn files to open them. Open the editor then open the file through the editor. Or get rid of spare copies of the compiler in who knows how many different locations.


Re: Undefined Symbol - Hunud - 03.06.2017

Код:
#define DIALOG_STYLE_TABLIST_HEADERS 5



Re: Undefined Symbol - Cyboorg - 03.06.2017

Quote:
Originally Posted by Hunud
Посмотреть сообщение
Код:
#define DIALOG_STYLE_TABLIST_HEADERS 5
Only this left now

Код:
C:\Users\Desktop\SERVER\yads.pwn(241) : error 017: undefined symbol "DIALOG_STYLE_TABLIST"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.



Re: Undefined Symbol - asri - 03.06.2017

same define that


Re: Undefined Symbol - Cyboorg - 03.06.2017

Compiled .
Thank you guys!


Re: Undefined Symbol - Fairuz - 03.06.2017

That's not the right way to fix it,you should update all server files to the latest version


Re: Undefined Symbol - Whatname - 03.06.2017

if the files are the latest version it should work but if not try this

PHP код:

#if defined DIALOG_STYLE_TABLIST
#else
    #define DIALOG_STYLE_TABLIST
#endif

#if defined DIALOG_STYLE_TABLIST_HEADERS
#else
    #define DIALOG_STYLE_TABLIST_HEADERS
#endif