07.03.2015, 23:38
Check out https://sampwiki.blast.hk/wiki/SetTimerEx
Ur command will become :
Код:
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; )
Код:
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; }