SA-MP Forums Archive
Error warning 204: symbol is assigned a value that is never used: "VIP" - 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: Error warning 204: symbol is assigned a value that is never used: "VIP" (/showthread.php?tid=396424)



Error warning 204: symbol is assigned a value that is never used: "VIP" - DexterBR - 30.11.2012

C:\Users\casa\Desktop\Ultimate Server\gamemodes\UnguggedVIP.pwn(11591) : warning 204: symbol is assigned a value that is never used: "VIP"

Why?

Код:
else if(listitem == 3)
				{
				    new VIP = PlayerInfo[playerid][pVIP];
				    new playerlevel = PlayerInfo[playerid][pLevel];
				    new money = ScriptMoney[playerid];
				    new bankmoney = PlayerInfo[playerid][pAccount];
				    new punished = PlayerInfo[playerid][pPunished];
				    new ptime = PlayerInfo[playerid][pConnectSeconds];
				    new playersip[24];



Re: Error warning 204: symbol is assigned a value that is never used: "VIP" - blackbhuta - 30.11.2012

Код:
else if(listitem == 3)
{
	VIP = PlayerInfo[playerid][pVIP];
	new playerlevel = PlayerInfo[playerid][pLevel];
	new money = ScriptMoney[playerid];
	new bankmoney = PlayerInfo[playerid][pAccount];
	new punished = PlayerInfo[playerid][pPunished];
	new ptime = PlayerInfo[playerid][pConnectSeconds];
	new playersip[24];



Re: Error warning 204: symbol is assigned a value that is never used: "VIP" - ViniBorn - 30.11.2012

Delete this
pawn Код:
new VIP = PlayerInfo[playerid][pVIP];



Re: Error warning 204: symbol is assigned a value that is never used: "VIP" - DexterBR - 01.12.2012

I'll have some loss deleting this?


Re: Error warning 204: symbol is assigned a value that is never used: "VIP" - Konstantinos - 01.12.2012

Quote:
Originally Posted by DexterBR
Посмотреть сообщение
I'll have some loss deleting this?
No, it says that you made a variable "VIP" that it is never used.
Use it somewhere or just delete it.


Re: Error warning 204: symbol is assigned a value that is never used: "VIP" - DexterBR - 02.12.2012

Thanks 4 support. So I'll do it