From 4e55ed06c39f56d52ac1df290efd65c74a894546 Mon Sep 17 00:00:00 2001 From: rtxa Date: Tue, 6 Aug 2024 13:48:14 -0300 Subject: [PATCH] CTF: Lower delay time to touch flag after respawn --- valve/addons/amxmodx/scripting/agmodx_ctf.sma | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/valve/addons/amxmodx/scripting/agmodx_ctf.sma b/valve/addons/amxmodx/scripting/agmodx_ctf.sma index 01e939d..bf09d29 100644 --- a/valve/addons/amxmodx/scripting/agmodx_ctf.sma +++ b/valve/addons/amxmodx/scripting/agmodx_ctf.sma @@ -132,7 +132,7 @@ new gCvarStealPoints; // the amount of points the stealer gets. new gCvarCarrierKillPoints; // the amount of points the killer gets. new gCvarReturnPoints; // the amount of points the returner gets. new gCvarFlagReturnTime; // the time that a dropped flag lays in the world before respawning. -new gCvarFlagDelayTime; +new gCvarFlagDelayTime; // the time required to allow players to touch a flag after it respawns. public plugin_precache() { register_plugin(PLUGIN, AGMODX_VERSION, AUTHOR); @@ -158,7 +158,7 @@ public plugin_precache() { gCvarStealPoints = create_cvar("sv_ag_ctf_stealpoints", "1"); gCvarCarrierKillPoints = create_cvar("sv_ag_ctf_carrierkillpoints", "1"); gCvarFlagReturnTime = create_cvar("sv_ag_ctf_flag_resettime", "30"); - gCvarFlagDelayTime = create_cvar("sv_ag_ctf_flag_delaytime", "3"); + gCvarFlagDelayTime = create_cvar("sv_ag_ctf_flag_delaytime", "1"); } public plugin_cfg() {