• 0

    posted a message on You are the Creeper Mod! v1.2
    Suggestions?
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on Help Making Climbing Mod
    Hello,

    I am currently making a mod and one of the key elements in it is to be able to climb ANY block (whenever you walk into the block). I have done the rest of the mod and this is the last thing that needs to be done. If you know how to do this, please tell me, or if you know someone who does, please tell them to post how on this topic.

    Thanks
    Posted in: MCPE: Mod / Tool Help & Requests
  • 0

    posted a message on I would like for some one to make this mod please.
    I don't know about the dual weilding mod... but I believe armor and weapons on mobs (Zombie Pigmen) could be possible.
    Posted in: MCPE: Mod / Tool Help & Requests
  • 0

    posted a message on You are the Creeper Mod! v1.2
    It's up! Download now! Actually works too! :D :D
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on You are the Creeper Mod! v1.2
    Rewrote the code. Version 1.2 should be up soon and works! The only thing is that you take damage from exploding.
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on You are the Creeper Mod! v1.2
    Ah. I think I see whats wrong... I'll try to fix it!
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on You are the Creeper Mod! v1.2
    Quote from Reddigirl

    Couldn't patch it. Everytime I try to patch it BlockLauncher says Error.

    Thanks for the feedback... What does the message say exactly?
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on You are the Creeper Mod! v1.2
    Reserved :D

    NOTE: With version 1.2, the mod will crash you block launcher... PUT MC IN 3rd PERSON TO FIX. Also, explosions won't destroy block, MAKE SURE TO RE-START YOUR BLOCK LAUNCHER AFTER INSTALLING MOD!
    Posted in: MCPE: Mods / Tools
  • 3

    posted a message on You are the Creeper Mod! v1.2
    You are the Creeper! Literally!Become a creeper today! Fool your friends! EXPLODE anytime, anywhere!

    MAKE SURE TO READ THE NEXT POST, AS IT TELLS YOU HOW TO SET UP THE MOD WHEN YOU FIRST START IT!!!

    Screenies:




    Downloads: Changelog:

    1.0 (Beta):
    • You are the creeper! Turns the player model into a creeper!
    • Explode all you want! Adds a button to EXPLODE!
    Download: https://www.dropbox....heCreeperMod.js

    1.2(Alpha)(Latest):
    • Fixed 1st release! Now you can actually use the mod! :D
    Download: http://www.dropbox.....eperMod_v1.2.js

    Make sure to click the button if you liked this mod!

    Suggestions? Just post what it is and I'll see what I can do! :)
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on Help making Character Mod
    Quote from BeATz_UnKNoWN

    You don't need +1's to post. When you're new you have to make ten posts and another post the next day. Then there will be no limit.

    Ok thanks for the info! :D :D
    Posted in: MCPE: Mod / Tool Help & Requests
  • 0

    posted a message on Help making Character Mod
    Thanks for the code! I will start working on the mod a soon as possible!
    I cant think of a good name for the mod... Something like 'Spy Mod' or 'Infiltrator Mod' sound OK?

    Quote from Ario99

    The climbing code must check if there is a block in front of the player and to make it work like this you need to do a little bit of testing with the getentityyaw and setentityyaw or something like that i can post a code detecting the player's rotation as soon as i figure it out myself but use the if or switch method i am would be happy to give you a link to tutorials that show you how to use these but anyways if you use one of those you could make the mod in possibly under 100 lines if anyone thinks i am currently giving false info rethink that thought.

    Any idea what the code would look like?
    Posted in: MCPE: Mod / Tool Help & Requests
  • 0

    posted a message on Help making Character Mod
    Actually, the riding script where you glide and can climb any block is 500ISE's...

    Don't know if riding defaults to gliding and climbing but...
    function attackHook(attacker, entity){
        if(riding && compareMobs(entity, ridingAnimal)) { rideAnimal(attacker, entity); riding = false; preventDefault(); }
        else if(ride){ rideAnimal(attacker, entity); riding = true; ridingAnimal = entity; clientMessage(sStopRiding); ride = false; preventDefault(); }
    }
    YES!!! I can explode now!!! :D :D
    Quote from darkdiamondminer

    Also the explode button is possible :D Heres the code
    var GUI;
    var ctx = com.mojang.minecraftpe.MainActivity.currentMainActivity.get();
    
    function newLevel()
    {
    ctx.runOnUiThread(new java.lang.Runnable({
    run: function(){
    try{
    GUI = new android.widget.PopupWindow();
    var layout = new android.widget.LinearLayout(ctx);
    var btn = new android.widget.Button(ctx);
    
    btn.setText("Explode");
    
    layout.setOrientation(android.widget.LinearLayout.VERTICAL);
    layout.addView(btn);
    
    
    GUI.setContentView(layout);
    GUI.setHeight(android.widget.LinearLayout.LayoutParams.WRAP_CONTENT);
    GUI.setWidth(android.widget.LinearLayout.LayoutParams.WRAP_CONTENT);
    GUI.showAtLocation(ctx.getWindow().getDecorView(), android.view.Gravity.RIGHT | android.view.Gravity.BOTTOM, 0, 0);
    GUI.setBackgroundDrawable(new android.graphics.drawable.ColorDrawable(android.graphics.Color.RED));
    
    btn.setOnClickListener(new android.view.View.OnClickListener({
    onClick: function(p1){
    explode(getPlayerX(), getPlayerY()-2, getPlayerZ(), 5);
    }
    }));
    }
    }
    catch (err){
    clientMessage("Error: " + err);
    }





    Wouldn't you need a
    function leaveGame() {
    <gui closer code here>
    }

    or else the button will stay there?
    Posted in: MCPE: Mod / Tool Help & Requests
  • 0

    posted a message on Help making Character Mod
    Thanks for the gliding code... And climbing IS possible... I just dont know how to do it... (see TooManyItems v5 -> Ride Animal
    Posted in: MCPE: Mod / Tool Help & Requests
  • 1

    posted a message on Help making Character Mod
    Hey guys, I have recently started modding Minecraft PE and I need some help. I am creating a mod where you can climb any thing(like a spider), float down(like a chicken), add an 'explode' button(but you don't take any damage), and fit under 1 block. I have made some basic stuff before and don't know how to do any of these things... If you do know, or know what can on cannot be done, I would appreciate it. BTW: I am new to Minecraft Forums...
    Posted in: MCPE: Mod / Tool Help & Requests
  • To post a comment, please .