TinTin++ Configs for DiscworldMUD
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.4 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. #CLASS {channels} {kill};
  2. #CLASS {channels} {open};
  3. #VARIABLE {talker_log_toggle} {1};
  4. #ACTION {^You {tell|ask|exclaim to} %1:%2} {#LINE {LOG} {$chat_file}};
  5. #ACTION {^%1 {tells|asks|exclaims to} %*you{|(?: in \w+)?}: %4} {#LINE {LOG} {$chat_file}};
  6. #ACTION {^[%1] %2{:|} %3} {#LINE {LOG} {$chat_file}};
  7. #ACTION {^(They Might Be Alts) } {#LINE {LOG} {$chat_file}};
  8. #ACTION {^(newbiehelpers)} {#LINE {LOG} {$chat_file}};
  9. #ACTION {^You newbiehelper-tell:%1} {#LINE {LOG} {$chat_file}};
  10. #ACTION {^(newbie)} {#LINE {LOG} {$chat_file}};
  11. #ACTION {^You newbie-tell:%1} {#LINE {LOG} {$chat_file}};
  12. #ACTION {^You special-tell:%1} {#LINE {LOG} {$chat_file}};
  13. #ACTION {^You cre-tell:%1} {#LINE {LOG} {$chat_file}};
  14. #ACTION {^(Playerkillers) %1 wisps{:|} %2} {
  15. #if {"$talker_log_toggle" == "1"} {
  16. #LINE {LOG} {$chat_file}
  17. };
  18. };
  19. #ACTION {^(Thieves) %1 wisps{:|} %2} {
  20. #if {"$talker_log_toggle" == "1"} {
  21. #LINE {LOG} {$chat_file}
  22. };
  23. };
  24. #ACTION {^(Wizards) %1 wisps{:|} %2} {
  25. #if {"$talker_log_toggle" == "1"} {
  26. #LINE {LOG} {$chat_file}
  27. };
  28. };
  29. #ACTION {^(Igame) %1 wisps{:|} %2} {
  30. #if {"$talker_log_toggle" == "1"} {
  31. #LINE {LOG} {$chat_file}
  32. };
  33. };
  34. #ALIAS {talker log %1} {
  35. #if {%1 == "on"} {
  36. #var {talker_log_toggle} {1};
  37. };
  38. #if {%1 == "off"} {
  39. #var {talker_log_toggle} {0};
  40. };
  41. };
  42. #CLASS {channels} {close};