SA-MP Forums Archive
[Help Please] How to fix this warning please? - 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: [Help Please] How to fix this warning please? (/showthread.php?tid=191944)



[Help Please] How to fix this warning please? - XoSarahMoX - 20.11.2010

I get this when I compile:
Код:
C:\Users\SoSu\Desktop\backup\roleplaytraining.pwn(342) : warning 204: symbol is assigned a value that is never used: "string"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Warning.
Here is the line 342:
Код:
new name[MAX_PLAYER_NAME], file[256], string[128];
What is the problem with that line please help me.


Re: [Help Please] How to fix this warning please? - Buzzbomb - 20.11.2010

Quote:
Originally Posted by XoSarahMoX
Посмотреть сообщение
I get this when I compile:
Код:
C:\Users\SoSu\Desktop\backup\roleplaytraining.pwn(342) : warning 204: symbol is assigned a value that is never used: "string"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Warning.
Here is the line 342:
Код:
new name[MAX_PLAYER_NAME], file[256], string[128];
What is the problem with that line please help me.
Код:
new name[MAX_PLAYER_NAME], file[128];
Remove this ,string[256]


Re: [Help Please] How to fix this warning please? - XoSarahMoX - 20.11.2010

Thanks a lot !