Advertisement
Momshroom

Towny channels for Towny tickets October 3

Oct 3rd, 2018
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.05 KB | None | 0 0
  1. # This file contains all configuration data for channels
  2. # The formating for them remains in the Towny Config and world files
  3. # so they can still be used on a per world basis.
  4.  
  5. # Channels are toggleable using any of the commands listed
  6. # eg. /tc (would put you in town chat)
  7. #          doing it again would take you out
  8. #          So long as you had the permission node for that channel.
  9.  
  10. # The channel type is either GLOBAL, TOWN, NATION or DEFAULT.
  11. #  These specify what chat formating section they will use
  12. #  and where the chat will go
  13. # (town goes to all town residents, depending on the range setting)
  14.  
  15. # channeltag is applied if the chat format for that channel has the {channelTag}
  16.  
  17. # messagecolour sets the colour of the message when sent.
  18.  
  19. # range is a setting which allows greater control over each channel.
  20. # this will set the maximum distance between players who can hear the message.
  21. # range is in blocks (if set to a limit).
  22. #
  23. #     -1 = no limits
  24. #     0 = same world only
  25. #     any positive value = limited range in the same world.
  26.  
  27. # Text colouring
  28. # --------------
  29. # Black = &0, Navy = &1, Green = &2, Blue = &3, Red = &4
  30. # Purple = &5, Gold = &6, LightGray = &7, Gray = &8
  31. # DarkPurple = &9, LightGreen = &a, LightBlue = &b
  32. # Rose = &c, LightPurple = &d, Yellow = &e, White = &f
  33.  
  34. Channels:
  35.     general:
  36.         commands: [g]
  37.         type: GLOBAL
  38.         channeltag: '&f[g]'
  39.         messagecolour: '&f'
  40.         permission: 'towny.chat.general'
  41.         craftIRCTag: 'admin'
  42.         range: '-1'
  43.        
  44.     town:
  45.         commands: [tc]
  46.         type: TOWN
  47.         channeltag: '&f[&3TC&f]'
  48.         messagecolour: '&b'
  49.         permission: 'towny.chat.town'
  50.         craftIRCTag: 'admin'
  51.         range: '-1'
  52.          
  53.     nation:
  54.         commands: [nc]
  55.         type: NATION
  56.         channeltag: '&f[&6NC&f]'
  57.         messagecolour: '&e'
  58.         permission: 'towny.chat.nation'
  59.         craftIRCTag: 'admin'
  60.         range: '-1'
  61.        
  62.     admin:
  63.         commands: [ad,admin]
  64.         type: DEFAULT
  65.         channeltag: '&f[&4ADMIN&f]'
  66.         messagecolour: '&c'
  67.         permission: 'towny.chat.admin'
  68.         craftIRCTag: 'admin'
  69.         range: '-1'
  70.        
  71.     mod:
  72.         commands: [m,mod]
  73.         type: DEFAULT
  74.         channeltag: '&f[&9MOD&f]'
  75.         messagecolour: '&5'
  76.         permission: 'towny.chat.mod'
  77.         craftIRCTag: 'admin'
  78.         range: '-1'
  79.        
  80.     Hero:
  81.         commands: [z,z]
  82.         type: DEFAULT
  83.         channeltag: '&f[&bHERO&f]'
  84.         messagecolour: '&a'
  85.         permission: 'towny.chat.hero'
  86.         craftIRCTag: 'admin'
  87.         range: '-1'
  88.        
  89.     TTC:
  90.         commands: [ttc]
  91.         type: DEFAULT
  92.         channeltag: '&f[&fT&4T&bC&f]'
  93.         messagecolour: '&6'
  94.         permission: 'towny.chat.TTC'
  95.         craftIRCTag: 'admin'
  96.         range: '-1'
  97.        
  98.     local:
  99.         commands: [l,lc]
  100.         type: GLOBAL
  101.         channeltag: '&f[local]'
  102.         messagecolour: '&7'
  103.         permission: 'towny.chat.local'
  104.         craftIRCTag: 'admin'
  105.         range: '100'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement