- For PocketMine-MP:
- API 1.12.0
![]()
SimpleWarp is the original warp plugin for PocketMine-MP. It allows players to move from point A to B with ease. At the core of SimpleWarp is simplicity and extensibility. Although very easy on the end user, it exposes a beast of a backend for developers to hack around with.
Commands
Permissions
- /warp <name> [player] Warps you or another player to a specified warp.
- /addwarp <name> [<ip> <port>|<x> <y> <z> <level>|<player>] Creates a new warp at a set location.
- /delwarp <name> Deletes specified warp.
- /openwarp <name> Make specified warp available to all players.
- /closewarp <name> Restrict warp to players who have correct permission.
- /listwarps Prints out list of warps.
Code:simplewarp: default: op children: simplewarp.command: default: op children: simplewarp.command.list: default: true children: simplewarp.command.list.xyz: default: op simplewarp.command.list.visual: default: op simplewarp.command.addwarp: default: op simplewarp.command.delwarp: default: op simplewarp.command.warp: default: true children: simplewarp.command.warp.other: default: op simplewarp.command.openwarp: default: op simplewarp.command.closewarp: default: op simplewarp.warp: default: op description: Allows usage of all warps
API
What good is a plugin without an API? SimpleWarp has an API which is used by it's own core components.
Getting access
Make sure to add the following to your plugin.yml
Note: If you use softdepend you will need to check if SimpleWarp is installed.Code:depend: ["SimpleWarp"]
Now you can a copy of the API in your onEnable method
PHP:$api = SimpleWarpAPI::getInstance($this); // This only works inside a PluginBase
If you want to get the instance outside your main class, you can do
PHP:$api = $server->getPluginManager()->getPlugin("SimpleWarp")->getApi(); // $server is an instance of \pocketmine\Server
- Optional Plugins:
- FastTransfer
- Alternate Categories:
- Admin Tools
- Fun
- Plugin Access:
- Other Plugins
- Commands
- Data Saving

SimpleWarp 2.1.0
Warp between worlds to set warp locations.
Recent Updates
- EssentialsPE support and more API stuff! Sep 1, 2015
- More bug fixes Jul 7, 2015
- Bug fixes Jun 24, 2015
Advertisement