mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-29 18:31:03 +00:00
* Ports over configuration controller * Fixes * Manual path fix * patch (#16490) * patch * . * SQL Fix * Post-rebase fix * Added missing examples --------- Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
12 lines
483 B
Plaintext
12 lines
483 B
Plaintext
/proc/log_nsay(text, inside, mob/speaker)
|
|
if (CONFIG_GET(flag/log_say))
|
|
WRITE_LOG(diary, "NSAY (NIF:[inside]): [speaker.simple_info_line()]: [html_decode(text)]")
|
|
|
|
/proc/log_nme(text, inside, mob/speaker)
|
|
if (CONFIG_GET(flag/log_emote))
|
|
WRITE_LOG(diary, "NME (NIF:[inside]): [speaker.simple_info_line()]: [html_decode(text)]")
|
|
|
|
/proc/log_subtle(text, mob/speaker)
|
|
if (CONFIG_GET(flag/log_emote))
|
|
WRITE_LOG(diary, "SUBTLE: [speaker.simple_info_line()]: [html_decode(text)]")
|