mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-27 18:51:53 +00:00
This commit overhauls the global.dm file, global_lists.dm file, and defines.dm file into a tree system based on -tg-. All defines have been split and distributed in code/__DEFINES/ Everything from global.dm and global_lists.dm has been split and distributed in code/_globalvars The _compile_options.dm file contains anything that absolutely, 100%, must be initialized before world.dm. Name definitions have been moved to code/_globalvars/lists/names.dm. Other things to note - All instances of something.z == 2/1/3/5 have been replaced with easily configurable defines, labeled ZLEVEL_. The map include file can override these by defining custom ones in it's file, as it is at the top of the tree.
43 lines
1.4 KiB
Plaintext
43 lines
1.4 KiB
Plaintext
//A set of constants used to determine which type of mute an admin wishes to apply:
|
|
//Please read and understand the muting/automuting stuff before changing these. MUTE_IC_AUTO etc = (MUTE_IC << 1)
|
|
//Therefore there needs to be a gap between the flags for the automute flags
|
|
#define MUTE_IC 1
|
|
#define MUTE_OOC 2
|
|
#define MUTE_PRAY 4
|
|
#define MUTE_ADMINHELP 8
|
|
#define MUTE_DEADCHAT 16
|
|
#define MUTE_ALL 31
|
|
|
|
//Number of identical messages required to get the spam-prevention automute thing to trigger warnings and automutes
|
|
#define SPAM_TRIGGER_WARNING 5
|
|
#define SPAM_TRIGGER_AUTOMUTE 10
|
|
|
|
//Some constants for DB_Ban
|
|
#define BANTYPE_PERMA 1
|
|
#define BANTYPE_TEMP 2
|
|
#define BANTYPE_JOB_PERMA 3
|
|
#define BANTYPE_JOB_TEMP 4
|
|
#define BANTYPE_ANY_FULLBAN 5 //used to locate stuff to unban.
|
|
#define BANTYPE_APPEARANCE 6
|
|
|
|
//Please don't edit these values without speaking to Errorage first ~Carn
|
|
//Admin Permissions
|
|
#define R_BUILDMODE 1
|
|
#define R_ADMIN 2
|
|
#define R_BAN 4
|
|
#define R_EVENT 8
|
|
#define R_SERVER 16
|
|
#define R_DEBUG 32
|
|
#define R_POSSESS 64
|
|
#define R_PERMISSIONS 128
|
|
#define R_STEALTH 256
|
|
#define R_REJUVINATE 512
|
|
#define R_VAREDIT 1024
|
|
#define R_SOUNDS 2048
|
|
#define R_SPAWN 4096
|
|
#define R_MOD 8192
|
|
#define R_MENTOR 16384
|
|
|
|
#define R_MAXPERMISSION 16384 //This holds the maximum value for a permission. It is used in iteration, so keep it updated.
|
|
|
|
#define R_HOST 65535 |