├── .bgforge.yml ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── build.yml │ └── poify.yml ├── .gitignore ├── .shellcheckrc ├── .vscode └── settings.json ├── README.md ├── data └── text │ ├── english │ └── game │ │ ├── g_healing_revision.msg │ │ ├── g_level5.msg │ │ └── g_map_hotkey.msg │ ├── french │ └── game │ │ ├── g_healing_revision.msg │ │ ├── g_level5.msg │ │ └── g_map_hotkey.msg │ ├── german │ └── game │ │ ├── g_healing_revision.msg │ │ ├── g_level5.msg │ │ └── g_map_hotkey.msg │ ├── italian │ └── game │ │ ├── g_healing_revision.msg │ │ ├── g_level5.msg │ │ └── g_map_hotkey.msg │ ├── korean │ └── game │ │ ├── g_healing_revision.msg │ │ ├── g_level5.msg │ │ └── g_map_hotkey.msg │ ├── po │ ├── de.po │ ├── english.pot │ ├── fr.po │ ├── it.po │ ├── korean.po │ ├── pl.po │ ├── pt_BR.po │ ├── russian.po │ ├── spanish.po │ ├── sv.po │ └── uk.po │ ├── polish │ └── game │ │ ├── g_healing_revision.msg │ │ ├── g_level5.msg │ │ └── g_map_hotkey.msg │ ├── portuguese │ └── game │ │ ├── g_healing_revision.msg │ │ ├── g_level5.msg │ │ └── g_map_hotkey.msg │ ├── russian │ └── game │ │ ├── g_healing_revision.msg │ │ ├── g_level5.msg │ │ └── g_map_hotkey.msg │ ├── spanish │ └── game │ │ ├── g_healing_revision.msg │ │ ├── g_level5.msg │ │ └── g_map_hotkey.msg │ ├── swedish │ └── game │ │ ├── g_healing_revision.msg │ │ ├── g_level5.msg │ │ └── g_map_hotkey.msg │ └── ukrainian │ └── game │ ├── g_healing_revision.msg │ ├── g_level5.msg │ └── g_map_hotkey.msg ├── docs ├── changelog.md └── speedup.md ├── extra ├── build.sh ├── buildall.sh ├── env.sh ├── package.sh └── prepare.sh ├── mods └── fo2tweaks.ini ├── pics ├── ammobox.jpg ├── highlighting.jpg ├── hp_over_head.jpg └── installed.png ├── source ├── gl_g_ammobox.ssl ├── gl_g_ap_rollover.ssl ├── gl_g_auto_cursor.ssl ├── gl_g_auto_reload.ssl ├── gl_g_autodoors.ssl ├── gl_g_carry_weight.ssl ├── gl_g_damage_mod.ssl ├── gl_g_gigolo.ssl ├── gl_g_grenades_anywhere.ssl ├── gl_g_grenades_tohit.ssl ├── gl_g_healing_revision.ssl ├── gl_g_highlighting.ssl ├── gl_g_hp_over_head.ssl ├── gl_g_keymap.ssl ├── gl_g_knockback.ssl ├── gl_g_level5.ssl ├── gl_g_light_level.ssl ├── gl_g_map_hotkey.ssl ├── gl_g_modoc_brahmin.ssl ├── gl_g_molotov.ssl ├── gl_g_no_drop_items_on_death.ssl ├── gl_g_no_scope_penalty.ssl ├── gl_g_party_level_match.ssl ├── gl_g_run_speed.ssl ├── gl_g_speedup.ssl ├── gl_g_trunk_space.ssl ├── gl_g_unlimited_party.ssl └── headers │ └── fo2tweaks │ ├── fo2tweaks.h │ ├── keys.h │ ├── mouse.h │ └── tile.h └── source_test ├── gl_g_broken_radon.ssl ├── gl_g_custom_ai.ssl ├── gl_g_debug.ssl ├── gl_g_item_charges.ssl ├── gl_g_party_skill_items.ssl ├── gl_g_party_skills.ssl ├── gl_g_reload_sound.ssl ├── gl_g_scenepid.ssl ├── gl_g_sneak_spotted.ssl └── gl_g_testdesc.ssl /.bgforge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/.bgforge.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: BGforge 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/poify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/.github/workflows/poify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/.gitignore -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/README.md -------------------------------------------------------------------------------- /data/text/english/game/g_healing_revision.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/english/game/g_healing_revision.msg -------------------------------------------------------------------------------- /data/text/english/game/g_level5.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/english/game/g_level5.msg -------------------------------------------------------------------------------- /data/text/english/game/g_map_hotkey.msg: -------------------------------------------------------------------------------- 1 | {1}{}{Nah... I think I'm gonna take the ladder.} 2 | -------------------------------------------------------------------------------- /data/text/french/game/g_healing_revision.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/french/game/g_healing_revision.msg -------------------------------------------------------------------------------- /data/text/french/game/g_level5.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/french/game/g_level5.msg -------------------------------------------------------------------------------- /data/text/french/game/g_map_hotkey.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/french/game/g_map_hotkey.msg -------------------------------------------------------------------------------- /data/text/german/game/g_healing_revision.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/german/game/g_healing_revision.msg -------------------------------------------------------------------------------- /data/text/german/game/g_level5.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/german/game/g_level5.msg -------------------------------------------------------------------------------- /data/text/german/game/g_map_hotkey.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/german/game/g_map_hotkey.msg -------------------------------------------------------------------------------- /data/text/italian/game/g_healing_revision.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/italian/game/g_healing_revision.msg -------------------------------------------------------------------------------- /data/text/italian/game/g_level5.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/italian/game/g_level5.msg -------------------------------------------------------------------------------- /data/text/italian/game/g_map_hotkey.msg: -------------------------------------------------------------------------------- 1 | {1}{}{Naa... Penso che prendero' la scala.} 2 | -------------------------------------------------------------------------------- /data/text/korean/game/g_healing_revision.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/korean/game/g_healing_revision.msg -------------------------------------------------------------------------------- /data/text/korean/game/g_level5.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/korean/game/g_level5.msg -------------------------------------------------------------------------------- /data/text/korean/game/g_map_hotkey.msg: -------------------------------------------------------------------------------- 1 | {1}{}{Nah... I think I'm gonna take the ladder.} 2 | -------------------------------------------------------------------------------- /data/text/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/po/de.po -------------------------------------------------------------------------------- /data/text/po/english.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/po/english.pot -------------------------------------------------------------------------------- /data/text/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/po/fr.po -------------------------------------------------------------------------------- /data/text/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/po/it.po -------------------------------------------------------------------------------- /data/text/po/korean.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/po/korean.po -------------------------------------------------------------------------------- /data/text/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/po/pl.po -------------------------------------------------------------------------------- /data/text/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/po/pt_BR.po -------------------------------------------------------------------------------- /data/text/po/russian.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/po/russian.po -------------------------------------------------------------------------------- /data/text/po/spanish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/po/spanish.po -------------------------------------------------------------------------------- /data/text/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/po/sv.po -------------------------------------------------------------------------------- /data/text/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/po/uk.po -------------------------------------------------------------------------------- /data/text/polish/game/g_healing_revision.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/polish/game/g_healing_revision.msg -------------------------------------------------------------------------------- /data/text/polish/game/g_level5.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/polish/game/g_level5.msg -------------------------------------------------------------------------------- /data/text/polish/game/g_map_hotkey.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/polish/game/g_map_hotkey.msg -------------------------------------------------------------------------------- /data/text/portuguese/game/g_healing_revision.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/portuguese/game/g_healing_revision.msg -------------------------------------------------------------------------------- /data/text/portuguese/game/g_level5.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/portuguese/game/g_level5.msg -------------------------------------------------------------------------------- /data/text/portuguese/game/g_map_hotkey.msg: -------------------------------------------------------------------------------- 1 | {1}{}{Nah... Eu acho que eu vou pela escada.} 2 | -------------------------------------------------------------------------------- /data/text/russian/game/g_healing_revision.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/russian/game/g_healing_revision.msg -------------------------------------------------------------------------------- /data/text/russian/game/g_level5.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/russian/game/g_level5.msg -------------------------------------------------------------------------------- /data/text/russian/game/g_map_hotkey.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/russian/game/g_map_hotkey.msg -------------------------------------------------------------------------------- /data/text/spanish/game/g_healing_revision.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/spanish/game/g_healing_revision.msg -------------------------------------------------------------------------------- /data/text/spanish/game/g_level5.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/spanish/game/g_level5.msg -------------------------------------------------------------------------------- /data/text/spanish/game/g_map_hotkey.msg: -------------------------------------------------------------------------------- 1 | {1}{}{Nah... Creo que voy a usar la escalera.} 2 | -------------------------------------------------------------------------------- /data/text/swedish/game/g_healing_revision.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/swedish/game/g_healing_revision.msg -------------------------------------------------------------------------------- /data/text/swedish/game/g_level5.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/swedish/game/g_level5.msg -------------------------------------------------------------------------------- /data/text/swedish/game/g_map_hotkey.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/swedish/game/g_map_hotkey.msg -------------------------------------------------------------------------------- /data/text/ukrainian/game/g_healing_revision.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/ukrainian/game/g_healing_revision.msg -------------------------------------------------------------------------------- /data/text/ukrainian/game/g_level5.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/ukrainian/game/g_level5.msg -------------------------------------------------------------------------------- /data/text/ukrainian/game/g_map_hotkey.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/data/text/ukrainian/game/g_map_hotkey.msg -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/speedup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/docs/speedup.md -------------------------------------------------------------------------------- /extra/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/extra/build.sh -------------------------------------------------------------------------------- /extra/buildall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/extra/buildall.sh -------------------------------------------------------------------------------- /extra/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/extra/env.sh -------------------------------------------------------------------------------- /extra/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/extra/package.sh -------------------------------------------------------------------------------- /extra/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/extra/prepare.sh -------------------------------------------------------------------------------- /mods/fo2tweaks.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/mods/fo2tweaks.ini -------------------------------------------------------------------------------- /pics/ammobox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/pics/ammobox.jpg -------------------------------------------------------------------------------- /pics/highlighting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/pics/highlighting.jpg -------------------------------------------------------------------------------- /pics/hp_over_head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/pics/hp_over_head.jpg -------------------------------------------------------------------------------- /pics/installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/pics/installed.png -------------------------------------------------------------------------------- /source/gl_g_ammobox.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_ammobox.ssl -------------------------------------------------------------------------------- /source/gl_g_ap_rollover.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_ap_rollover.ssl -------------------------------------------------------------------------------- /source/gl_g_auto_cursor.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_auto_cursor.ssl -------------------------------------------------------------------------------- /source/gl_g_auto_reload.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_auto_reload.ssl -------------------------------------------------------------------------------- /source/gl_g_autodoors.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_autodoors.ssl -------------------------------------------------------------------------------- /source/gl_g_carry_weight.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_carry_weight.ssl -------------------------------------------------------------------------------- /source/gl_g_damage_mod.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_damage_mod.ssl -------------------------------------------------------------------------------- /source/gl_g_gigolo.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_gigolo.ssl -------------------------------------------------------------------------------- /source/gl_g_grenades_anywhere.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_grenades_anywhere.ssl -------------------------------------------------------------------------------- /source/gl_g_grenades_tohit.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_grenades_tohit.ssl -------------------------------------------------------------------------------- /source/gl_g_healing_revision.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_healing_revision.ssl -------------------------------------------------------------------------------- /source/gl_g_highlighting.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_highlighting.ssl -------------------------------------------------------------------------------- /source/gl_g_hp_over_head.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_hp_over_head.ssl -------------------------------------------------------------------------------- /source/gl_g_keymap.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_keymap.ssl -------------------------------------------------------------------------------- /source/gl_g_knockback.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_knockback.ssl -------------------------------------------------------------------------------- /source/gl_g_level5.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_level5.ssl -------------------------------------------------------------------------------- /source/gl_g_light_level.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_light_level.ssl -------------------------------------------------------------------------------- /source/gl_g_map_hotkey.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_map_hotkey.ssl -------------------------------------------------------------------------------- /source/gl_g_modoc_brahmin.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_modoc_brahmin.ssl -------------------------------------------------------------------------------- /source/gl_g_molotov.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_molotov.ssl -------------------------------------------------------------------------------- /source/gl_g_no_drop_items_on_death.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_no_drop_items_on_death.ssl -------------------------------------------------------------------------------- /source/gl_g_no_scope_penalty.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_no_scope_penalty.ssl -------------------------------------------------------------------------------- /source/gl_g_party_level_match.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_party_level_match.ssl -------------------------------------------------------------------------------- /source/gl_g_run_speed.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_run_speed.ssl -------------------------------------------------------------------------------- /source/gl_g_speedup.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_speedup.ssl -------------------------------------------------------------------------------- /source/gl_g_trunk_space.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_trunk_space.ssl -------------------------------------------------------------------------------- /source/gl_g_unlimited_party.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/gl_g_unlimited_party.ssl -------------------------------------------------------------------------------- /source/headers/fo2tweaks/fo2tweaks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/headers/fo2tweaks/fo2tweaks.h -------------------------------------------------------------------------------- /source/headers/fo2tweaks/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/headers/fo2tweaks/keys.h -------------------------------------------------------------------------------- /source/headers/fo2tweaks/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/headers/fo2tweaks/mouse.h -------------------------------------------------------------------------------- /source/headers/fo2tweaks/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source/headers/fo2tweaks/tile.h -------------------------------------------------------------------------------- /source_test/gl_g_broken_radon.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source_test/gl_g_broken_radon.ssl -------------------------------------------------------------------------------- /source_test/gl_g_custom_ai.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source_test/gl_g_custom_ai.ssl -------------------------------------------------------------------------------- /source_test/gl_g_debug.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source_test/gl_g_debug.ssl -------------------------------------------------------------------------------- /source_test/gl_g_item_charges.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source_test/gl_g_item_charges.ssl -------------------------------------------------------------------------------- /source_test/gl_g_party_skill_items.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source_test/gl_g_party_skill_items.ssl -------------------------------------------------------------------------------- /source_test/gl_g_party_skills.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source_test/gl_g_party_skills.ssl -------------------------------------------------------------------------------- /source_test/gl_g_reload_sound.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source_test/gl_g_reload_sound.ssl -------------------------------------------------------------------------------- /source_test/gl_g_scenepid.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source_test/gl_g_scenepid.ssl -------------------------------------------------------------------------------- /source_test/gl_g_sneak_spotted.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source_test/gl_g_sneak_spotted.ssl -------------------------------------------------------------------------------- /source_test/gl_g_testdesc.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/FO2tweaks/HEAD/source_test/gl_g_testdesc.ssl --------------------------------------------------------------------------------