[Help]Warnings!#1 - 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]Warnings!#1 (
/showthread.php?tid=208054)
[Help]Warnings!#1 -
tronix096 - 07.01.2011
[CODE]C:\Documents and Settings\Antonio\Desktop\SERVER\gamemodes\GM0.pwn( 215) : warning 204: symbol is assigned a value that is never used: "string"
215:
Код:
new name[MAX_PLAYER_NAME], file[256], string[128];
How tofix this error?
Re: [Help]Warnings!#1 -
HyperZ - 07.01.2011
pawn Код:
new name[MAX_PLAYER_NAME], file[256];
Re: [Help]Warnings!#1 -
Alex_Valde - 07.01.2011
You have never used "string" and you have declare it. This warning is telling you that you didn't use it.
If you don't wanna use it just delete it.
pawn Код:
new name[MAX_PLAYER_NAME], file[256];
Re: [Help]Warnings!#1 -
tronix096 - 07.01.2011
fixed
Re: [Help]Warnings!#1 -
HyperZ - 07.01.2011
Quote:
Originally Posted by tronix096
Thanx
|
No Problem.
Re: [Help]Warnings!#1 -
tronix096 - 07.01.2011
Fixed
Re: [Help]Warnings!#1 -
tronix096 - 07.01.2011
Sry for DP im fix this
)