String problem - 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: String problem (
/showthread.php?tid=370162)
String problem -
Kenway - 19.08.2012
Код HTML:
Eror:
warning 203: symbol is never used: "FALSE"
Код HTML:
Code:
new string[128];
format(string, sizeof(string), "Your vehicle's tank has been refilled for $%d.", RefuelingVehiclePrice[playerid]);
SendClientMessageEx(playerid, COLOR_WHITE,string);
Re: String problem -
avivelkayam - 19.08.2012
your warning is not from this code is from other
is telling that the variable FALSE is not used
if you want to delete this warning delete:
new FALSE;
or using
#pragma unused FALSE
and this is warning not an error
Re: String problem -
Kenway - 19.08.2012
thanks its working