Plugins | WarpGUI |
---|---|
API | |
Version | |
Download | |
Total Download |
✔️ The plugin allows you to create and edit warps ✔️
✔️ Can add or remove more areas ✔️
- It's a plugin that allows you to navigate using the chest menu
- The plugin is inspired by the WarpGUI of Minecraft PC
- InvMenu (Muqsit)
- DEVirion (SOF3)
- Commando (Paroxity)
- SimplePacketHandler (Muqsit)
Commands | Description | Aliases |
---|---|---|
/warpgui | WarpGUI Commands | /warp |
Click to see permission
- use permission
warpgui.command
to use command /warpgui - use permission
warpgui.command.help
to use command /warpgui help - use permission
warpgui.command.create
to use command /warpgui create - use permission
warpgui.command.remove
to use command /warpgui remove - use permission
warpgui.command.setup
to use command /warpgui setup - use permission
warpgui.command.list
to use command /warpgui list
Click to open
---
# WarpGUI config.yml
#
# ░██╗░░░░░░░██╗░█████╗░██████╗░██████╗░░██████╗░██╗░░░██╗██╗
# ░██║░░██╗░░██║██╔══██╗██╔══██╗██╔══██╗██╔════╝░██║░░░██║██║
# ░╚██╗████╗██╔╝███████║██████╔╝██████╔╝██║░░██╗░██║░░░██║██║
# ░░████╔═████║░██╔══██║██╔══██╗██╔═══╝░██║░░╚██╗██║░░░██║██║
# ░░╚██╔╝░╚██╔╝░██║░░██║██║░░██║██║░░░░░╚██████╔╝╚██████╔╝██║
# ░░░╚═╝░░░╚═╝░░╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░░░░░╚═════╝░░╚═════╝░╚═╝
#
# Message Teleport To Warp
# Use {warp} to get warp name
msg-teleport: "§aSuccessfully teleport to warp§6 {warp}"
# Menu WarpGUI Name
menu-name: "WarpGUI"
...
$api = WarpManager::getInstance();
$name = "fishing";
//check warp exists
if($api->getWarp()->exsits($name)){
$player->sendMessage("warp already exists!");
return;
}
$api->addWarp($name);
$player->sendMessage("Warp ".$name." has been created successfully");
$name = "fishing";
if(!$api->getWarp()->exists($name)){
$player->sendMessage("warp does not exists!");
return;
}
$api->removeWarp($name);
$player->sendMessage("Warp ".$name." has been removed");
/**
*@var Player $player
*/
$api->editWarp[$player->getName()];
/**
*@var Player $player
*@var string $name
*/
$name = "fishing";
$api->teleportToWarp($player, $name);
- Click Here To See The Tutorial Setup
- IMPORTANT THING: You need to install the
DEVirion
plugin into theplugins/
directory of the server, reload the server.
your_server_file
| - - plugins
| ` - - WarpGUI
| ` - - DEVirions
| - - virions
| ` - - InvMenu
| ` - - Commando
| ` - - SimplePacketHandler
- Step 1: Click the
Direct Download
button to download the plugin- Step 2: move the file
WarpGUI.phar
into the fileplugins
- Step 3: Restart server