Simple Taunt Menu is an easy way to add and organize taunts for ANY gamemode. It also ships with the default taunts that are normally included with the Prop Hunt gamemode, but no need to install.
Just press and hold your +menu_context
button (which is the "C" key by default) to bring up the taunt menu and click a taunt to begin taunting.
Note: Players must be alive and not a spectator in order to taunt.
Inspired by Icedream's Minimal PropHunt Taunt Menu. If you have a Prop Hunt server, definitely consider using his addon.
This addon runs both server-side and client-side. Follow both sections below so that both server and client will have the necessary files.
- Subscribe to this addon with Garry's Mod open.
- Locate the Simple Taunt Menu gma file in your steam install directory, under
steamapps\common\GarrysMod\garrysmod\addons
. - Extract the gma file using something like Gmad - Easy Addon Extractor by Freenex.
- Move the extracted folder into your servers
garrysmod\addons
folder.
- Locate your servers
garrysmod\lua\autorun\server\workshop.lua
file.- If it doesn't exist, create one.
- Add the following to the bottom of the file:
resource.AddWorkshop("1620980553") -- Simple Taunt Menu
By default, Simple Taunt Menu comes with the taunts that are normally included with Prop Hunt. If you'd like to add additional taunt packs, follow the sections below.
- Locate the taunt pack from the Steam Workshop that you wish to add.
- Determine the taunt packs ID, by looking at the page URL.
- For example, if the taunt pack you want to download is at
https://steamcommunity.com/sharedfiles/filedetails/?id=426548393
then the ID would be 426548393.
- For example, if the taunt pack you want to download is at
- Locate your servers
garrysmod\lua\autorun\server\workshop.lua
file. - Add the following to the bottom of the file, replacing
{TAUNT_PACK_ID}
with the ID you found in the above step:resource.AddWorkshop("{TAUNT_PACK_ID}")
In order to add sounds to Simple Taunt Menu, we'll need to determine where sounds are located in the taunt pack. The best way to do this is to download the taunt pack, and extract it's contents.
- Locate the taunt pack from the Steam Workshop that you wish to add.
- Subscribe to the taunt pack with Garry's Mod open.
- Locate the taunt pack gma file in your steam install directory, under
steamapps\common\GarrysMod\garrysmod\addons
. - Extract the gma file using something like Gmad - Easy Addon Extractor by Freenex.
- Look in the extracted folder, in the
sound
directory, finding the paths to the sound files.
- After determining the sound paths for each sound file you'd like to add, open Simple Taunt Menu's
sv_stm_taunts.lua
on the server undergarrysmod\addons\{Simple Taunt Menu Folder}\lua\autorun\server
. This file stores a table of categories, sound paths, and taunt names that Simple Taunt Menu uses. - Follow the existing table structure to add the taunts from the taunt pack.
- Sound paths should be relative to the
sound
folder of the taunt pack. - Categories can have subcategories, and those subcategories can have more subcategories, and so on.
- See the default taunt table or a more complicated example using DN PropHunt Taunt Pack.
- Sound paths should be relative to the