mirror of
https://github.com/reaaLx/nx1-gsc-dump.git
synced 2025-04-24 01:55:46 +00:00
33 lines
1.0 KiB
INI
33 lines
1.0 KiB
INI
// TRAVIS CHEN PERSONAL
|
|
|
|
// God mode
|
|
god
|
|
|
|
// Bind your own dev keyboard controls
|
|
bind 1 "toggle g_ai 0 1" // Press 1 to toggle g_ai DVAR on and off, turns on and off AI
|
|
bind W "+forward" // WASD movement controls with connected keyboard
|
|
bind A "+moveleft"
|
|
bind S "+back"
|
|
bind D "+moveright"
|
|
bind SPACE "+moveup" // Jump to space bar
|
|
|
|
// Press 2 to turn of all initial dvar settings, 3 for back on
|
|
bind 2 "set ai_shownodes 0; set ai_showpaths 0; set g_entinfo 0; set debug_colornodes off;"
|
|
bind 3 "set ai_shownodes 1; set ai_showpaths 1; set g_entinfo 5; set debug_colornodes on;"
|
|
|
|
// Toggle on, off and selected trigger volume debugging
|
|
bind 4 "toggle trigger_draw none all selected"
|
|
|
|
// Initial DVAR
|
|
set ai_shownodes 1 // Default show nodes to on
|
|
set ai_showpaths 1 // Default show AI paths choice on
|
|
set g_entinfo 5 // Show where AI are trying to get
|
|
set debug_colornodes on
|
|
set debug_colorfriendlies on
|
|
set ai_debugOverlay 1
|
|
|
|
// Reduce replay save to 30 seconds (fixes frame rate issues)
|
|
set replay_autosave 30
|
|
|
|
|