-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChannels.yml
99 lines (85 loc) · 2.84 KB
/
Channels.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# This file contains all configuration data for channels
# The formating for them remains in the Towny Config and world files
# so they can still be used on a per world basis.
# In order to swap channels, you must use the desired channel's command
# to enter the new chat and leave the old one.
# eg. /tc (would put you in town chat) and typing it again would not change
# you channel. To get back to general chat, you can do /g.
# The channel type is either GLOBAL, TOWN, NATION or DEFAULT.
# These specify what chat formating section they will use
# and where the chat will go
# (town goes to all town residents, depending on the range setting)
# channeltag is applied if the chat format for that channel has the {channelTag}
# messagecolour sets the colour of the message when sent.
# range is a setting which allows greater control over each channel.
# this will set the maximum distance between players who can hear the message.
# range is in blocks (if set to a limit).
#
# -1 = no limits
# 0 = same world only
# any positive value = limited range in the same world.
# Text colouring
# --------------
# Black = &0, Navy = &1, Green = &2, Blue = &3, Red = &4
# Purple = &5, Gold = &6, LightGray = &7, Gray = &8
# DarkPurple = &9, LightGreen = &a, LightBlue = &b
# Rose = &c, LightPurple = &d, Yellow = &e, White = &f
# Sounds
# ------
# Each channel can have a sound by adding sound: SOUND_TO_USE
# Sounds can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Sound.html
Channels:
general:
commands: [g]
type: GLOBAL
channeltag: '&f[G]'
messagecolour: '&f'
permission: 'towny.chat.general'
default: true
range: '-1'
spam_time: '0.5'
town:
commands: [tc]
type: TOWN
channeltag: '&f[&3TC&f]'
messagecolour: '&b'
permission: 'towny.chat.town'
range: '-1'
spam_time: '0.5'
nation:
commands: [nc]
type: NATION
channeltag: '&f[&6NC&f]'
messagecolour: '&e'
permission: 'towny.chat.nation'
range: '-1'
spam_time: '0.5'
alliance:
commands: [ac]
type: ALLIANCE
channeltag: '&f[&2AC&f]'
messagecolour: '&a'
permission: 'towny.chat.alliance'
range: '-1'
spam_time: '0.5'
admin:
commands: [admin]
type: DEFAULT
channeltag: '&f[&4ADMIN&f]'
messagecolour: '&c'
permission: 'towny.chat.admin'
range: '-1'
mod:
commands: [mod]
type: DEFAULT
channeltag: '&f[&9MOD&f]'
messagecolour: '&5'
permission: 'towny.chat.mod'
range: '-1'
local:
commands: [lc]
type: GLOBAL
channeltag: '&f[local]'
messagecolour: '&f'
permission: 'towny.chat.local'
range: '100'