-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-example.yml
71 lines (63 loc) · 2.8 KB
/
config-example.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
#Copyright (C) 2011 Christopher Pybus <[email protected]>
# THIS FILE DOES NOT MEAN ANYTHING IN THE SIMPLECHAT PLUGIN.
# IT IS FOR EXPLANATION AND DEMONSTRATION PURPOSES ONLY.
# IN THIS FILE, THE MEANINGS OF ALL THE DIFFERENT VARIABLES
# WILL BE EXPLAINED TO YOU.
# +------------------------------------------------------+ #
# | Message Format | #
# | | #
# | Available Variables: +pname: Player Name | #
# | +dname: Display Name | #
# | +pre: Player's Prefix | #
# | +suf: Player's Prefix | #
# | +gro: Group Name | #
# | +msg: The Message | #
# | Color Codes (&a, &b, &1...) | #
# +------------------------------------------------------+ #
# Please note that any prefixes/suffixes set in the user section
# For a player will override their group prefix/suffix.
MessageFormat: '+pre&7+pname&f: +msg'
# +------------------------------------------------------+ #
# | Groups | #
# | | #
# | Please make sure these names match EXACTLY with | #
# | Those defined in your permissions plugin. | #
# +------------------------------------------------------+ #
Groups:
Default:
prefix: '&f[Visitor] '
suffix: ''
Regulars:
prefix: '&7[Regular] '
suffix: ''
Staff:
prefix: '&c[Staff] '
suffix: ''
Admin:
prefix: '&4[Admin] '
suffix: ''
# +------------------------------------------------------+ #
# | Users | #
# | | #
# | Prefixes set down here will override those set | #
# | Above. For example, PlayerPerson's prefix would | #
# | be 'AwesomeDude' Instead of &c[Staff] because | #
# | it was set down here. | #
# +------------------------------------------------------+ #
Users:
PlayerPerson:
prefix: 'AwesomeDude'
suffix: ''
AnotherPlayer:
prefix: 'AwesomeDude'
suffix: ''
# +------------------------------------------------------+ #
# | Defaults | #
# | | #
# | When a prefix, suffix, or group is not found, it'll | #
# | default to whatever values you have set below here. | #
# +------------------------------------------------------+ #
Defaults:
prefix: '&f[Visitor] '
suffix: ''
group: 'Default'