How to remove warning 211 ? - 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: How to remove warning 211 ? (
/showthread.php?tid=491801)
How to remove warning 211 ? -
barts - 01.02.2014
PHP код:
if(PlayerInfo[playerid][pGift] = 1) return SendClientMessage(playerid, COLOR_GREY, "You have already claimed your gift, try again after the next paycheck.");
PHP код:
warning 211: possibly unintended assignment
Re: How to remove warning 211 ? -
zombieking - 01.02.2014
pawn Код:
if(PlayerInfo[playerid][pGift] = 1)
Should be
pawn Код:
if(PlayerInfo[playerid][pGift] == 1)
Re: How to remove warning 211 ? -
Burridge - 01.02.2014
^ EDIT: Lmfao, got beaten to it xD ^
pawn Код:
if(PlayerInfo[playerid][pGift] = 1)
Should be
pawn Код:
if(PlayerInfo[playerid][pGift] == 1)
Re: How to remove warning 211 ? -
Ryan McDuff - 01.02.2014
PHP код:
if(PlayerInfo[playerid][pGift] = 1)
Change to:
PHP код:
if(PlayerInfo[playerid][pGift] == 1)
Re: How to remove warning 211 ? -
barts - 01.02.2014
Thanks