All Projects → InfinityGamers → HungerGames-UPDATED

InfinityGamers / HungerGames-UPDATED

Licence: other
A HungerGames plugin for PocketMine-MP developed by xBeastMode

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to HungerGames-UPDATED

CommandShop
Players have to pay items or money to use specific commands! A PocketMine plugin.
Stars: ✭ 32 (-28.89%)
Mutual labels:  pocketmine-mp, pocketmine-plugins
MagicSpell
This plugin is remaking.
Stars: ✭ 22 (-51.11%)
Mutual labels:  pocketmine-mp, pocketmine-plugins
BlockSniper
An advanced (brush) world editing plugin for PocketMine-MP
Stars: ✭ 77 (+71.11%)
Mutual labels:  pocketmine-mp, pocketmine-plugins
BuilderTools
🪓 Powerful World Editor plugin for PocketMine servers
Stars: ✭ 74 (+64.44%)
Mutual labels:  pocketmine-mp, pocketmine-plugins
Other-Plugins
A collection of all the plugins which I used to work on but no longer maintain
Stars: ✭ 26 (-42.22%)
Mutual labels:  pocketmine-mp, pocketmine-plugins
SAC
An AntiCheat software for PockeMine-MP made to detect unfair gamplay advantages.
Stars: ✭ 52 (+15.56%)
Mutual labels:  pocketmine-mp, pocketmine-plugins
Volt
A painless web server for PocketMine-MP
Stars: ✭ 24 (-46.67%)
Mutual labels:  pocketmine-mp, pocketmine-plugins
EggWars
EggWars minigame for PocketMine
Stars: ✭ 32 (-28.89%)
Mutual labels:  pocketmine-mp, pocketmine-plugins
Leveryl
An Advanced & Feature Rich Server Software for MC:PE 1.1.x
Stars: ✭ 45 (+0%)
Mutual labels:  pocketmine-mp
libform
It is a virion library that can handle various forms easily.
Stars: ✭ 12 (-73.33%)
Mutual labels:  pocketmine-mp
Synapse
High performance load balance server for Minecraft: Bedrock Edition.
Stars: ✭ 30 (-33.33%)
Mutual labels:  pocketmine-mp
IslandArchitect
An plugin to create custom sky island generators for the SkyBlock plugin
Stars: ✭ 12 (-73.33%)
Mutual labels:  pocketmine-mp
KitUI
Advance AdvancedKits! Select Kits from a form, just do /kit and get kits info and select it if available! For Minecraft Bedrock Edition!
Stars: ✭ 44 (-2.22%)
Mutual labels:  pocketmine-mp
Pocketmine Mp
A server software for Minecraft: Bedrock Edition in PHP
Stars: ✭ 2,594 (+5664.44%)
Mutual labels:  pocketmine-mp
Specter
Super simple debugging for PocketMine.
Stars: ✭ 73 (+62.22%)
Mutual labels:  pocketmine-plugins
AuctionHouse
Feature-packed auction house plugin for PocketMine-MP (pmmp)
Stars: ✭ 31 (-31.11%)
Mutual labels:  pocketmine-mp
SkyBlockUI
Manage your skyblock island in UI!
Stars: ✭ 20 (-55.56%)
Mutual labels:  pocketmine-mp
StatsPE
A statistics plugin for MCPE Servers (Pocketmine-MP)
Stars: ✭ 16 (-64.44%)
Mutual labels:  pocketmine-mp
DungeonPlus
[Plugin] A Plugin support Dungeon API.
Stars: ✭ 14 (-68.89%)
Mutual labels:  pocketmine-mp
RedstoneCircuit
This is the PocketMine plugin that implements the Redstone circuit.
Stars: ✭ 81 (+80%)
Mutual labels:  pocketmine-mp

HungerGames

=============

Chat

BIG NOTE

COMPILING IT WITH pmt.mcpe.me WILL MAKE THE PLUGIN CORRUPTED. DOWNLOAD FROM RELEASES HERE

A HungerGames plugin for PocketMine-MP developed by xBeastMode

#New Features? Yes, of course. You can choose between SkyWars or HungerGames! How? You can make a game with the following command: /hg add

Watch my YouTube video showing bow to setup a game arena: MCPE - HG plugin tutorial updated

When you join a game the plugin will automatically backup the map.

  • Other features: Scripts have been added. I did not make any scripts for it yet, maybe in the future.

#How to setup a join sign?

on the first line set the line to "hg" and on the second line set the line to the name of your game. The sign should now refresh automatically and you'll be able to join.

or... join a game by simply typing: /hg join <game>

#Future updates? I am planning to adding many more features to this plugin, if you wish me to add one, please say it in issues, thank you.

  • For Devs:

This plugin comes with a script loader api. You can use this to access game functions, like when player joins, quits, wins, etc. You do not need to enable it, as it loads itself.

If you wish to create one here's an example code:

Click here to view example:
//Example script:


<?php
class ExampleScript extends \hungergames\api\scripts\HGAPIScript{
    public function __construct(){
        parent::__construct("Script names here", "Versions here 1.0", "Authors here xBeastMode");
    }
    public function onLoad(){
        $this->sendConsoleMessage("Test script loaded!");
    }
}


//All function from this script api are:

/**
     * Creates script config
     *
     * @param $name
     * @param array $values
     * @return Config
     */
    public void function createConfig($name, array $values)
    /**
     * Gets script config
     *
     * @return Config
     */
    public Config function getConfig()
    /**
     * Gets the name of the script
     *
     * @return string
     */
    public string function getName()
    /**
     * Gets the name of the script
     *
     * @return string
     */
    public string function getVersion()
    /**
     * Gets the author of the script
     *
     * @return string
     */
    public string function getAuthor()
    /**
     * disables script
     */
    public void function setDisabled()
    /**
     * enables script
     */
    public void function setEnabled();
    /**
     * returns whether script is enabled or not
     *
     * @return bool
     */
    public bool function isEnabled()
    /**
     * Sends console message
     *
     * @param $message
     */
    public void function sendConsoleMessage($message)
    /**
     * Called when script is loaded
     */
    public function onLoad(){
    //your code here
    }
    /**
     * called when player joins game
     *
     * @param Player $p
     * @param HungerGames $game
     */
    public function onPlayerJoinGame(Player $p, HungerGames $game){
    //your code here
    }
    /**
     * called when player quits game
     *
     * @param Player $p
     * @param HungerGames $game
     */
    public function onPlayerQuitGame(Player $p, HungerGames $game){
    //your code here
    }
    /**
     * Called when player fails to join full game
     *
     * @param Player $p
     * @param HungerGames $game
     */
    public function gameIsFull(Player $p, HungerGames $game){
    //your code here
    }

    /**
     * Called when player is waiting for players
     *
     * @param array $players
     * @param HungerGames $game
     */
    public function whileWaitingForPlayers(array $players, HungerGames $game){
    //your code here
    }
    /**
     * Called when player is waiting for players
     *
     * @param array $players
     * @param HungerGames $game
     */
    public function whileWaitingToStart(array $players, HungerGames $game){
    //your code here
    }
    /**
     * Called when game starts
     *
     * @param array $players
     * @param HungerGames $game
     */
    public function onGameStart(array $players, HungerGames $game){
    //your code here
    }
    /**
     * Called when death match starts
     *
     * @param array $players
     * @param HungerGames $game
     */
    public function onDeathMatchStart(array $players, HungerGames $game){
    //your code here
    }
    /**
     * Called when players wins a game
     *
     * @param Player $p
     * @param HungerGames $game
     */
    public function onPlayerWinGame(Player $p, HungerGames $game){
    //your code here
    }information

Commands:

  • /hg add : adds a new game

    • OP perm: hg.command.add
  • /hg del : deletes a game  * OP perm: hg.command.del

  • /hg min : changes the number of minimum players required to start a game

    • OP perm: hg.command.min
  • /hg max : changes number of maximum players that can enter a game

    • OP perm: hg.command.max
  • /hg level : changes level of game where players are gonna go  * OP perm: hg.command.level

  • /hg ws : sets amount of seconds to wait before game starts  

    • OP perm: hg.command.ws
  • /hg gs : sets amount of second to pass before death match starts

    • OP perm: hg.command.gs
  • /hg addslot : adds new slot to game (positions sets where you are standing)

    • OP perm: hg.command.slot.add
  • /hg delslot : deletes slot from game by name

    • OP perm: hg.command.slot.del
  • /hg lobby : sets the lobby position of a game where you're standing

    • OP perm: hg.command.lobby
  • /hg dm : sets the death match position of a game where you're standing

    • OP perm: hg.command.dm
  • /hg leave : leaves game that you are playing

    • OP perm: none
  • /hg join : join a new game

    • OP perm: none

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].