Added Translocator ammo feature from UT2k4.
Prefixed mk_math classes for cross-compat with any other mods that use them. Fixed incorrect uses of gametic. Fixed crash caused by incorrect ordering of PendingWeapon checks.
This commit is contained in:
parent
9e1aea068f
commit
931f89832c
23 changed files with 179 additions and 107 deletions
|
|
@ -20,6 +20,7 @@ user float flak_weaponsize = 0.8; // 0.2 <-> 1.0 in steps of 0.2 (default 0.8)
|
|||
user float flak_statussize = 1.0; // 0.5 <-> 1.5 in steps of 0.1 (default 1.0)
|
||||
user bool flak_footsteps = true; // players make footstep sounds
|
||||
server bool flak_translocator = false; // translocator is enabled (hello, sequence breaking)
|
||||
server bool flak_transloc2k4 = false; // translocator has recharging ammo like in UT2k4 and up
|
||||
user bool flak_noswitchdeemer = true; // don't switch to redeemer when out of ammo
|
||||
user bool flak_deemershader = false; // fancy blur/grain/tint shader
|
||||
server bool flak_classicsshock = false; // classic enhanced shock rifle (no altfire, beams don't have splash damage)
|
||||
|
|
@ -27,10 +28,10 @@ server bool flak_utmovement = false; // emulate UE1's air/ground movement phys
|
|||
server bool flak_doomspeed = false; // keep Doomguy run speed when using UT movement
|
||||
server bool flak_doomaircontrol = false; // keep Doom's limited air control when using UT movement
|
||||
server bool flak_nobosstelefrag = false; // disable telefragging of boss monsters (useful when translocator is enabled)
|
||||
server bool flak_nowalkdrop = false; // don't drop off ledges while holding walk key (glitchy)
|
||||
server bool flak_nowalkdrop = false; // [GLITCHY] don't drop off ledges while holding walk key
|
||||
server bool flak_corpsedamage = false; // [WIP/EXPERIMENTAL] allow corpses to take damage and be gibbed, currently just causes a jump to XDeath until gore system is implemented
|
||||
server bool flak_swingers = true; // weapon recoil that affects player view
|
||||
server float flak_swingerstrength = 0.5; // strength of visual recoil
|
||||
server bool flak_radboots = true; // jump boots protect against damaging floors (this is to account for the lack of a radsuit)
|
||||
server bool flak_blood = true; // use doom tournament blood (disable if using another gore mod)
|
||||
server bool flak_gibs = true; // use doom tournament gibbing (disable if using another gore mod)
|
||||
server bool flak_blood = true; // [WIP] use doom tournament blood (disable if using another gore mod)
|
||||
server bool flak_gibs = false; // [WIP/UNSTABLE] use doom tournament gibbing (disable if using another gore mod)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue