Readme
MoreHomes
Allow players to claim and teleport to multiple beds.
Features
- Allow players to claim multiple beds
- Cooldown and delay system for home teleportation
- Cancel teleportation if the player moves
- Integrates with Telepoertation plugin for Combat and Raid mode checks
- VIP permission system for cooldown, delay, and max homes
- As of version v1.9.0,
MoreHomesData.json
is stored in the map level data folder instead of the plugin directory
Commands
Player
- /home – Teleport to the first home in the list
- /home <name> – Teleport to the home with the given name
- /homes – Lists all your homes
- /destroyhome <name> – Removes the home with the given name
- /renamehome <name> <new_name> – Renames the home with the given name
Admin/Console
- /restorehomes - Collects all the homes from the map and restores them to
MoreHomesData.json
Player Permissions
<Permission Cooldown="0">home</Permission>
<Permission Cooldown="0">homes</Permission>
<Permission Cooldown="0">destroyhome</Permission>
<Permission Cooldown="0">renamehome</Permission>
Configuration
<?xml version="1.0" encoding="utf-8"?>
<MoreHomesConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<MessageColor>yellow</MessageColor>
<DefaultHomeCooldown>60</DefaultHomeCooldown>
<DefaultHomeDelay>10</DefaultHomeDelay>
<DefaultMaxHomes>2</DefaultMaxHomes>
<TeleportHeight>0.5</TeleportHeight>
<CancelOnMove>true</CancelOnMove>
<MoveMaxDistance>0.5</MoveMaxDistance>
<VIPCooldowns>
<VIPPermission PermissionTag="morehomes.vip" Value="10" />
<VIPPermission PermissionTag="morehomes.star" Value="10" />
</VIPCooldowns>
<VIPDelays>
<VIPPermission PermissionTag="morehomes.vip" Value="5" />
<VIPPermission PermissionTag="morehomes.star" Value="3" />
</VIPDelays>
<VIPMaxHomes>
<VIPPermission PermissionTag="morehomes.vip" Value="3" />
<VIPPermission PermissionTag="morehomes.star" Value="4" />
</VIPMaxHomes>
</MoreHomesConfiguration>
Translations
<?xml version="1.0" encoding="utf-8"?>
<Translations xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Translation Id="HomeCooldown" Value="You have to wait {0} seconds to use home again" />
<Translation Id="HomeDelayWarn" Value="You will be teleported to your home in {0} seconds" />
<Translation Id="MaxHomesWarn" Value="You cannot have more homes" />
<Translation Id="BedDestroyed" Value="Your home got destroyed or unclaimed! Teleportation canceled" />
<Translation Id="WhileDriving" Value="You cannot teleport while driving" />
<Translation Id="NoHome" Value="You don't have any home to teleport or name doesn't match any" />
<Translation Id="HomeSuccess" Value="Successfully teleported You to your {0} home!" />
<Translation Id="HomeList" Value="Your homes [{0}/{1}]: " />
<Translation Id="NoHomes" Value="You don't have any home" />
<Translation Id="DestroyHomeFormat" Value="Format: /destroyhome <name>" />
<Translation Id="HomeNotFound" Value="No home match {0} name" />
<Translation Id="DestroyHomeSuccess" Value="Successfully destroyed your home {0}!" />
<Translation Id="RenameHomeFormat" Value="Format: /renamehome <name> <rename>" />
<Translation Id="HomeAlreadyExists" Value="You already have a home named {0}" />
<Translation Id="RenameHomeSuccess" Value="Successfully renamed home {0} to {1}!" />
<Translation Id="WhileRaid" Value="You can't teleport while in raiding" />
<Translation Id="WhileCombat" Value="You can't teleport while in combat" />
<Translation Id="RestoreHomesSuccess" Value="Successfully restored {0} homes!" />
<Translation Id="RemoveHome" Value="Your {0} home got removed!" />
<Translation Id="RenameHomeSuccess" Value="Successfully renamed home {0} to {1}!" />
<Translation Id="HomeClaimed" Value="Your new claimed home name is {0}" />
<Translation Id="HomeTeleportationFailed" Value="Failed to teleport you to {0} home" />
<Translation Id="HomeDestroyed" Value="Your home {0} got destroyed or you salvaged it!" />
<Translation Id="HomeCanceledYouMoved" Value="Your home teleportation was canceled because you moved" />
</Translations>