mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-05 23:21:53 +00:00
* dev team chat initial * oops * refactor who code * allow discord relay * yeet some un-needed stuff * tweak the role colour * Update code/__DEFINES/admin_defines.dm Co-authored-by: ROdenFL <ROdenFL@yandex.ru> Signed-off-by: Sean <12197162+S34NW@users.noreply.github.com> * .Add to += * Update config/example/config.toml Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> Signed-off-by: Sean <12197162+S34NW@users.noreply.github.com> --------- Signed-off-by: Sean <12197162+S34NW@users.noreply.github.com> Co-authored-by: ROdenFL <ROdenFL@yandex.ru> Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com>
28 lines
917 B
Plaintext
28 lines
917 B
Plaintext
/**
|
|
* Copyright (c) 2020 Aleksej Komarov
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
/// How many chat payloads to keep in history
|
|
#define CHAT_RELIABILITY_HISTORY_SIZE 5
|
|
/// How many resends to allow before giving up
|
|
#define CHAT_RELIABILITY_MAX_RESENDS 3
|
|
|
|
#define MESSAGE_TYPE_SYSTEM "system"
|
|
#define MESSAGE_TYPE_LOCALCHAT "localchat"
|
|
#define MESSAGE_TYPE_RADIO "radio"
|
|
#define MESSAGE_TYPE_INFO "info"
|
|
#define MESSAGE_TYPE_WARNING "warning"
|
|
#define MESSAGE_TYPE_DEADCHAT "deadchat"
|
|
#define MESSAGE_TYPE_OOC "ooc"
|
|
#define MESSAGE_TYPE_ADMINPM "adminpm"
|
|
#define MESSAGE_TYPE_MENTORPM "mentorpm"
|
|
#define MESSAGE_TYPE_COMBAT "combat"
|
|
#define MESSAGE_TYPE_ADMINCHAT "adminchat"
|
|
#define MESSAGE_TYPE_MENTORCHAT "mentorchat"
|
|
#define MESSAGE_TYPE_DEVCHAT "devchat"
|
|
#define MESSAGE_TYPE_EVENTCHAT "eventchat"
|
|
#define MESSAGE_TYPE_ADMINLOG "adminlog"
|
|
#define MESSAGE_TYPE_ATTACKLOG "attacklog"
|
|
#define MESSAGE_TYPE_DEBUG "debug"
|