HitCount | License | Poggit | Release |
---|---|---|---|
lang.yml
file.lang.yml
.config.yml
to suit your needs.Yaml
and SQLite3
which can be set via config.yml
.Description | Command | Permission | Default |
---|---|---|---|
Home form | /home |
eh.command |
true |
Home command | /home [string:home] |
eh.command.tp |
true |
Teleport to home | /home teleport [string:home] |
eh.command.tp |
true |
Delete a home | /home delete [string:home] |
eh.command.del |
true |
Help command | /home help |
eh.command.help |
true |
List homes | /home list |
eh.command.list |
true |
Set a home | /home set [string:home] |
eh.command.set |
true |
Description | Command | Permission | Default |
---|---|---|---|
Admin form | /homeadmin |
eh.command.admin |
op |
Delete a player home | /homeadmin delete [string:player] [string:home] |
eh.command.admin.del |
op |
Get player's home limit | /homeadmin getlimit [string:player] |
eh.command.admin.limit.get |
op |
Set player's home limit | /homeadmin setlimit [string:player] [int:count] |
eh.command.admin.limit.set |
op |
Increase player's home limit | /homeadmin ilimit [string:player] [int:count] |
eh.command.admin.limit.increase |
op |
Help command | /homeadmin help |
eh.command.admin.help |
op |
List player's homes | /homeadmin list [string:player] |
eh.command.admin.list |
op |
Set player's home | /homeadmin set [string:player] [string:home] |
eh.command.admin.set |
op |
Teleport to player's home | /homeadmin teleport [string:player] [string:home] |
eh.command.admin.tp |
op |
Note: Alias for every command exists. You can find detail in lang.yml
.
EasyHomes provides a simple API for developers wishing to use this plugin in theirs or make addons for it.
$easyHomes = Server::getInstance()->getPluginManager()->getPlugin("EasyHomes");
if($easyHomes instanceof \JackMD\EasyHomes\Main){
//do whatever
}
$provider = $easyhomes->getProvider();