aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorWyvest <45589059+Wyvest@users.noreply.github.com>2022-05-01 08:42:43 +0700
committerWyvest <45589059+Wyvest@users.noreply.github.com>2022-05-01 08:42:43 +0700
commit04363f543d136bd43f82d28ff569ae4522fba37a (patch)
treefeb98ee80beb8c143310634c3e57f5e8b013d94a /docs
parentb8aa42e5564714a4fbf611ccae42ed3b6905405c (diff)
downloadChatting-04363f543d136bd43f82d28ff569ae4522fba37a.tar.gz
Chatting-04363f543d136bd43f82d28ff569ae4522fba37a.tar.bz2
Chatting-04363f543d136bd43f82d28ff569ae4522fba37a.zip
make prefix property not required
add lowercase property
Diffstat (limited to 'docs')
-rw-r--r--docs/chattabs.md22
1 files changed, 15 insertions, 7 deletions
diff --git a/docs/chattabs.md b/docs/chattabs.md
index 0738310..8c27d17 100644
--- a/docs/chattabs.md
+++ b/docs/chattabs.md
@@ -12,15 +12,16 @@ something like this:
"enabled": true,
"name": "ALL",
"unformatted": false,
+ "lowercase": false,
"color": 14737632,
"hovered_color": 16777120,
- "selected_color": 10526880,
- "prefix": ""
+ "selected_color": 10526880
},
{
"enabled": true,
"name": "PARTY",
"unformatted": false,
+ "lowercase": false,
"starts": [
"§r§9Party §8> ",
"§r§9P §8> ",
@@ -90,6 +91,7 @@ something like this:
"enabled": true,
"name": "GUILD",
"unformatted": true,
+ "lowercase": false,
"starts": [
"Guild >",
"G >"
@@ -103,6 +105,7 @@ something like this:
"enabled": true,
"name": "PM",
"unformatted": true,
+ "lowercase": false,
"starts": [
"To ",
"From "
@@ -113,7 +116,7 @@ something like this:
"prefix": "/r "
}
],
- "version": 4
+ "version": 5
}
```
@@ -222,17 +225,22 @@ The `selected_color` property allows you to change the color of the chat tab tex
over all the other color properties. Like the other color properties, it is in RGBA format.
The `prefix` property appends the prefix to any message sent while in the specific chat tab **if it is not a command**.
-This can be used to automatically send messages in a specific channel in servers, like in Hypixel.
+This can be used to automatically send messages in a specific channel in servers, like in Hypixel. This is no longer required as of version 5.
+
+The `lowercase` property makes the message trigger lowercase.
## Chat Tabs JSON Changelogs
+### Version 5 (Chatting 1.4.0)
+- The `prefix` property is no longer a required property.
+- Added `lowercase` property
-### Version 4
+### Version 4 (Chatting 1.4.0 [eece3cb])
- Added color text options (`color`, `hovered_color`, and `selected_color`)
- `version` is now actually an integer
-### Version 3
+### Version 3 (Chatting 1.4.0-alpha1)
- Added `ignore_` options (`ignore_starts`, `ignore_ends`, `ignore_equals`, and `ignore_regex`)
-### Version 2
+### Version 2 (1.0.0)
- Added `enabled` property \ No newline at end of file