swwmgz_m/cvarinfo.txt
Marisa Kirisame e200850a79 Various menu tweaks, and other things:
- Added "additional tips" help menu section detailing some important things.
 - Bit more work into inter-mod compat.
 - Reorganize main menu elements (layout is now like Hexen, plus info).
 - Add sprites and other simple graphic stuff for upcoming dlc weapons.
 - ZScript file reorganizing.
 - Fix enemies that spend a long time in-air eating up FPS due to blood trails.
 - Remove Swinger code, it's unused anyway.
 - Fix scaling of titlemap texts.
 - Make help screen scale nicely in 21:9, like the hud.
 - Add cvar to allow people to still somehow play this with BD (it will break).
 - Expand lore entry for Saya's mom, detailing that one event at the wedding with Kirin.
 - Add model notes again so I can keep track of my progress with the collectibles (I swear I'm working on it).
2020-10-27 20:01:47 +01:00

87 lines
6.7 KiB
Text

// player
user string swwm_voicetype = "default"; // voice for your demolitionist
//user color swwm_tagcolor = "40 FF 00"; // color of your model tags, not available due to engine dickery
user float swwm_flashstrength = 1.0; // strength of screen flashes
user int swwm_hudmargin = 10; // margin around fullscreen hud elements
user int swwm_maxshown = 4; // max messages to show normally
user int swwm_maxshownbig = 10; // max messages to show when chatting
user int swwm_maxpickup = 5; // total pickup messages visible
user int swwm_mutevoice = 0; // mute demolitionist voice
// 0 - none
// 1 - combat comments
// 2 - item/secret comments
// 3 - map start comment
// 4 - pain/death and grunts
user int swwm_chatduration = 25; // lifespan of chat messages
user int swwm_msgduration = 5; // lifespan of other messages
user int swwm_pickduration = 3; // lifespan of pickup messages
server bool swwm_sharekeys = true; // share keys in mp
user noarchive int swwm_lasttab = 0; // last selected tab in the menu
user noarchive int swwm_lastloretab = 0; // last selected tab in the library submenu
user noarchive int swwm_laststattab = 0; // last selected tab in the stats submenu
user bool swwm_autousearmor = true; // automatically use armor items when possible
user bool swwm_autousehealth = true; // automatically use health items when possible
user bool swwm_autouseammo = true; // automatically use ammo fabricators when possible (excl. tier 4)
server int swwm_enforceautousearmor = 0; // 1: server enforces auto use, -1: server enforces no auto use, 0: server respects user setting
server int swwm_enforceautousehealth = 0; // likewise for health
server int swwm_enforceautouseammo = 0; // likewise for fabricators
user bool swwm_targeter = true; // show targeter healthbars
user bool swwm_targettags = true; // show enemy tags above healthbars
user bool swwm_healthnums = true; // show damage/healing numbers
user bool swwm_scorenums = true; // show score numbers
user bool swwm_scorebonus = true; // show score bonuses
user bool swwm_pois = true; // show points of interest highlighted by omnisight
user bool swwm_fly6dof = false; // flying uses 6dof movement, toggleable for those who get motion sickness
user bool swwm_othervoice = true; // can hear other player's voice lines in coop
user bool swwm_shaders = true; // use pp shaders for some effects
user bool swwm_earbuster = false; // limits loudness of wallbuster fire sounds
server bool swwm_revive = true; // allows the player to do an "emergency reboot" when dying
server int swwm_revivecooldown = 60; // cooldown after using a revive, in seconds (0: no limit)
user bool swwm_interart = true; // show fanart on intermissions
server bool swwm_balluse = true; // lead ball can "press" switches remotely
user bool swwm_bosshealthbars = true; // display large healthbars for vanilla boss encounters
server bool swwm_upgradebosses = true; // vanilla bosses will be "upgraded" to be less insta-die prone
server bool swwm_extraalert = false; // enables A_AlertMonsters calls for certain things which may be cpu-heavy
user bool swwm_accdamage = false; // damage within the same tic is grouped into a single damage number
user int swwm_maxtargetdist = 2000; // maximum distance for target healthbars to be updated
user int swwm_maxtargets = 40; // maximum targeter healthbars to display (0 = unlimited)
user int swwm_maxscorenums = 0; // maximum score numbers to display (0 = unlimited)
user int swwm_maxdamnums = 0; // maximum damage/healing numbers to display (0 = unlimited)
user int swwm_hudscale = 0; // HUD scaling (0 = use GZDoom scaling)
user int swwm_barscale = 2; // target healthbar scaling (0 = use GZDoom scaling)
user int swwm_scrscale = 2; // score scaling (0 = use GZDoom scaling)
user int swwm_numscale = 3; // damnum scaling (0 = use GZDoom scaling)
user int swwm_poiscale = 1; // point of interest scaling (0 = use GZDoom scaling)
user int swwm_detscale = 2; // item sense scaling (0 = use GZDoom scaling)
server bool swwm_blood = false; // custom blood/gibbing
server int swwm_maxblood = 400; // max blood effects at any time
server int swwm_maxgibs = 100; // max gibs at any time
server int swwm_maxcasings = 200; // max casings and spent mags at any time
server int swwm_maxdebris = 500; // max chunks of debris at any time
user bool swwm_fuzz = true; // allows toggling the fuzz shader on the demolitionist menus, useful if you're streaming/recording since it destroys the encoding quality
user bool swwm_cbtpause = true; // wallbuster menu pauses the game
user noarchive int swwm_cbtmeme = 0; // easter egg, hidden cvar
user noarchive bool swwm_cbttime = false; // debug: times how long a reload takes
user noarchive int swwm_cbtlast = 0; // last selected ammo for the wallbuster
server bool swwm_cbtall = false; // wallbuster breaks any wall, not just movable ones
server bool swwm_doomfall = false; // monsters take fall damage outside of hexen
server bool swwm_capmcrange = false; // cap ynykron chain reaction range
server bool swwm_resetscore = true; // reset score back to 0 on pistol starts
server bool swwm_notrack = false; // disables all combat tracking (useful to speed up slaughterwads)
server bool swwm_ynykronalert = false; // caps ynykron alert (so it doesn't wake everyone up)
user bool swwm_menupause = true; // pause the game when demolitionist menu is open
server noarchive bool swwm_debugblast = false; // debug visual aid for DoExplosion
user bool swwm_funtags = false; // replace vanilla monster names with silly ones
server bool swwm_omnibust = false; // TODO add wallbusting effect to all weapons
server bool swwm_superfuel = false; // TODO enable unlimited fuel
server bool swwm_partytime = false; // TODO killed enemies burst into confetti
server bool swwm_simplefog = false; // simplified teleport fogs (useful to speed up slaughterwads)
user bool swwm_bigtags = false; // use a bigger font for targeter tags
user bool swwm_intermusic = false; // use original intermission music
server int swwm_enemydrops = 0; // allow enemies to drop ammo and weapons (-1 - no ammo or weapons, 0 - ammo only, 1 - both)
server bool swwm_shotgib = true; // buckshot can gib (some people don't like this for some reason, so it's an option now)
user bool swwm_collectanim = true; // player special gestures for collectables (first person only)
server int swwm_shadows = 1; // enables blob shadows under certain things (0 - no shadows, 1 - mod objects, 2 - everything)
user bool swwm_precisecrosshair = true; // use mod's own, more precise crosshair
user bool swwm_ldspoil = false; // [LD] always shows "Legendary" prefix on Legendary monsters, otherwise only when they've transformed
server noarchive bool swwm_iseriouslywanttoplaythiswithbd = false; //self-explanatory