This is a customization of Prop Hunt: Enhanced v15 Rev. G made for BattleFriends.
You shouldn't need to do anything. Just join a server running this gamemode, and it should automatically send you everything you need.
Install BattleFriends Prop Hunt via Steam Workshop.
You should now be able to select the gamemode in the gamemode selector on the main menu.
Haven't tried that yet. Good luck and let me know how it goes.
cd
into\steamapps\common\GarrysMod\garrysmod\addons\
.- Delete
battlefriends_prop_hunt.gma
if it exists to prevent any potential conflicts with the folder you're about to create. - Clone this repo. The checkout should live in a
battlefriends_prop_hunt
folder in theaddons
folder. - Develop away.
GMod uses its own flavor of Lua, so don't be surprised if your favorite text editor barfs when trying to use normal Lua syntax highlighting. Notepad++ with the Gmod Lua Highlighter addon installed works well.
- Make sure you don't break packaging when adding new files
- GMad.exe is extremely picky about what files can be included in the .gma
- Filenames must be all lowercase
- Files must match an entry in the whitelist
- Files not meant to go in the .gma must be have appropriate entries created in the
ignore
section ofaddon.json
. - Run
package.sh --test
at any time to ensure packaging still works.
- GMad.exe is extremely picky about what files can be included in the .gma
- Sound file formats
- Taunts should be .wav files since .mp3 files seem to not have their durations calculated correctly.
- For other sound files, might as well do .mp3 to keep file size down.