Help me with dialog
#4

Quote:
Originally Posted by MrCallum
Посмотреть сообщение
Код:
#define viplocker_dialog		1990

CMD:viplocker(playerid, params[])
{
        if(CanUseLocker[playerid]==false) return SendClientMessage(playerid, COLOR_WHITE, "You have to wait before using locker again.");
	if(PlayerInfo[playerid][pDonator] >= 1)
	{
		if(IsPlayerInRangeOfPoint(playerid,3,-2653.1226, 1410.2570 ,906.2734))
		{
			ShowPlayerDialogEx(playerid, viplocker_dialog, DIALOG_STYLE_LIST, "VIP Locker", "Health\nArmour\nDeagle", "Select", "Cancel");
                         VipLockerTimer[playerid] = SetTimerEx("VipLockerTime", 3600*1000, false, "i", playerid);
                         CanUseLocker[playerid] = false;
		}
		else
		{
			SendClientMessage(playerid, COLOR_WHITE, "You are not in the correct place.");
		}
	}
	return 1;
}

forward VipLockerTime(playerid);
public VipLockerTime(playerid)
{
       CanUseLocker[playerid] = true;
       return 1;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
	if(dialogid == viplocker_dialog)
	{
		if(response)
		{
			if(listitem == 0)
			{
				SetPlayerHealth(playerid, 100.0);
				SendClientMessage(playerid, COLOR_WHITE, "You have bought your way up to 100% health!");
                                GivePlayerMoney(playerid, -300);
			}
			if(listitem == 1)
			{
				SetPlayerArmour(playerid, 100.0);
				SendClientMessage(playerid, COLOR_WHITE, "You have bought your armor up to 100% health!");
                                GivePlayerMoney(playerid, -300);
			}
			if(listitem == 2)
			{
				GivePlayerWeapon(playerid, 24, 500);
				SendClientMessage(playerid, COLOR_YELLOW, "You have bought a Desert Eagle for yourself!");
                                GivePlayerMoney(playerid, -1300);
			}
		}
	}
	return 1;
}
Stop copying shit from my post.. Can't you do of your own?
Reply


Messages In This Thread
Delete this - by RedCode - 08.03.2015, 15:41
Re: Help me with dialog - by biker122 - 08.03.2015, 15:49
Re: Help me with dialog - by MrCallum - 08.03.2015, 15:54
Re: Help me with dialog - by biker122 - 08.03.2015, 16:08
Re: Help me with dialog - by Ryan25 - 08.03.2015, 16:14
Re: Help me with dialog - by MrCallum - 08.03.2015, 16:16
Re: Help me with dialog - by biker122 - 08.03.2015, 16:17
Re: Help me with dialog - by MrCallum - 08.03.2015, 16:19
Re: Help me with dialog - by Ryan25 - 08.03.2015, 17:03
Re: Help me with dialog - by RedCode - 08.03.2015, 17:25

Forum Jump:


Users browsing this thread: 1 Guest(s)