Merge pull request #1679 from VOREStation/aro-sclogging

Soulcatcher chat logging, and subtle logging for free
This commit is contained in:
Arokha Sieyes
2017-06-10 15:29:09 -04:00
committed by GitHub
5 changed files with 63 additions and 20 deletions

View File

@@ -0,0 +1,11 @@
/proc/log_nsay(text,inside)
if (config.log_say)
diary << "\[[time_stamp()]]NSAY (NIF:[inside]): [text][log_end]"
/proc/log_nme(text,inside)
if (config.log_emote)
diary << "\[[time_stamp()]]NME (NIF:[inside]): [text][log_end]"
/proc/log_subtle(text)
if (config.log_emote)
diary << "\[[time_stamp()]]SUBTLE: [text][log_end]"