-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add EternalCore FAQ containing minimessages guide, command disabling and no flickering in title. Add chatformatter config created by @Pfandleiher * Change faq questions * fix animation issue * word fixup
- Loading branch information
Showing
7 changed files
with
140 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# ❓ Frequently Asked Questions | ||
|
||
## ⛔ How to disable command in EternalCore? | ||
|
||
### Problem: | ||
Command from my other plugin is clashing against EternalCore command. | ||
|
||
### Solution: | ||
You can disable command in `commands.yml` file. | ||
|
||
### Example: | ||
```yaml | ||
rtp: | ||
name: [] | ||
enabled: false | ||
aliases: [] | ||
permissions: [] | ||
subCommands: [] | ||
``` | ||
## 🎨 How do I format text in chat? | ||
### Problem: | ||
I want to format text in chat. I want to style it, color it, etc. | ||
### Solution: | ||
You can use MiniMessage formatting. Check out the [MiniMessage Viewer](https://webui.advntr.dev/). | ||
### Example: | ||
```yaml | ||
message: "<gradient:#ff00ee:#f79459>Example message</gradient>" | ||
``` | ||
## 🏃💨 How do I stop my title from flickering? | ||
### Problem: | ||
I want to create in game title with timer, but it keeps flickering on users screen. | ||
### Solution: | ||
You can use `times` key in configuration file. | ||
|
||
### Example: | ||
```yaml | ||
teleportTimerFormat: | ||
actionbar: "<green>► <white>Teleporting in <green>{TIME}" | ||
chat: "<green>► <white>Teleporting in <green>{TIME}" | ||
title: "<white>Teleporting..." | ||
subtitle: "<green>{TIME}" | ||
times: "1s 2s 1s" # No flickering | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.