SA-MP Forums Archive
Warning in Pawno - 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: Warning in Pawno (/showthread.php?tid=560909)



Warning in Pawno - Primard - 31.01.2015

A warning
pawn Код:
C:\Users\blank\Documents\Personal Things\GTA files\GTA SA files\SAMP\filterscripts\ycmd.pwn(38) : warning 235: public function lacks forward declaration (symbol "cd")
Here is the line:
pawn Код:
public cd()
I know its a warning and it does not interfere with my filterscript but I would like it to be resolved so that it may not interfere with further scripting of my filterscript


Re: Warning in Pawno - DobbysGamertag - 31.01.2015

pawn Код:
forward cd();



Re: Warning in Pawno - Primard - 31.01.2015

did not work, 'forward' was not in blue and a lot of errors popped out


Re: Warning in Pawno - Bingo - 31.01.2015

forward <space> cd();

That will be:

pawn Код:
forward cd();



Re: Warning in Pawno - ATGOggy - 31.01.2015

Add this just above your line:
PHP код:
forward cd(); 
And show the new errors that you gets