Warning, how to fix ? - 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: Warning, how to fix ? (
/showthread.php?tid=583273)
Warning, how to fix ? -
IndependentGaming - 27.07.2015
Hello, i got one warning and then this is not working,
PHP код:
(6047) : warning 219: local variable "string" shadows a variable at a preceding level
PHP код:
{
>> new money = floatround(SweeperDistance[playerid] * MONEY_PER_METER), string[80];
format(string, sizeof(string), "~n~~n~~w~Distance Cleaned: ~b~~h~~h~%d Meters~n~~w~Earned ~g~~h~~h~$%d", SweeperDistance[playerid], money);
AW: Warning, how to fix ? -
Mencent - 27.07.2015
Hello!
PHP код:
format(string, sizeof(string), "~n~~n~~w~Distance Cleaned: ~b~~h~~h~%d Meters~n~~w~Earned ~g~~h~~h~$%d", SweeperDistance[playerid], money);
to
PHP код:
format(string2, sizeof(string2), "~n~~n~~w~Distance Cleaned: ~b~~h~~h~%d Meters~n~~w~Earned ~g~~h~~h~$%d", SweeperDistance[playerid], money);
Where you defined this:
PHP код:
new string[..] => new string2[..];