mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
12 lines
453 B
Plaintext
12 lines
453 B
Plaintext
/proc/log_nsay(text, inside, mob/speaker)
|
|
if (config.log_say)
|
|
WRITE_LOG(diary, "NSAY (NIF:[inside]): [speaker.simple_info_line()]: [html_decode(text)]")
|
|
|
|
/proc/log_nme(text, inside, mob/speaker)
|
|
if (config.log_emote)
|
|
WRITE_LOG(diary, "NME (NIF:[inside]): [speaker.simple_info_line()]: [html_decode(text)]")
|
|
|
|
/proc/log_subtle(text, mob/speaker)
|
|
if (config.log_emote)
|
|
WRITE_LOG(diary, "SUBTLE: [speaker.simple_info_line()]: [html_decode(text)]")
|