reduced timers for showing messages

This commit is contained in:
jenz 2024-05-10 16:07:26 +02:00
parent d3b862cdf2
commit 296d3f4b38

View File

@ -73,7 +73,7 @@ public void OnPluginStart()
round_start_delay = true; round_start_delay = true;
//timer for ZM zone benefits //timer for ZM zone benefits
g_hZMZoneTimer = CreateTimer(5.0, give_zm_zone_boosts, _, TIMER_REPEAT); 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) 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) public void OnRoundStart(Event hEvent, const char[] sEvent, bool bDontBroadcast)
{ {
g_permit_zone_benefits = false; 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; g_human_damage_addition = 1.0;
for (int client = 0; client < MaxClients; client++) for (int client = 0; client < MaxClients; client++)
{ {