Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muqsit/portablecrafting
/workbench plugin for PocketMine-MP
https://github.com/muqsit/portablecrafting
invmenu plugin pmmp pocketmine-mp portable
Last synced: 22 days ago
JSON representation
/workbench plugin for PocketMine-MP
- Host: GitHub
- URL: https://github.com/muqsit/portablecrafting
- Owner: Muqsit
- License: mit
- Created: 2021-02-05T10:54:14.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-06-01T15:21:13.000Z (over 1 year ago)
- Last Synced: 2024-10-04T16:49:31.942Z (about 1 month ago)
- Topics: invmenu, plugin, pmmp, pocketmine-mp, portable
- Language: PHP
- Homepage: https://poggit.pmmp.io/p/PortableCrafting
- Size: 43.9 KB
- Stars: 11
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PortableCrafting
| Command | Permission | Default |
| --- | --- | --- |
| `/workbench` | `portablecrafting.command.workbench` | everyone |[![](https://poggit.pmmp.io/shield.state/PortableCrafting)](https://poggit.pmmp.io/p/PortableCrafting)
## API
### Send crafting table window to a player
```php
/** @var Player $player */
PortableCrafting::WORKBENCH()->send($player);
```### Handle opening portable crafting table window
```php
public functon onOpenWorkbench(OpenWorkbenchPortableCraftingEvent $event) : void{
$event->getPlayer()->sendMessage("You can't launch /workbench in this region.");
$event->cancel();
}
```