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.

78 lines
2.2 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. #VAR {talker_channels} {
  15. {adventurers}{^(Adventurers)}
  16. {amPalaceGuard}{^(Ankh-MorporkPalaceGuard)}
  17. {apex}{^(Apex)}
  18. {assassins}{^(Assassins)}
  19. {atuin}{^(A'Tuin)}
  20. {conlegiumSicariorum}{^(ConlegiumSicariorum)}
  21. {dead}{^(Dead)}
  22. {djelianGuard}{^(DjelianGuard)}
  23. {duchessSaturdaysMusketeers}{^(DuchessSaturday'sMusketeers)}
  24. {fish}{^(Fish)}
  25. {gapp}{^(Gapp)}
  26. {gufnork}{^(Gufnork)}
  27. {hashishim}{^(Hashishim)}
  28. {hat}{^(Hat)}
  29. {hublandishBarbarians}{^(HublandishBarbarians)}
  30. {hunters}{^(Hunters)}
  31. {igame}{^(Igame)}
  32. {imperialGuard}{^(ImperialGuard)}
  33. {intermud}{^(Intermud)}
  34. {klatchianForeignLegion}{^(KlatchianForeignLegion)}
  35. {lancreHighlandRegiment}{^(LancreHighlandRegiment)}
  36. {manoRossa}{^(ManoRossa)}
  37. {ninjas}{^(Ninjas)}
  38. {one}{^(One)}
  39. {pishe}{^(Pishe)}
  40. {playerkillers}{^(Playerkillers)}
  41. {playtesters}{^(Playtesters)}
  42. {priests}{^(Priests)}
  43. {quiz}{^(Quiz)}
  44. {samurai}{^(Samurai)}
  45. {sandelfon}{^(Sandelfon)}
  46. {sek}{^(Sek)}
  47. {thieves}{^(Thieves)}
  48. {two}{^(Two)}
  49. {warriors}{^(Warriors)}
  50. {weaponMastersCourt}{^(WeaponMasters'Court)}
  51. {witches}{^(Witches)}
  52. {wizards}{^(Wizards)}
  53. };
  54. #FOREACH {$talker_channels[%*]} {talker_channel} {
  55. #ACTION {$talker_channel %1 wisps{:|} %2} {
  56. #if {"$talker_log_toggle" == "1"} {
  57. #LINE {LOG} {$chat_file}
  58. };
  59. };
  60. }
  61. #ALIAS {talker log %1} {
  62. #if {%1 == "on"} {
  63. #var {talker_log_toggle} {1};
  64. };
  65. #if {%1 == "off"} {
  66. #var {talker_log_toggle} {0};
  67. };
  68. };
  69. #CLASS {channels} {close};