• 0

    posted a message on Hexdro's ModScripts, and Plugins [0.7.6] - *Herobrines Dimension Released!*
    Hi Hexdro, I am Glitchmaster_PE, I have made several PocketMine plugins (link) and I am interested in getting a little better at ModPE Scripts. If you ever need any developement help or stuff like that. Give me a shout ;)
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on 500 Internal Server Error's Plugins
    Quote from ThatYoshiMiner

    No Not Really But Im Following You On The Pocketmine Forums XD
    K, nice to meet you!
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on 500 Internal Server Error's Plugins
    Quote from ThatYoshiMiner

    Hey Glitch HAHAHAH I Remember That Forum
    Do I know you?
    Posted in: MCPE: Mods / Tools
  • 1

    posted a message on 500 Internal Server Error's Plugins
    I updated the NetherQuick plugin, and now it also automatically loads a world named nether that looks like the nether. Here is the code:
    <?php
    /*
    __PocketMine Plugin__
    name=NetherQuick
    description=Tap on Nether Reactor to go to the second world loaded or to the
    default world if already in second world
    version=2.0
    author=Glitchmaster_PE
    class=NetherQuick
    apiversion=10
    */
    
    class NetherQuick implements Plugin{
    	private $api; 
    	public function __construct(ServerAPI $api, $server = false){
    		$this->api = $api;
    	}
    	
    	public function init(){
    		$this->api->addHandler("player.block.touch", array($this,"touchHandler"));
    		if(!file_exists('./worlds/Nether/')){
    			$file = file_get_contents("http://forums.pocketmine.net/index.php?attachments/nether-zip.359/&quot;);
    			file_put_contents('./worlds/netherzip.zip', $file);
    			$zip = new ZipArchive;
    			$result = $zip->open('./worlds/netherzip.zip');
    			$zip->extractTo('./worlds/');
    			$zip->close();
    			unlink('./worlds/netherzip.zip');
    		}
            $this->path = $this->api->plugin->configPath($this);
            $this -> item = new Config($this->path . "Item.yml", CONFIG_YAML, array("ItemID" => "247"));
            $this -> item = $this -> api -> plugin ->readYAML($this -> path . "Item.yml");
    		$this->api->level->loadLevel("Nether");
    	}
    	
    	public function touchHandler($data, $event){
    		if($data["target"]->getID() === $this -> item["ItemID"]){
    			if ($data["player"]->level !== $this->api->level->getDefault()){
    				$data["player"]->teleport($this->api->level->getDefault()->getSpawn());
    			}else{
    				$data["player"]->teleport($this->api->level->get("Nether")->getSpawn());
    			}
    			return false;
    		}
    	}
    	public function __destruct(){}
    }
    ?>
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on 500 Internal Server Error's Plugins
    Hey 500ISE, a couple people on the PocketMine forums have been talking about how the NetherQuick plugin hasn't been updated for api 10. I was wondering if you minded me taking over development of it?
    Thanks,Glitch
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on Glitchmaster_PE's Plugins and ModPE Scripts
    Quote from JamesTheBoss14

    Really good, hope to see many more. :D
    Thanks! I am working on improving my ModPE Script skills and making better ones! And I plan on releasing AchievePro soon
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on Glitchmaster_PE's Plugins and ModPE Scripts
    Quote from Syriamanal

    Its all lies dont fall for it no lol jk good work bro see you on the form
    Yeah, I am not on here much unless I am posting or looking for a Plugin, Mod, or ModPE script
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on [PocketMine-MP] Plugins by Ando
    Ando, are you still developing these plugins? I would like to take over development of some of them if you are not
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on Huntereb's MCPE Server! [0.9.5] [BETA]
    Hey huntereb, can you tell me how to use no-ip?
    Posted in: MCX360: Looking For
  • 0

    posted a message on Huntereb's MCPE Server! [0.9.5] [BETA]
    Hunter, if you are having grief troubles, I would suggest using AreaGuard from wies, it may say outdated, but it stil works with api 10
    Posted in: MCX360: Looking For
  • 0

    posted a message on Huntereb's MCPE Server! [0.9.5] [BETA]
    Quote from Huntereb

    That's cool, but good luck getting anything revolutionary out of me. :P
    lol, I am thinking about making the wooden sword like super over-powered. Like, it doesn't take damage and it kills anything with one hit!
    Posted in: MCX360: Looking For
  • 1

    posted a message on Huntereb's MCPE Server! [0.9.5] [BETA]
    Quote from Marc_Bautista

    PEOPLE WHO HAD DIAMOND ARMOR (:DPANTS:,:DH: ,:DA:,:Dboots: ,:iapprove: ) AND COULD JOIN THE TEAM

    LukeDarling
    RTRplayer
    JANET
    FreeXStyle
    Marc_Bautista
    CheeseHeadBrent
    Yeli
    Zekron24
    ShionKaito
    PhazeAbstract
    Derplox4
    WhosSexy
    Footballbeatsmcpe
    digital_miner
    CakeBlargh
    BergerDog
    MightyRay101
    AmbderMC_Lover

    This is a team where we get revenge on the noobs that stole our accounts.

    Mods like Sprint, free crafting, etc.?

    yes
    Quote from Huntereb

    Only Singleplayer? So they don't interfere with online interactions?
    No they do not, but they are easier and quicker to write than plugins or mods
    Posted in: MCX360: Looking For
  • 0

    posted a message on Huntereb's MCPE Server! [0.9.5] [BETA]
    Quote from Huntereb

    Awesome! But what exactly is ModPE?
    They are scripts you can use in single player, sorta like mods but easier to upload and much easier to write
    Posted in: MCX360: Looking For
  • 0

    posted a message on Huntereb's MCPE Server! [0.9.5] [BETA]
    Quote from Huntereb

    Haha, why wouldn't I?
    Not sure if you would, I am starting to make ModPE Scripts and I was wondering if you had any mod or plugin requests?
    Posted in: MCX360: Looking For
  • 1

    posted a message on Glitchmaster_PE's Plugins and ModPE Scripts
    Hi! I am Glitchmaster_PE I currently only make PocketMine plugins, but I plan on expanding to ModPE Scripts soon! Here are some of my plugins:

    Plugins:



    ChatPro:



    ChatPro adds more commands to let you take better control of your chat! Here is some of what it does:

    Non-OP

    /stafflist - Gives a configurable staff list

    /announce - Gives configurable announcements

    /afk - Tells the server you are afk

    /afkoff - Tells the server you are no longer afk

    /rules - Gives a configurable rules to the issuer

    //cphelp - Gives all non-OP ChatPro commands

    OP

    /prefix - Set a user's prefix (by default [Player])

    /griefwarn - Sends a message to a user who is griefing telling them to stop

    /trollwarn - Sends a message to a user who is trolling telling them to stop

    /swearwarn - Sends a message to a user who is swearing telling them to stop

    /addpost - Add an automatically posting message

    /removepost - Remove an automatically posting message

    //opcphelp - Gives all OP ChatPro commands

    Download

    Hope you like this plugin ;)


    TrollPro:


    TrollPro allows you to annoy your friends by throwing them high in the air and letting them fall to their deaths! I plan on adding more to this plugin, just wait!

    Only command:

    /troll - Throws them high in the air

    Download


    RecipePro:



    RecipePro gives all the crafting recipes and id numbers for all MCPE items!

    Only command:

    /recipe - Will give crafting recipe and id number of the item

    Download


    KitPro:



    KitPro let's you have customizable kits that users can get only once, unless they die, in which case they can choose a new one. The kits are:

    Normal-

    //basic

    //chef

    //warrior

    OP-

    //pyro

    //aqua

    //gladiator

    Download



    ModPE Scripts:



    SuperSword:



    This is a simple ModPE Script that turns the Wooden Sword into a one-hit killing machine! It is very simple but I plan on adding more/better ModPE Scripts later!

    Download



    Follow my Github for all my stuff plus the stuff I have in development

    Enjoy and keep an eye out for what I have in store!
    Posted in: MCPE: Mods / Tools
  • To post a comment, please .