Includes - 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: Includes (
/showthread.php?tid=559004)
Includes -
PrinXe - 20.01.2015
How to overcome these includes any link any help?
C:\Users\win7\Desktop\New folder (14)\[BDR]Black DrifterZ SATDM v14.1\BDR Server\pawno\include\YSI\internal\y_funcinc.inc(63 ) : error 017: undefined symbol "printf"
C:\Users\win7\Desktop\New folder (14)\[BDR]Black DrifterZ SATDM v14.1\BDR Server\pawno\include\YSI\internal\y_funcinc.inc(63 ) : warning 215: expression has no effect
C:\Users\win7\Desktop\New folder (14)\[BDR]Black DrifterZ SATDM v14.1\BDR Server\pawno\include\YSI\internal\y_funcinc.inc(63 ) : error 001: expected token: ";", but found ")"
C:\Users\win7\Desktop\New folder (14)\[BDR]Black DrifterZ SATDM v14.1\BDR Server\pawno\include\YSI\internal\y_funcinc.inc(63 ) : error 029: invalid expression, assumed zero
C:\Users\win7\Desktop\New folder (14)\[BDR]Black DrifterZ SATDM v14.1\BDR Server\pawno\include\YSI\internal\y_funcinc.inc(63 ) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
4 Errors
Re: Includes -
xVIP3Rx - 20.01.2015
Make sure you have "#include <a_samp>" before including it, that's probably the issue
Re: Includes -
PrinXe - 20.01.2015
#include samp is their
Re: Includes -
xVIP3Rx - 20.01.2015
Include samp before including the YSI, This code isn't correct and it gave me the same errors as yours
pawn Код:
#include <YSI\internal\y_funcinc>
#include <a_samp>
Should be
pawn Код:
#include <a_samp>
#include <YSI\internal\y_funcinc>