From ef8d41cac3d91c49564db021109c71b371ae86ea Mon Sep 17 00:00:00 2001 From: jenz Date: Fri, 10 May 2024 16:07:26 +0200 Subject: [PATCH] reduced timers for showing messages --- zombie_hunting_respawn/zh_respawn_stop.sp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zombie_hunting_respawn/zh_respawn_stop.sp b/zombie_hunting_respawn/zh_respawn_stop.sp index f3d9ed97..99eca1d0 100644 --- a/zombie_hunting_respawn/zh_respawn_stop.sp +++ b/zombie_hunting_respawn/zh_respawn_stop.sp @@ -73,7 +73,7 @@ public void OnPluginStart() round_start_delay = true; //timer for ZM zone benefits g_hZMZoneTimer = CreateTimer(5.0, give_zm_zone_boosts, _, TIMER_REPEAT); - g_hZoneCounter = CreateTimer(10.0, announce_zone_controlls, _, TIMER_REPEAT); + g_hZoneCounter = CreateTimer(5.0, announce_zone_controlls, _, TIMER_REPEAT); } public Action announce_zone_controlls(Handle hTimer) @@ -318,7 +318,7 @@ public Action permit_zone_benefits(Handle hTimer) public void OnRoundStart(Event hEvent, const char[] sEvent, bool bDontBroadcast) { g_permit_zone_benefits = false; - g_hZoneBenefits = CreateTimer(60.0, permit_zone_benefits); + g_hZoneBenefits = CreateTimer(35.0, permit_zone_benefits); g_human_damage_addition = 1.0; for (int client = 0; client < MaxClients; client++) {