Files
CHOMPStation2/code/_helpers/logging_vr.dm
2018-03-10 21:27:37 -05:00

12 lines
504 B
Plaintext

/proc/log_nsay(text, inside, mob/speaker)
if (config.log_say)
diary << "\[[time_stamp()]]NSAY (NIF:[inside]): [speaker.simple_info_line()]: [html_decode(text)][log_end]"
/proc/log_nme(text, inside, mob/speaker)
if (config.log_emote)
diary << "\[[time_stamp()]]NME (NIF:[inside]): [speaker.simple_info_line()]: [html_decode(text)][log_end]"
/proc/log_subtle(text, mob/speaker)
if (config.log_emote)
diary << "\[[time_stamp()]]SUBTLE: [speaker.simple_info_line()]: [html_decode(text)][log_end]"