Warning
#1

I have this warnings:
Код:
C:\Users\Mihnea\Desktop\BloodZone\gamemodes\BloodZone.pwn(32002) : warning 213: tag mismatch
C:\Users\Mihnea\Desktop\BloodZone\gamemodes\BloodZone.pwn(32002) : warning 206: redundant test: constant expression is non-zero
The Line 32002 is this:
Код:
if(total > 0)
Te All script is:
Код:
if(PlayerInfo[playerid][pLevel] >= 0)
				{
					new nxtlevel = PlayerInfo[playerid][pLevel];
					new costlevel = nxtlevel*levelcost;//10k for testing purposes
					new expamount = nxtlevel*levelexp;
					new infostring[256];
					if(GetPlayerCash(playerid) < costlevel)
					{
						format(infostring, 256, "You do not have enough Cash ($%d) !",costlevel);
						SendClientMessage(playerid, COLOR_GRAD1, infostring);
						return 1;
					}
					else if (PlayerInfo[playerid][pExp] < expamount)
					{
						format(infostring, 256, "You need %d Respect Points, you curently have [%d] !",expamount,PlayerInfo[playerid][pExp]);
						SendClientMessage(playerid, COLOR_GRAD1, infostring);
						return 1;
					}
					else
					{
						format(string, sizeof(string), "~g~LEVEL UP~n~~w~You Are Now Level %d", nxtlevel);
						PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
						PlayerPlayMusic(playerid);
						GivePlayerCash(playerid, (-costlevel));
						PlayerInfo[playerid][pLevel]++;
						if(PlayerInfo[playerid][pDonateRank] > 0)
						{
						    PlayerInfo[playerid][pExp] -= expamount;
//						    new total = PlayerInfo[playerid][pExp];
						    if(total > 0)
						    {
						        PlayerInfo[playerid][pExp] = total;
						    }
						    else
						    {
						        PlayerInfo[playerid][pExp] = 0;
						    }
						}
						else
						{
							PlayerInfo[playerid][pExp] = 0;
						}
						PlayerInfo[playerid][gPupgrade] = PlayerInfo[playerid][gPupgrade]+2;
						GameTextForPlayer(playerid, string, 5000, 1);
						format(infostring, 256, "You bought Level %d for ($%d) Type /upgrade", nxtlevel, costlevel);
						SendClientMessage(playerid, COLOR_GRAD1, infostring);
						format(infostring, 256, "You gave %d unspent Upgrade Points",PlayerInfo[playerid][gPupgrade]);
						SendClientMessage(playerid, COLOR_GRAD2, infostring);
					}
				}
				return 1;
			}
can someone help me pls?
Reply


Messages In This Thread
Warning - by ventilator1 - 06.08.2013, 00:46
Re: Warning - by AaronKillz - 06.08.2013, 00:48
Re: Warning - by ventilator1 - 06.08.2013, 01:01
Re: Warning - by AaronKillz - 06.08.2013, 01:06
Re: Warning - by ventilator1 - 06.08.2013, 01:15
Re: Warning - by Vince - 06.08.2013, 09:32
Re: Warning - by ventilator1 - 06.08.2013, 11:40

Forum Jump:


Users browsing this thread: 1 Guest(s)