Skip to content
Open
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
d40d11b
Add writeweapvars function
MoonPadUSer Jun 27, 2020
b23c0fa
Add weapon_vars menu
MoonPadUSer Jun 27, 2020
12c71f5
Set default keybind to F7
MoonPadUSer Jun 27, 2020
a791124
Add copyright information
MoonPadUSer Jun 27, 2020
377d554
Remove varbit2
MoonPadUSer Jun 28, 2020
178fdc4
Remove varfld
MoonPadUSer Jun 28, 2020
662f6b5
Remove varfld2
MoonPadUSer Jun 28, 2020
6839d1e
Rework variable lists
MoonPadUSer Jun 28, 2020
6fca485
Remove ability to hide variable categories
MoonPadUSer Jun 28, 2020
69f428f
Set default value of show_primary to 1
MoonPadUSer Jun 28, 2020
37d1c1c
Remove last reference of hideweapvarmenucategories
MoonPadUSer Jun 28, 2020
013018e
Fixup formatting of weapon_variables_two
MoonPadUSer Jun 28, 2020
b007670
Add quickswitch bar
MoonPadUSer Jun 28, 2020
2e23345
Fix Import/Export menu alignment
MoonPadUSer Jun 28, 2020
07ba819
Fix search and remove unnecessary aliases
MoonPadUSer Jun 28, 2020
d5fd404
Add ability to search for variable display names
MoonPadUSer Jun 28, 2020
bcd3f65
Make Import/Export of configs safer
MoonPadUSer Jun 28, 2020
523dd85
Fix bug where game would crash when weapon name was changed
MoonPadUSer Jul 4, 2020
0b79a6c
add missing changes
MoonPadUSer Jul 4, 2020
46678d6
Add description for writeweapvars in usage.cfg
MoonPadUSer Jul 5, 2020
5b23b74
Move bind F7 to setup.cfg
MoonPadUSer Jul 5, 2020
11e0f1f
Add weapon_var menu to advanced options
MoonPadUSer Jul 5, 2020
efc7e13
Add description for ui_border_box
MoonPadUSer Jul 5, 2020
d84b007
Add description to write_weapon_vars
MoonPadUSer Jul 5, 2020
3a8e961
Fix write_weapon_vars
MoonPadUSer Jul 5, 2020
03cc0d1
Merge write_weapon_vars into writegamevars
MoonPadUSer Jul 5, 2020
cff30c2
Bind F7 to showgui advanced_options
MoonPadUSer Jul 5, 2020
a31fb84
Rewrite writegamevars
MoonPadUSer Jul 5, 2020
fe76bb0
Rename mutators to muts
MoonPadUSer Jul 16, 2020
65e403b
Add ammomax
MoonPadUSer Jul 16, 2020
ab39ef2
Add ammomin
MoonPadUSer Jul 16, 2020
5a4c693
Rename ammomin to ammosub
MoonPadUSer Jul 16, 2020
62ea279
Fix warnings
MoonPadUSer Jul 17, 2020
4bfe1cc
Remove ammosub froom weapon_variables_one
MoonPadUSer Jul 17, 2020
c9db608
Fix sort
MoonPadUSer Jul 17, 2020
24e3907
Fix 'all' option
MoonPadUSer Jul 17, 2020
0638e80
add behalebabo's patch
MoonPadUSer Jul 17, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions config/menus/glue.cfg
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,20 @@ ui_right = [ ui_list [ ui_spring 1; arg1 ] ]
ui_center = [ ui_list [ ui_spring 1; arg1; ui_spring 1 ] ]
ui_center_z = [ ui_list [ ui_spring 1; ui_list [ arg1 ]; ui_spring 1 ] ]


ui_border_box = [
ui_list [
ui_background $ui_color_textfield_background $ui_blend_textfield_background $ui_color_textfield_border $ui_blend_textfield_border 1
ui_strut $arg1
ui_list [
ui_strut $arg3
arg5
ui_strut $arg4
]
ui_strut $arg2
]
]

// spacers
ui_small_spacer = [ ui_strut 0.2 ]
ui_big_spacer = [ ui_strut 0.8 ]
Expand Down
1 change: 1 addition & 0 deletions config/menus/package.cfg
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ exec "config/menus/options.cfg"
//exec "config/menus/vars_alt.cfg"
//create_header_lists
exec "config/menus/vars.cfg"
exec "config/menus/weapon_vars.cfg"
exec "config/menus/editing.cfg"
exec "config/menus/help.cfg"
exec "config/menus/console.cfg"
Expand Down
Loading