Doom Autoexec.cfg


bomberman

Member
Joined
Jan 2, 2008
Messages
416
Location
MO - USA
Following along the lines of my quake autoexec I figured I would make it easy for some folks to play the Zdoom variants and addons with a little help. There's nothing like jumping around in Doom :)

put below content in autoexec.cfg file in prboom/zdoom directory (only tested with zdoom) (may have to reference properly in .ini file)

-----------

// 2xzdoom autoexec.cfg - bman 2010

// a little darker and some help with aiming
gamma 0.7
crosshair 7
sv_smartaim 2

// key bindings
alias cheat_t cheaton
alias cheaton "echo Cheats Enabled: L-GOD X-WEAPONS Y-FLY;bind l xx;bind x xxxx;bind y xxx; alias cheat_t cheatoff"
alias cheatoff "echo Cheats Disabled: Resume normal play;bind l +strafe;bind x +use;bind y +jump;alias cheat_t cheaton"
alias zoomin "fov 20;mouse_sensitivity .25;rebind zoomout"
alias zoomout "fov 90;mouse_sensitivity 1;rebind zoomin"
alias conshelp "echo Press B-Select for help;toggleconsole"

// Vol -
bind - invprev
doublebind - weapprev
// Vol +
bind = invnext
doublebind = weapnext
// L
bind l +strafe
doublebind l turn180
// R
bind r +speed
doublebind r "cheat_t"
// KP
bind uparrow +forward
doublebind uparrow +moveup
bind downarrow +back
doublebind downarrow +movedown
bind leftarrow +left
doublebind leftarrow "showpop 1"
bind rightarrow +right
doublebind rightarrow "showpop 2"
// A
bind a +crouch
doublebind a togglemap
// B
bind b +attack
// X
bind x +use
doublebind x zoomin
// Y
bind y +jump
doublebind y "conshelp"

// strife needs this
sv_cheats true

// some automap options
am_cheat 2
am_overlay 1
am_map_secrets 2
am_rotate true
am_showmonsters true
am_showsecrets true

//some message options
con_centernotify true
con_scaletext 0
con_midtime 3

//some font options
msg0color 6
msg1color 1
msg2color 2
msg3color 3
msg4color 4
msgmidcolor 6
msgmidcolor2 9

// save your SD
disableautosave 1

// cheats
alias xx "god"
alias xxx "fly"
alias xxxx "give all"
alias aa "anubis"
alias aaa "notarget"
alias aaaa "noclip"
alias yy "kill monsters"
alias yyy "morphme"
alias yyyy "freeze"

// help text
alias B " echo Changed keys ------- Console cheats ; ?1 "
alias ?1 " echo ..L.: Strafe .......xx..: GodMode ; ?2 "
alias ?2 " echo ..R.: Run ..........xxx.: FlyMode ; ?3 "
alias ?3 " echo ..A.: Crouch .......xxxx: Weapons ; ?4 "
alias ?4 " echo ..Y.: Jump .........aa..: Fear.Me ; ?5 "
alias ?5 " echo ..B.: Fire .........aaa.: ImGhost ; ?6 "
alias ?6 " echo ..X.: Use ..........aaaa: NoWalls ; ?7 "
alias ?7 " echo VOL-: Inv Left .....yy..: KillAll ; ?8 "
alias ?8 " echo VOL+: Inv Right ....yyy.: MorphMe ; ?9 "
alias ?9 " echo SEL.: Next Weapon ..yyyy: Freeze. ; ?10 "
alias ?10 " echo STA.: Escape/Menu ......: ....... ; ?11 "
alias ?11 " echo Type bb for double click option"

alias BB " echo Changed keys ------- Double Click ; ?12 "
alias ?12 " echo ..L.: Turn around ............... ; ?13 "
alias ?13 " echo ..R.: Quick cheating On/Off ..... ; ?14 "
alias ?14 " echo ..A.: Toggle Map zoom w/VOL+/-... ; ?15 "
alias ?15 " echo ..Y.: Console ................... ; ?16 "
alias ?16 " echo ..B.: N/A ....................... ; ?17 "
alias ?17 " echo ..X.: Zoom in/out ............... ; ?18 "
alias ?18 " echo VOL-: Weapon Previous ........... ; ?19 "
alias ?19 " echo VOL+: Weapon Next ............... ; ?20 "
alias ?20 " echo SEL.: N/A ....................... ; ?21 "
alias ?21 " echo STA.: N/A ....................... ; ?22 "
alias ?22 " echo Enjoy "
 
Back
Top