Server Setup Questions
Have been running 2 servers a while now, 1 vs 1 and FFA and a few questions have come up.
1. How do I turn quad off? like disable quad? Same with invis and speed. If there is no way to turn just one or two of them off, how do I turn all of them off?
2. I saw there is e+ freeze tag servers up? how do I do that?
Thanks in advance.
As you might have learned the freeze tag is on the beta servers only and not yet available to the public.
docs/server.txt:
[code:1]xp_powerups # (DEFAULT: 63)
---------------------------
Defines what powerups should spawn in a map.
It's working like dmflags.
Example:
Flight, Quad Damage, Invisibility and Haste is 32 + 1 + 8 + 4 = 45
Value | Powerup
------+-----------------
1 | Quad Damage
2 | Battle Suit
4 | Haste
8 | Invisibility
16 | Regeneration
32 | Flight (*)[/code:1]
Therefore disabling Quad, Invis and Haste means to enable anything else:
2 + 16 + 32 = 50
Thanks!