Skip to content

Gaming Servers

Lean's edited this page Mar 6, 2025 · 18 revisions

No More Room in Hell

Changing cvars

If you need to change sv_bash_cost_per_sec or any variable, you can simple create a ruleset inside ``nmrih/rulesets/mutators/myconfig.txt

"Rulesset"
{
   "Name"   "MyConfig"
   "Author" "You"
   "Description"   "Custom Configurations"

   "Base"
   {
      sv_bash_cost_per_sec 0,
      sv_shove_cost_0
   }
}

Now you should add this mutator to be called when te server starts, go to nmrih/cfg/myconfig.cfg, and add the line:

// Example 1
sv_mutators myconfig
// Example 2
sv_mutators myconfig,myconfig2

When you run the server put the new cfg to be executed when launching

./srcds_run +exec myconfig.cfg

Clone this wiki locally