├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .poggit.yml ├── .travis.yml ├── LICENSE ├── README.md ├── ess.jpg ├── plugin.yml ├── resources ├── Economy.yml ├── Kits.yml ├── Messages.yml └── config.yml └── src └── EssentialsPE ├── BaseFiles ├── BaseAPI.php ├── BaseCommand.php ├── BaseCustomEvent.php ├── BaseEventHandler.php ├── BaseKit.php ├── BaseLocation.php ├── BaseSession.php ├── BaseTask.php └── MessagesAPI.php ├── Commands ├── AFK.php ├── Antioch.php ├── Back.php ├── BigTreeCommand.php ├── BreakCommand.php ├── Broadcast.php ├── Burn.php ├── ClearInventory.php ├── Compass.php ├── Condense.php ├── Depth.php ├── Economy │ ├── Balance.php │ ├── BalanceTop.php │ ├── Eco.php │ ├── Pay.php │ ├── Sell.php │ ├── SetWorth.php │ └── Worth.php ├── EssentialsPE.php ├── Extinguish.php ├── Feed.php ├── Fly.php ├── GetPos.php ├── God.php ├── Hat.php ├── Heal.php ├── Home │ ├── DelHome.php │ ├── Home.php │ └── SetHome.php ├── ItemCommand.php ├── ItemDB.php ├── Jump.php ├── KickAll.php ├── Kit.php ├── Lightning.php ├── More.php ├── Mute.php ├── Near.php ├── Nick.php ├── Nuke.php ├── Override │ ├── BaseOverrideCommand.php │ ├── Gamemode.php │ ├── Kill.php │ └── Msg.php ├── PTime.php ├── Ping.php ├── PowerTool │ ├── PowerTool.php │ └── PowerToolToggle.php ├── PvP.php ├── RealName.php ├── Repair.php ├── Reply.php ├── Seen.php ├── SetSpawn.php ├── Spawn.php ├── Speed.php ├── Sudo.php ├── Suicide.php ├── Teleport │ ├── TPA.php │ ├── TPAHere.php │ ├── TPAccept.php │ ├── TPAll.php │ ├── TPDeny.php │ └── TPHere.php ├── TempBan.php ├── Top.php ├── TreeCommand.php ├── Unlimited.php ├── Vanish.php ├── Warp │ ├── DelWarp.php │ ├── Setwarp.php │ └── Warp.php ├── Whois.php └── World.php ├── EventHandlers ├── OtherEvents.php ├── PlayerEvents.php └── SignEvents.php ├── Events ├── CreateAPIEvent.php ├── PlayerAFKModeChangeEvent.php ├── PlayerFlyModeChangeEvent.php ├── PlayerGodModeChangeEvent.php ├── PlayerMuteEvent.php ├── PlayerNickChangeEvent.php ├── PlayerPvPModeChangeEvent.php ├── PlayerUnlimitedModeChangeEvent.php ├── PlayerVanishEvent.php └── SessionCreateEvent.php ├── Loader.php └── Tasks ├── AFK ├── AFKKickTask.php └── AFKSetterTask.php ├── GeoLocation.php ├── TPRequestTask.php └── Updater ├── AutoFetchCallerTask.php ├── UpdateFetchTask.php └── UpdateInstallTask.php /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/.gitmodules -------------------------------------------------------------------------------- /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/.poggit.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/README.md -------------------------------------------------------------------------------- /ess.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/ess.jpg -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/Economy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/resources/Economy.yml -------------------------------------------------------------------------------- /resources/Kits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/resources/Kits.yml -------------------------------------------------------------------------------- /resources/Messages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/resources/Messages.yml -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/resources/config.yml -------------------------------------------------------------------------------- /src/EssentialsPE/BaseFiles/BaseAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/BaseFiles/BaseAPI.php -------------------------------------------------------------------------------- /src/EssentialsPE/BaseFiles/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/BaseFiles/BaseCommand.php -------------------------------------------------------------------------------- /src/EssentialsPE/BaseFiles/BaseCustomEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/BaseFiles/BaseCustomEvent.php -------------------------------------------------------------------------------- /src/EssentialsPE/BaseFiles/BaseEventHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/BaseFiles/BaseEventHandler.php -------------------------------------------------------------------------------- /src/EssentialsPE/BaseFiles/BaseKit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/BaseFiles/BaseKit.php -------------------------------------------------------------------------------- /src/EssentialsPE/BaseFiles/BaseLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/BaseFiles/BaseLocation.php -------------------------------------------------------------------------------- /src/EssentialsPE/BaseFiles/BaseSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/BaseFiles/BaseSession.php -------------------------------------------------------------------------------- /src/EssentialsPE/BaseFiles/BaseTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/BaseFiles/BaseTask.php -------------------------------------------------------------------------------- /src/EssentialsPE/BaseFiles/MessagesAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/BaseFiles/MessagesAPI.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/AFK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/AFK.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Antioch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Antioch.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Back.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Back.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/BigTreeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/BigTreeCommand.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/BreakCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/BreakCommand.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Broadcast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Broadcast.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Burn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Burn.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/ClearInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/ClearInventory.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Compass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Compass.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Condense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Condense.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Depth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Depth.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Economy/Balance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Economy/Balance.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Economy/BalanceTop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Economy/BalanceTop.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Economy/Eco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Economy/Eco.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Economy/Pay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Economy/Pay.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Economy/Sell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Economy/Sell.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Economy/SetWorth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Economy/SetWorth.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Economy/Worth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Economy/Worth.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/EssentialsPE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/EssentialsPE.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Extinguish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Extinguish.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Feed.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Fly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Fly.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/GetPos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/GetPos.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/God.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/God.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Hat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Hat.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Heal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Heal.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Home/DelHome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Home/DelHome.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Home/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Home/Home.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Home/SetHome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Home/SetHome.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/ItemCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/ItemCommand.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/ItemDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/ItemDB.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Jump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Jump.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/KickAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/KickAll.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Kit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Kit.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Lightning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Lightning.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/More.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/More.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Mute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Mute.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Near.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Near.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Nick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Nick.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Nuke.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Nuke.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Override/BaseOverrideCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Override/BaseOverrideCommand.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Override/Gamemode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Override/Gamemode.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Override/Kill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Override/Kill.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Override/Msg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Override/Msg.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/PTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/PTime.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Ping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Ping.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/PowerTool/PowerTool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/PowerTool/PowerTool.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/PowerTool/PowerToolToggle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/PowerTool/PowerToolToggle.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/PvP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/PvP.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/RealName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/RealName.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Repair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Repair.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Reply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Reply.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Seen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Seen.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/SetSpawn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/SetSpawn.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Spawn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Spawn.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Speed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Speed.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Sudo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Sudo.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Suicide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Suicide.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Teleport/TPA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Teleport/TPA.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Teleport/TPAHere.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Teleport/TPAHere.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Teleport/TPAccept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Teleport/TPAccept.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Teleport/TPAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Teleport/TPAll.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Teleport/TPDeny.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Teleport/TPDeny.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Teleport/TPHere.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Teleport/TPHere.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/TempBan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/TempBan.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Top.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Top.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/TreeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/TreeCommand.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Unlimited.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Unlimited.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Vanish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Vanish.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Warp/DelWarp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Warp/DelWarp.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Warp/Setwarp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Warp/Setwarp.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Warp/Warp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Warp/Warp.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/Whois.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/Whois.php -------------------------------------------------------------------------------- /src/EssentialsPE/Commands/World.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Commands/World.php -------------------------------------------------------------------------------- /src/EssentialsPE/EventHandlers/OtherEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/EventHandlers/OtherEvents.php -------------------------------------------------------------------------------- /src/EssentialsPE/EventHandlers/PlayerEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/EventHandlers/PlayerEvents.php -------------------------------------------------------------------------------- /src/EssentialsPE/EventHandlers/SignEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/EventHandlers/SignEvents.php -------------------------------------------------------------------------------- /src/EssentialsPE/Events/CreateAPIEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Events/CreateAPIEvent.php -------------------------------------------------------------------------------- /src/EssentialsPE/Events/PlayerAFKModeChangeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Events/PlayerAFKModeChangeEvent.php -------------------------------------------------------------------------------- /src/EssentialsPE/Events/PlayerFlyModeChangeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Events/PlayerFlyModeChangeEvent.php -------------------------------------------------------------------------------- /src/EssentialsPE/Events/PlayerGodModeChangeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Events/PlayerGodModeChangeEvent.php -------------------------------------------------------------------------------- /src/EssentialsPE/Events/PlayerMuteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Events/PlayerMuteEvent.php -------------------------------------------------------------------------------- /src/EssentialsPE/Events/PlayerNickChangeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Events/PlayerNickChangeEvent.php -------------------------------------------------------------------------------- /src/EssentialsPE/Events/PlayerPvPModeChangeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Events/PlayerPvPModeChangeEvent.php -------------------------------------------------------------------------------- /src/EssentialsPE/Events/PlayerUnlimitedModeChangeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Events/PlayerUnlimitedModeChangeEvent.php -------------------------------------------------------------------------------- /src/EssentialsPE/Events/PlayerVanishEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Events/PlayerVanishEvent.php -------------------------------------------------------------------------------- /src/EssentialsPE/Events/SessionCreateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Events/SessionCreateEvent.php -------------------------------------------------------------------------------- /src/EssentialsPE/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Loader.php -------------------------------------------------------------------------------- /src/EssentialsPE/Tasks/AFK/AFKKickTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Tasks/AFK/AFKKickTask.php -------------------------------------------------------------------------------- /src/EssentialsPE/Tasks/AFK/AFKSetterTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Tasks/AFK/AFKSetterTask.php -------------------------------------------------------------------------------- /src/EssentialsPE/Tasks/GeoLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Tasks/GeoLocation.php -------------------------------------------------------------------------------- /src/EssentialsPE/Tasks/TPRequestTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Tasks/TPRequestTask.php -------------------------------------------------------------------------------- /src/EssentialsPE/Tasks/Updater/AutoFetchCallerTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Tasks/Updater/AutoFetchCallerTask.php -------------------------------------------------------------------------------- /src/EssentialsPE/Tasks/Updater/UpdateFetchTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Tasks/Updater/UpdateFetchTask.php -------------------------------------------------------------------------------- /src/EssentialsPE/Tasks/Updater/UpdateInstallTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendOfMCPE/EssentialsPE/HEAD/src/EssentialsPE/Tasks/Updater/UpdateInstallTask.php --------------------------------------------------------------------------------