reduced timers for showing messages
This commit is contained in:
parent
d3b862cdf2
commit
296d3f4b38
@ -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++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user