SA-MP Forums Archive
Just a Couple of Warnings - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Just a Couple of Warnings (/showthread.php?tid=156301)



Just a Couple of Warnings - TheNuttyScientist - 21.06.2010

Код:
E:\SA-MP Server Making Kit\gamemodes\bbfreeroam.pwn(127) : warning 204: symbol is assigned a value that is never used: "playrname"
E:\SA-MP Server Making Kit\gamemodes\bbfreeroam.pwn(935) : warning 203: symbol is never used: "car"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Warnings.
Any ideas anyone?


Re: Just a Couple of Warnings - Antonio [G-RP] - 21.06.2010

First of all, 'car' is never used, so where it says 'new car;' you can delete it.

Secondly, 'playrname' is never used, so where it says 'new playrname[MAX_PLAYER_NAME];' (because its assigned a value) you can delete it too.


Re: Just a Couple of Warnings - TheNuttyScientist - 21.06.2010

What fairly simple fixes.

Thanks.