mirror of
https://github.com/plexusorg/Website.git
synced 2025-07-02 08:06:41 +00:00
Plex 1.1
This commit is contained in:
@ -22,7 +22,7 @@ The default `commands.yml` file is below.
|
||||
# - The ranks are "e" for everyone, "s" for senior admin, and "a" for admin
|
||||
# - MATCHING MODE: The command is just the command without slashes. Optional arguments are specified as well. It also accepts full plugins via specifying the plugin name followed by a ":" (e.g. "viaversion:")
|
||||
# - REGEX MODE: The command is regex that matches the desired command. It matches case insensitively.
|
||||
# - Finally the block message. MUST NOT CONTAIN ":". Use _ to use the default command blocked message as specified in messages.yml, or you can optionally put your own in
|
||||
# - Finally the block message MUST NOT CONTAIN ":". Use _ to use the default command blocked message as specified in messages.yml, or you can optionally put your own in
|
||||
#
|
||||
# So these would be valid:
|
||||
# - "m:e:mail sendall:You cannot send messages to everyone on the server"
|
||||
@ -64,9 +64,15 @@ commands:
|
||||
- "m:e:weather:_"
|
||||
- "m:e:worldborder:<gray>The worldborder does not need to be changed. This command is disabled."
|
||||
- "r:a:^(co|core|coreprotect) (rb|rollback|l|lookup|rl|reload):_"
|
||||
- "r:a:^(gamemode|gm) [^ ]+ .*:<gray>You cannot change the gamemode of other players!"
|
||||
- "r:a:^(gamemode|gm|egamemode|egm) (spectator|sp|3):<gray>You cannot use spectator mode!"
|
||||
- "r:e:^[A-z]*:[A-z]*::<gray>Plugin specific commands are disabled."
|
||||
|
||||
# These commands will be blocked when a player is muted
|
||||
block_on_mute:
|
||||
- me
|
||||
- say
|
||||
- msg
|
||||
- reply
|
||||
- mail
|
||||
```
|
||||
|
||||
## The symbols
|
||||
|
@ -10,7 +10,7 @@ This page will show you how to modify the configuration file. The configuration
|
||||
Below is the default `config.yml` file when Plex is loaded for the first time.
|
||||
```yaml title=/plugins/Plex/config.yml
|
||||
# Plex Configuration File
|
||||
# For documentation, please visit: https://plex.us.org
|
||||
# For documentation, please visit: https://docs.plex.us.org
|
||||
|
||||
server:
|
||||
name: "Plexus"
|
||||
@ -148,9 +148,6 @@ autowipe:
|
||||
entities:
|
||||
- "DROPPED_ITEM"
|
||||
|
||||
# Should we allow drops from players?
|
||||
allowdrops: true
|
||||
|
||||
# What blocks should be blocked?
|
||||
blocked_blocks:
|
||||
- "SPAWNER"
|
||||
@ -163,7 +160,7 @@ blocked_entities:
|
||||
- "ENDER_DRAGON"
|
||||
- "MINECART_TNT"
|
||||
|
||||
# See https://plex.us.org/docs/customization/config#worlds for documentation
|
||||
# See https://docs.plex.us.org/docs/customization/config#worlds for documentation
|
||||
# These gamerules apply to all worlds on the server
|
||||
global_gamerules:
|
||||
- "doWeatherCycle;true"
|
||||
|
@ -142,20 +142,20 @@ prefixCleared: "<aqua>Your prefix has been cleared."
|
||||
otherPrefixCleared: "<aqua>You have cleared {0}'s prefix."
|
||||
# 0 - The new prefix
|
||||
prefixSetTo: "<aqua>Your prefix has been set to {0}"
|
||||
# 0 - The amount of players whose edits are blocked
|
||||
blockedEditsSize: "Blocked block modification abilities for {0} players."
|
||||
# 0 - The amount of players whose edits are unblocked
|
||||
unblockedEditsSize: "Unblocked all block modification abilities for {0} players."
|
||||
# 0 - The command sender
|
||||
# 1 - The player name
|
||||
blockingEditFor: "<red>{0} - Blocking block modification abilities for {1}"
|
||||
# 0 - The command sender
|
||||
# 1 - The player name
|
||||
unblockingEditFor: "<aqua>{0} - Unblocking block modification abilities for {1}"
|
||||
yourEditsHaveBeenBlocked: "<gray>Your block modification abilities have been blocked."
|
||||
yourEditsHaveBeenUnblocked: "<gray>Your block modification abilities have been restored."
|
||||
# 0 - The action (blocked / unblocked)
|
||||
# 1 - The amount of players
|
||||
blockeditSize: "<gray>{0} all block modification abilities for {1} players."
|
||||
# The action (blocked or restored)
|
||||
editsModified: "<gray>Your block modification abilities have been {0}."
|
||||
listOfPlayersBlocked: "<gray>The following have block modification abilities restricted:"
|
||||
# 0 - The player name
|
||||
editsBlocked: "<gray>Blocked block modification abilities for {0}"
|
||||
# 0 - The command sender
|
||||
# 1 - The player name
|
||||
blockingEdits: "<red>{0} - Blocking block modification abilities for {1}"
|
||||
# 0 - The command sender
|
||||
# 1 - The player
|
||||
unblockingEdits: "<aqua>{0} - Unblocking block modification abilities for {1}"
|
||||
# 0 - The player name
|
||||
editsUnblocked: "<gray>Unblocked block modification abilities for {0}"
|
||||
# 0 - The command sender
|
||||
@ -176,8 +176,6 @@ noRemovedEntities: "<gray>No entities were removed."
|
||||
# 1 - Number of mobs removed
|
||||
removedMobs: "<red>{0} - Removed {1} mobs"
|
||||
autoWipeDisabled: "<gray>Item wiping is currently disabled in the config!"
|
||||
allowDropsDisabled: "<gray>No longer allowing drops from players."
|
||||
allowDropsEnabled: "<gray>Now allowing drops from players."
|
||||
commandBlocked: "<gray>That command is blocked."
|
||||
# 0 - The command sender
|
||||
# 1 - The message being said
|
||||
@ -187,6 +185,14 @@ sayMessage: "<blue>[Server: {0}] {1}"
|
||||
consoleSayMessage: "<gray>[Console: {0}] <white>{1}"
|
||||
# 0 - The number attempted to be parsed
|
||||
unableToParseNumber: "<red>Unable to parse {0} as a number!"
|
||||
noNotes: "<red>This player has no notes!"
|
||||
noteAdded: "<green>Note added."
|
||||
noteNotFound: "<red>A note with this ID could not be found."
|
||||
# 0 - The ID of the note removed
|
||||
removedNote: "<green>Removed note with ID: {0}"
|
||||
# 0 - The number of notes cleared
|
||||
clearedNotes: "<green>Cleared {0} notes."
|
||||
invalidToggle: "<red>That is not a valid toggle."
|
||||
```
|
||||
|
||||
## MiniMessage
|
||||
|
@ -10,6 +10,9 @@ Below is a list of current modules
|
||||
|
||||
| Name | Versions |
|
||||
| -------------- | --------- |
|
||||
| BukkitTelnet | 1.0 |
|
||||
| HTTPD | 1.0.2 |
|
||||
| LibsDisguises | 1.0 |
|
||||
| BukkitTelnet | 1.1 |
|
||||
| HTTPD | 1.1 |
|
||||
| Guilds | 1.1 |
|
||||
| LibsDisguises | 1.1 |
|
||||
| NUSH | 1.1 |
|
||||
| TFMExtras | 1.1 |
|
@ -10,10 +10,10 @@ This page will show you how to setup and configure Redis for Plex. This tutorial
|
||||
If you are using Pterodactyl, setting up Redis is easy. You will need to download and add the Redis egg, which requires administrator privileges. If you are not an administrator, you may request an administrator to set up Redis for you.
|
||||
|
||||
### Setup the Redis egg
|
||||
Download the Redis egg from [here](https://raw.githubusercontent.com/ign-gg/Pterodactyl-Eggs/master/database/redis/redis-6/egg-redis-6.json). You can right click on the page and click "Save As". Please ensure that the filename ends in .json
|
||||
Right click on [this link](https://docs.plex.us.org/egg-redis-7.json) and click "Save As". Please ensure that the filename ends in .json
|
||||
|
||||
On your Pterodactyl admin page, click on the "Nests" from the sidebar. Click the blue "Create New" button and enter "Databases" for the name.
|
||||
Then, click on the green "Import Egg" button. Import the `egg-redis-6.json` file you just downloaded and make sure the "Associated Nest" is set to "Databases".
|
||||
Then, click on the green "Import Egg" button. Import the `egg-redis-7.json` file you just downloaded and make sure the "Associated Nest" is set to "Databases".
|
||||
|
||||
### Configure the allocations
|
||||
Click on the "Nodes" tab from the sidebar. Click on the node you would like to add Redis. Click on the "Allocation" tab. On the right, you will see a box that says "Assign New Allocations". For the IP Address, enter `172.18.0.1`, and for the port enter `6380`.
|
||||
|
@ -8,6 +8,7 @@ Plex builds against the latest Minecraft version available. A table has been pro
|
||||
|
||||
| Plex Version | Minecraft Versions |
|
||||
| ------------ | ------------------ |
|
||||
| 1.1 | 1.18.2 |
|
||||
| 1.0.3 | 1.18.2 |
|
||||
| 1.0.2 | 1.18.2 |
|
||||
| 1.0.1 | 1.18.2 |
|
||||
|
Reference in New Issue
Block a user