SA-MP Forums Archive
warning 203: symbol is never used: "HouseFile_Load" - 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 203: symbol is never used: "HouseFile_Load" (/showthread.php?tid=515805)



warning 203: symbol is never used: "HouseFile_Load" - ExcelDwi - 28.05.2014

Код:
C:\GTA - San Andreas\SERVER\gamemodes\latih.pwn(3348) : warning 203: symbol is never used: "HouseFile_Load"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Warning.
Pawn Code:
http://pastebin.com/mm7ehJHL


how to fix it?


Re: warning 203: symbol is never used: "HouseFile_Load" - Lynn - 28.05.2014

Change HouseFileLoad(HouseID) into a public function;
pawn Код:
HouseFileLoad(HouseID)
{
Change that too;

pawn Код:
forward HouseFile_Load(HouseID); // Place this with the rest of your 'forwards'
public HouseFile_Load(HouseID)
{