Help with timer
#2

Check out https://sampwiki.blast.hk/wiki/SetTimerEx
Код:
new VipLockerTimer[MAX_PLAYERS],   // in top of script.
               bool:CanUseLocker[MAX_PLAYERS];
OnPlayerConnect(playerid): CanUseLocker[playerid] = true;
in command :
CanUseLocker[playerid] = false;
VipLockerTimer[playerid] = SetTimerEx ...... ( when timer is done : CanUseLocker[playerid] = true; )
Ur command will become :
Код:
CMD:viplocker(playerid, params[])
{
        if(!CanUseLocker[playerid]) 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");
		}
		else
		{
			SendClientMessage(playerid, COLOR_WHITE, "You arent in correct place.");
		}
	}
	return 1;
}
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)