Help with timer
#4

Код:
new VipLockerTimer[MAX_PLAYERS],   // in top of script.
               bool:CanUseLocker[MAX_PLAYERS];

OnPlayerConnect(playerid)
CanUseLocker[playerid] = true; // add this
Код:
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_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 arent in correct place.");
		}
	}
	return 1;
}

forward VipLockerTime(playerid);
public VipLockerTime(playerid)
{
       CanUseLocker[playerid] = true;
       return 1;
}
This is all I can help you with.
Reply


Messages In This Thread
Delete this - by RedCode - 07.03.2015, 22:47
Re : Help with timer - by Golimad - 07.03.2015, 23:38
Re: Help with timer - by RedCode - 07.03.2015, 23:48
Re : Help with timer - by Golimad - 08.03.2015, 03:33
Re: Help with timer - by RedCode - 08.03.2015, 15:21

Forum Jump:


Users browsing this thread: 1 Guest(s)