Memes in the Garry's Mod chat.
This repository is a Garry's Mod addon that adds chat sounds
in your game. It suggests a list of sounds you can play when typing. There are thousands of sounds available.
It also comes with a twist: you can modify each sounds with modifiers
.
You have multiple options here:
1) Check the various repositories used to build the sound list
Typically you can either add sounds in this repo or in this one. Each of them are maintained by different people but the rules for adding a sound are the same.
Do check their readme.md!
These need to be added to repo_config.json they are not included by default!
If you go in garrysmod/data/chatsounds
you should find a file called repo_config.json
. Open it and add the repositories you want to the config following the existing format. In most cases you should keep UseMsgPack
to false
, unless you do actually use .msgpack files. For now the only repos/sources supported are GitHub repositories.
Disclaimer: By default the config only loads the valve sound repos.
Example for this repo:
{
"Repo": " PAC3-Server/chatsounds",
"Branch": "master",
"BasePath": "sounds/chatsounds",
"UseMsgPack": false,
}
Modifiers are a big part of chatsounds, they allow you to transform sounds and make them into something else. Some people even made songs with them!.
standing here i realize
With a pitch modifier:
standing here:pitch(0.5) i realize
This will in turn pitch down
the first sound. You can also group sounds together:
(standing here i realize):pitch(0.8)
Legacy modifiers:
standing here%50 i realize
Wait a minute what is this?
Because chatsounds has a lot of legacy some syntax was also kept in as back-compatbility so that people's favorite ways of messing with chatsounds don't just disappear!
The above is a legacy pitch modifier, instead of working from -5 to 5 like the current pitch modifier does it works from 1 to 255
Right now there has never been a documentation made for the chatsounds syntax, or what modifiers exist, I do plan on making one though!
Absolutely nothing, this is only for fun and it is very possible that you may not see any added value to it. If you wish to see it in action you can always join these servers:
Any contribution is welcome so long as it TESTED
before. Please do respect the existing coding conventions (naming, etc...) and make sure your code is optimized, performances matter especially in this project.