-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
root
committed
Jul 12, 2016
1 parent
25c3da3
commit 0772bd5
Showing
4 changed files
with
39 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
# FastTransfer | ||
Edited for PocketMine-MP 1.6 version of FastTransfer plugin. | ||
# SynapseTransfer | ||
Edit of FastTransfer, for working with [Synapse](https://github.com/iTXTech/Synapse) by [iTXTech](https://github.com/iTXTech). [Original plugin](https://github.com/shoghicp/FastTransfer) made by [shoghicp](https://github.com/shoghicp). | ||
# Commands | ||
```/transfer [player] <server>``` - Transfer SynapsePlayer to other server. Servers can be setting in config.yml. | ||
# Permissions | ||
```synapsetransfer.command.transfer``` - Allow to use ```/transfer``` command. Default for op. | ||
# API | ||
```SynapseTransfer::transfer(Player $player, string $server, string $message)``` - Transfer SynapsePlayer to other SynapseClient. Example: ```$this->getServer()->getPluginManager()->getPlugin("SynapseTransfer")->transfer($player, "hub", ""); ``` | ||
# Phar | ||
Coming soon... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
name: FastTransfer | ||
version: 1.0.3 | ||
name: SynapseTransfer | ||
version: 1.0.0 | ||
api: 1.13.0 | ||
main: shoghicp\FastTransfer\FastTransfer | ||
main: MrGenga\SynapseTransfer\SynapseTransfer | ||
load: STARTUP | ||
author: shoghicp | ||
website: "https://github.com/shoghicp/FastTransfer" | ||
description: "Transfer vanilla Minecraft: PE clients to another server" | ||
author: MrGenga | ||
website: "https://github.com/MrGenga/SynapseTransfer" | ||
description: "Transfer Minecraft: PE clients connected by Synapse to another server" | ||
commands: | ||
transfer: | ||
permission: fasttransfer.command.transfer | ||
usage: "/transfer [player] <address> <port>" | ||
permission: synapsetransfer.command.transfer | ||
usage: "/transfer [player] <server>" | ||
permissions: | ||
fasttransfer.command.transfer: | ||
synapsetransfer.command.transfer: | ||
description: "Allows to transfer players to another server" | ||
default: op |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters