Player respawn priority setting has been restructured.
Configuration file option added to toggle command permissions requirement.
Commands:
/msg <player> - Send a private message to a specific player.
/msgtoggle - Toggle the ability to receive private messages.
/sethome - Set a teleportation point for your home.
/delhome - Delete the teleportation point for your home.
/home - Teleport to your home teleportation point.
Permissions:
basicthings.msg - Permission to use /msg <player> command.
basicthings.msgtoggle - Permission to use /msgtoggle command.
basicthings.sethome - Permission to use /sethome command.
basicthings.delhome - Permission to use /delhome command.
basicthings.home - Permission to use /home command.
Code (YAML):
# If this setting is enabled, it asks for permissions to use commands in the plugin. # If this setting is disabled, it does not ask for permissions to use commands in the plugin. Require-Permission: true
# Place where the player will respawn upon death at the top. # Bed: When a player dies, if they have a bed, they respawn at their bed if not the respawn priority shifts to the following option. # Home: When a player dies, if the player has set a home using the /sethome command, they respawn at their home if not the respawn priority shifts to the following option. # Spawn: When a player dies, they respawn at the spawn point regardless of whether they have a bed or home. If they don't have a spawn point, the respawn priority shifts to the following option. Player-Respawn-Priority: - Bed
- Home
- Spawn
players.yml file added. Players will be registered here when they join the server. Information such as QuitLocation, DeathLocation, "Mute and Jail duration" will be recorded here.
/delwarp command added.
/back command added.
/walkspeed command added.
/flyspeed command added.
Commands
/delwarp <Warp Name>: Allows you to delete a previously created warp point.
/back: Teleports you to the location where you last died.
/walkspeed <1.0-10.0>: Allows you to change your walking speed.
/flyspeed <1.0-10.0>: Allows you to change your flying speed.
Permissions
basicthings.delwarp: Allows you to delete a previously created warp point using the /delwarp <Warp Name> command.
basicthings.back: Allows you to teleport to the location where you last died using the /back command.
basicthings.walkspeed: Allows you to change your walking speed using the /walkspeed <1.0-10.0> command.
basicthings.flyspeed: Allows you to change your flying speed using the /flyspeed <1.0-10.0> command.
When enabled, players will spawn at their last location upon joining the server.
When disabled, players will teleport to the spawn point upon joining.
Player-Respawn-Priority Setting Added:
Place where the player will respawn upon death at the top.
Bed: When a player dies, if they have a bed, they respawn at their bed. Otherwise, they respawn at the spawn point.
Spawn: When a player dies, they respawn at the spawn point even if they have a bed.
Code (YAML):
# When this setting is enabled, when the player enters the server, they will be in their last location. # If this setting is not enabled, the player will be teleported to the spawn point when they enter the server. Teleport-Player-To-Last-Location-When-Joined: true
# Place where the player will respawn upon death at the top. # Bed: When a player dies, if they have a bed, they respawn at their bed. Otherwise, they respawn at the spawn point. # Spawn: When a player dies, they respawn at the spawn point even if they have a bed. Player-Respawn-Priority: - Bed
- Spawn