You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONFIG.md
+13-4Lines changed: 13 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,18 +20,27 @@ Below you can find the default options:
20
20
21
21
em.systemStaffEnabled = on
22
22
em.systemStaffColor = "#1AA4BC"
23
+
24
+
# Miscellaneous Settings
25
+
em.systemName = "System"
23
26
```
24
27
If you want to change an option, simply copy and paste the corresponding line into your config and change the value.
25
28
26
-
##Valid values
27
-
###Toggles
29
+
# Valid values
30
+
## Toggles
28
31
Any setting that ends in `Enabled` is a toggle.
29
32
Like regular on/off settings, these take any truthy or falsy values.
30
33
Truthy: `on`, `1`, `true`
31
34
Falsy: `off`, `0`, `false`, `null`
32
35
33
-
###Colors
36
+
## Colors
34
37
Any option that ends in `Color` takes a color value.
35
38
Valid color formats are:
36
39
- HEX (e.g. "#7289DA") | These must start with a `#` and be in quotes
37
-
- RGB (e.g. 114, 137, 218) | Any three numbers delimited with any non-number
40
+
- RGB (e.g. 114, 137, 218) | Any three numbers delimited with any non-number
41
+
42
+
## Miscellaneous Settings
43
+
These all accept different values. All misc. settings and their types are listed here:
44
+
### systemName
45
+
This accepts any string. Said string will then be used in the embed instead of `System` when a system message is sent.
46
+
Setting this to `$botname` will automatically use the Bots username (as it was when the plugin was loaded - later changes are not reflected until the bot restarts).
0 commit comments