mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-29 02:13:12 +00:00
* 1 * Full conversion * . * . --------- Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
12 lines
498 B
Plaintext
12 lines
498 B
Plaintext
/proc/log_nsay(text, inside, mob/speaker)
|
|
if (CONFIG_GET(flag/log_say))
|
|
WRITE_LOG(GLOB.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(GLOB.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(GLOB.diary, "SUBTLE: [speaker.simple_info_line()]: [html_decode(text)]")
|