├── .bgforge.yml ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── poify.yml ├── .gitignore ├── README.md ├── data └── text │ ├── english │ └── game │ │ └── p_party_orders.msg │ ├── french │ └── game │ │ └── p_party_orders.msg │ ├── german │ └── game │ │ └── p_party_orders.msg │ ├── italian │ └── game │ │ └── p_party_orders.msg │ ├── po │ ├── english.pot │ ├── fr.po │ ├── german.po │ ├── it.po │ ├── polish.po │ ├── pt_BR.po │ ├── russian.po │ ├── spanish.po │ └── sv.po │ ├── polish │ └── game │ │ └── p_party_orders.msg │ ├── portuguese │ └── game │ │ └── p_party_orders.msg │ ├── russian │ └── game │ │ └── p_party_orders.msg │ ├── spanish │ └── game │ │ └── p_party_orders.msg │ └── swedish │ └── game │ └── p_party_orders.msg ├── docs ├── changelog.md ├── modder_notes.md └── original_readme.txt ├── extra ├── bin │ └── dat2.exe ├── build.list ├── buildall.sh ├── env.sh ├── package.sh └── prepare.sh ├── mods └── party_orders.ini └── source ├── gl_p_party_orders.ssl └── headers ├── fo2tweaks ├── party_orders ├── party_orders.h └── zcustom.h ├── rp └── sfall /.bgforge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/.bgforge.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/poify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/.github/workflows/poify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/README.md -------------------------------------------------------------------------------- /data/text/english/game/p_party_orders.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/english/game/p_party_orders.msg -------------------------------------------------------------------------------- /data/text/french/game/p_party_orders.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/french/game/p_party_orders.msg -------------------------------------------------------------------------------- /data/text/german/game/p_party_orders.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/german/game/p_party_orders.msg -------------------------------------------------------------------------------- /data/text/italian/game/p_party_orders.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/italian/game/p_party_orders.msg -------------------------------------------------------------------------------- /data/text/po/english.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/po/english.pot -------------------------------------------------------------------------------- /data/text/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/po/fr.po -------------------------------------------------------------------------------- /data/text/po/german.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/po/german.po -------------------------------------------------------------------------------- /data/text/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/po/it.po -------------------------------------------------------------------------------- /data/text/po/polish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/po/polish.po -------------------------------------------------------------------------------- /data/text/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/po/pt_BR.po -------------------------------------------------------------------------------- /data/text/po/russian.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/po/russian.po -------------------------------------------------------------------------------- /data/text/po/spanish.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/po/spanish.po -------------------------------------------------------------------------------- /data/text/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/po/sv.po -------------------------------------------------------------------------------- /data/text/polish/game/p_party_orders.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/polish/game/p_party_orders.msg -------------------------------------------------------------------------------- /data/text/portuguese/game/p_party_orders.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/portuguese/game/p_party_orders.msg -------------------------------------------------------------------------------- /data/text/russian/game/p_party_orders.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/russian/game/p_party_orders.msg -------------------------------------------------------------------------------- /data/text/spanish/game/p_party_orders.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/spanish/game/p_party_orders.msg -------------------------------------------------------------------------------- /data/text/swedish/game/p_party_orders.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/data/text/swedish/game/p_party_orders.msg -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/modder_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/docs/modder_notes.md -------------------------------------------------------------------------------- /docs/original_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/docs/original_readme.txt -------------------------------------------------------------------------------- /extra/bin/dat2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/extra/bin/dat2.exe -------------------------------------------------------------------------------- /extra/build.list: -------------------------------------------------------------------------------- 1 | gl_p_party_orders.ssl 2 | -------------------------------------------------------------------------------- /extra/buildall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/extra/buildall.sh -------------------------------------------------------------------------------- /extra/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/extra/env.sh -------------------------------------------------------------------------------- /extra/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/extra/package.sh -------------------------------------------------------------------------------- /extra/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/extra/prepare.sh -------------------------------------------------------------------------------- /mods/party_orders.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/mods/party_orders.ini -------------------------------------------------------------------------------- /source/gl_p_party_orders.ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/source/gl_p_party_orders.ssl -------------------------------------------------------------------------------- /source/headers/fo2tweaks: -------------------------------------------------------------------------------- 1 | ../../external/fo2tweaks/source/headers/fo2tweaks -------------------------------------------------------------------------------- /source/headers/party_orders/party_orders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/source/headers/party_orders/party_orders.h -------------------------------------------------------------------------------- /source/headers/party_orders/zcustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGforgeNet/Fallout2_Party_Orders/HEAD/source/headers/party_orders/zcustom.h -------------------------------------------------------------------------------- /source/headers/rp: -------------------------------------------------------------------------------- 1 | ../../external/rp/scripts_src/headers -------------------------------------------------------------------------------- /source/headers/sfall: -------------------------------------------------------------------------------- 1 | ../../external/sfall/artifacts/scripting/headers --------------------------------------------------------------------------------