This shouldn't be happening ? - 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: This shouldn't be happening ? (
/showthread.php?tid=473162)
This shouldn't be happening ? -
Tagathron - 01.11.2013
Код:
INI_Int("Has it", HasTT[playerid];
It says INI_Int is undefined symbol?
I included y_ini...?
Re: This shouldn't be happening ? -
PrivatioBoni - 01.11.2013
It means you need to define the symbol, which is done via:
If you don't get what I mean, please reply back.
Re: This shouldn't be happening ? -
Tagathron - 01.11.2013
Quote:
Originally Posted by PrivatioBoni
It means you need to define the symbol, which is done via:
If you don't get what I mean, please reply back. 
|
INI_Int is a function.
Re: This shouldn't be happening ? -
Tamer - 01.11.2013
Do the other Y_Ini functions work?
Try going your pawno folder and open pawn editor then open your code by browsing and compile.
Re: This shouldn't be happening ? -
Beckett - 01.11.2013
Код:
INI_Int("Has it", HasTT[playerid];
Are you sure
HasTT is defined?
Re: This shouldn't be happening ? -
Tagathron - 01.11.2013
It's okay,i've fixed it.
Turns out I forgot a bracket,just haven't noticed it
Код:
INI_Int("Has it", HasTT[playerid]);