All Projects → pmessentials → PMEssentials

pmessentials / PMEssentials

Licence: GPL-2.0 license
A collection of essential PMMP commands, features and more. Heavily inspired by Essentials

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to PMEssentials

BurgerCustomArmor
Create Custom Armor Sets with several abilities!
Stars: ✭ 25 (+92.31%)
Mutual labels:  pocketmine, pmmp
RedstoneCircuit
This is the PocketMine plugin that implements the Redstone circuit.
Stars: ✭ 81 (+523.08%)
Mutual labels:  pocketmine, pmmp
VirionTools
A handy plugin for developers who wish to compile and inject virions without using Poggit.
Stars: ✭ 17 (+30.77%)
Mutual labels:  pocketmine, pmmp
mcMMO
Port of mcMMO-Dev/mcMMO for PocketMine-MP (API 4.0.0)
Stars: ✭ 25 (+92.31%)
Mutual labels:  pocketmine, pmmp
BurgerSpawners
Pocketmine Plugin implementing Stackable Spawners
Stars: ✭ 32 (+146.15%)
Mutual labels:  pocketmine, pmmp
CosmeticMenu
Fun and Easy-to-Use Pocketmine Cosmetics plugin. (Gadgets, Particles, Trails, etc)
Stars: ✭ 22 (+69.23%)
Mutual labels:  pocketmine, pmmp
AuctionHouse
Feature-packed auction house plugin for PocketMine-MP (pmmp)
Stars: ✭ 31 (+138.46%)
Mutual labels:  pocketmine, pmmp
ProfileUI
Get any player's profile on a Modal Form! MCPE v1.2! PMMP support only!
Stars: ✭ 20 (+53.85%)
Mutual labels:  pocketmine, pmmp
Pocketmine Mp
A server software for Minecraft: Bedrock Edition in PHP
Stars: ✭ 2,594 (+19853.85%)
Mutual labels:  pocketmine, pmmp
SAC
An AntiCheat software for PockeMine-MP made to detect unfair gamplay advantages.
Stars: ✭ 52 (+300%)
Mutual labels:  pocketmine, pmmp
NpcDialog
🗽 PocketMine-MP virion to add dialogs to entities easily
Stars: ✭ 55 (+323.08%)
Mutual labels:  pocketmine, pmmp
InvSee
A PocketMine-MP plugin that lets you view and modify offline and online players' inventories in real-time!
Stars: ✭ 19 (+46.15%)
Mutual labels:  pocketmine, pmmp
IslandArchitect
An plugin to create custom sky island generators for the SkyBlock plugin
Stars: ✭ 12 (-7.69%)
Mutual labels:  pocketmine, pmmp
Pathfinding
A pmmp virion (library) for pathfinding using A*
Stars: ✭ 36 (+176.92%)
Mutual labels:  pocketmine, pmmp
Xakkit
Server Software for Minecraft
Stars: ✭ 27 (+107.69%)
Mutual labels:  pocketmine, pmmp
Emotes
This plugin allows players to use their favorite emotes on the server!
Stars: ✭ 15 (+15.38%)
Mutual labels:  pocketmine, pmmp
BuilderTools
🪓 Powerful World Editor plugin for PocketMine servers
Stars: ✭ 74 (+469.23%)
Mutual labels:  pocketmine, pmmp
MysteryBox
Crate implemention for PocketMine-MP (PMMP)
Stars: ✭ 19 (+46.15%)
Mutual labels:  pocketmine, pmmp
CommandShop
Players have to pay items or money to use specific commands! A PocketMine plugin.
Stars: ✭ 32 (+146.15%)
Mutual labels:  pocketmine, pmmp
Pocketmine-School
A Website To Teach Everything About PocketMine-MP
Stars: ✭ 15 (+15.38%)
Mutual labels:  pocketmine, pmmp

PMEssentials

A collection of essential PMMP commands, features and more. Heavily inspired by Essentials HitCount

This plugin works with AutoCompleteAPI, but it is not required to have this.

Commands:

List of commands:

  • /back
  • /break
  • /broadcast
  • /burn
  • /clearinventory
  • /extinguish
  • /feed
  • /gamemode (custom)
  • /gma
  • /gmc
  • /gms
  • /gmv
  • /god
  • /heal
  • /i
  • /milk
  • /mute
  • /nick
  • /nuke
  • /ping
  • /powertool
  • /realname
  • /size
  • /smite
  • /speed
  • /thru
  • /tpa
  • /tpaccept
  • /tpahere
  • /tpdeny
  • /tphere
  • /tree
  • /usage
  • /vanish
  • /xyz
  • /afk
  • /banall
  • /block
  • /commandspy
  • /crash
  • /delhome
  • /delwarp
  • /home
  • /kick
  • /kickall
  • /reply
  • /server
  • /sethome
  • /setspawn
  • /setwarp
  • /spawn
  • /sudo
  • /top
  • /tp (custom)
  • /tpo
  • /tpohere
  • /warp
  • /warps
  • a ton more...

API:

PMEssentials has an API for developers can tweak a lot of features and improve them. You can access the UserMap to get users and externally enable things like godmode or vanish. The plugin also has quite a few events you can use to for instance modify command behaviour.

If you want to get the API instance, all you need to do is this:

$api = API::getAPI();

You can get the main file too, but you probably won't need it.

Now, let's say you're creating a command and you want it to work on vanished platers. You can use these functions:

//get ALL vanished players
$vplayers = $api->getVanishedPlayers();

//get vanished player from name
$vplayer = $api->getVanishedPlayer("myplayer");

If you want something changed in the API you can always open an issue with the API request template.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].