Skip to content

Commit

Permalink
CTF: Lower delay time to touch flag after respawn
Browse files Browse the repository at this point in the history
  • Loading branch information
rtxa committed Aug 6, 2024
1 parent b77dbe0 commit 4e55ed0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions valve/addons/amxmodx/scripting/agmodx_ctf.sma
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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() {
Expand Down

0 comments on commit 4e55ed0

Please sign in to comment.