SA-MP Forums Archive
Bug in My Gamemod - 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: Bug in My Gamemod (/showthread.php?tid=541244)



Bug in My Gamemod - AYOUYOU - 10.10.2014

Hi Guys.
Today i've add register and random Player and Colors But I have Fined 2waring
Код:
D:\DOCUME~1\Ay0uB\Bureau\NOUVEA~2\GAMEMO~1\X1treme.pwn(5079) : warning 203: symbol is never used: "PlayerColors"
D:\DOCUME~1\Ay0uB\Bureau\NOUVEA~2\GAMEMO~1\X1treme.pwn(5079) : warning 203: symbol is never used: "SwearWords"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Warnings.



Re: Bug in My Gamemod - GGRoleplay - 10.10.2014

Use CTRL +F "PlayerColor" and remove that and the same with SwearWords


Re: Bug in My Gamemod - Gogeta - 10.10.2014

Looks like you have some unused variables dunno xD


Re: Bug in My Gamemod - kaisersouse - 10.10.2014

You've defined those but never use them. IMHO its not that big of a deal. I have like 15 things I've defined as part of a framework but I'm not using them at the moment and I jsut ignore the warnings.

Disclaimer: Ignoring warnings is bad behavior and real programmers (******) would probably hit me in the face for telling people to ignore warnings.


Re : Bug in My Gamemod - AYOUYOU - 10.10.2014

Fixed Thanks GGRoleplay