[NOT FIXED] What's wrong with this?
#7

Quote:
Originally Posted by zyx
You forgot to use ending brackets after else. By the way, sorry for the indenting, the code tags messed it up.

Код:
public OnPlayerSelectedMenuRow(playerid, row)
{
  new Menu:CurrentMenu = GetPlayerMenu(playerid);

	if(CurrentMenu == BuyLicenses)
	{
		switch(row)
		{
    	case 0: //Driving License
    	{
        if(GetPlayerMoney(playerid) >= 50)
		{
    		GivePlayerMoney(playerid, -50);
			PlayerInfo[playerid][pCarLic] = 1;
  		}
  		else
  		{
    		SendClientMessage(playerid, COLOR_GRAD1, "You do not have enough cash to buy a driver's license.");
		}
		}
			case 1: //Firearms License
    	{
			  if(GetPlayerMoney(playerid) >= 800)
				{
    			GivePlayerMoney(playerid, -800);
					PlayerInfo[playerid][pGunLic] = 1;
  			}
  			else
  			{
    			SendClientMessage(playerid, COLOR_GRAD1, "You do not have enough cash to buy a firearms license.");
				}
			}
			case 2: //Boating License
    	{
        if(GetPlayerMoney(playerid) >= 800)
				{
    			GivePlayerMoney(playerid, -800);
					PlayerInfo[playerid][pBoatLic] = 1;
  			}
  			else
  			{
    			SendClientMessage(playerid, COLOR_GRAD1, "You do not have enough cash to buy a boat license.");
				}
			}
			case 3: //Flying License
    	{
			  if(GetPlayerMoney(playerid) >= 3200)
				{
    			GivePlayerMoney(playerid, -3200);
					PlayerInfo[playerid][pGunLic] = 1;
  			}
  			else
  			{
    			SendClientMessage(playerid, COLOR_GRAD1, "You do not have enough cash to buy a flying license.");
				}
    	}
		}
	}
	return 1;
}
If I put the ending brackets after else, my pawno compiler says: "Pawn Compiler Library has stopped working..." and doesn't compile..
Reply


Messages In This Thread
[NOT FIXED] What's wrong with this? - by [GTA]Rockstar - 26.02.2009, 03:04
Re: What's wrong with this? - by Daren_Jacobson - 26.02.2009, 03:09
Re: What's wrong with this? - by [GTA]Rockstar - 26.02.2009, 03:12
Re: What's wrong with this? - by yom - 26.02.2009, 03:16
Re: What's wrong with this? - by [GTA]Rockstar - 26.02.2009, 03:20
Re: What's wrong with this? - by zyx - 26.02.2009, 04:50
Re: What's wrong with this? - by [GTA]Rockstar - 26.02.2009, 22:27
Re: [NOT FIXED] What's wrong with this? - by Jefff - 26.02.2009, 23:06
Re: [NOT FIXED] What's wrong with this? - by [GTA]Rockstar - 26.02.2009, 23:17
Re: [NOT FIXED] What's wrong with this? - by Jefff - 26.02.2009, 23:24

Forum Jump:


Users browsing this thread: 1 Guest(s)