mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-01 05:02:33 +00:00
* Adds runechat to the abductor mindlink * Update code/game/gamemodes/miniantags/abduction/abduction_gear.dm
18 lines
1.0 KiB
Plaintext
18 lines
1.0 KiB
Plaintext
//Language flags.
|
|
#define WHITELISTED 1 // Language is available if the speaker is whitelisted.
|
|
#define RESTRICTED 2 // Language can only be accquired by spawning or an admin.
|
|
#define HIVEMIND 16 // Broadcast to all mobs with this language.
|
|
#define NONGLOBAL 32 // Do not add to general languages list
|
|
#define INNATE 64 // All mobs can be assumed to speak and understand this language (audible emotes)
|
|
#define NO_TALK_MSG 128 // Do not show the "\The [speaker] talks into \the [radio]" message
|
|
#define NO_STUTTER 256 // No stuttering, slurring, or other speech problems
|
|
#define NOBABEL 512 // Not granted by book of babel. Typically antag languages.
|
|
#define NOLIBRARIAN 1024 // Flag for banning the Librarian from certain languages. (actual 1984)
|
|
#define HIVEMIND_RUNECHAT (1<<11) // Flag for letting hivemind languages have a runechat appear over the head of the recipient
|
|
|
|
//Auto-accent level defines.
|
|
#define AUTOHISS_OFF 0
|
|
#define AUTOHISS_BASIC 1
|
|
#define AUTOHISS_FULL 2
|
|
#define AUTOHISS_NUM 3 //Number of auto-accent options.
|