• 0

    posted a message on Minecraft PE Christian B-J's Android Mods! >>>>>The Closest Pc Mods you will find!<<<<< [Sonic Mod release 1.0!]

    Do you think God stays in heaven because he too fears what he has created?

    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on Quaint Medieval Town (Download added!)
    Can I use this on a new server I'm working on? I will give credit :D
    Posted in: Screenshots
  • 0

    posted a message on Question
    Quote from ThatYoshiMiner

    Say you had a tablet w/ pure Android 4.0+ and could run jbed and had a Bluetooth mouse and keyboard,Could your tablet be capable of running Minecraft?The .jar file could be run by Jbed but would it work?

    i don't know, but that would be AMAZING!!!! BETTER THAN JUICE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    Posted in: MCPE: Mod / Tool Discussion
  • 0

    posted a message on Has the modPE script image bug been fixed? or not....is there a bug with my device?
    http://www.mediafire.com/view/?bq3dd7ys4bcha7e
    Default texture
    (I am holding an item, it just doesnt show the pic)
    Posted in: MCPE: Mod / Tool Help & Requests
  • 0

    posted a message on deadpool mod help needed....
    I am making a deadpool mod, but I really need helpers.

    Please guys let me know in the comments if yall can help.

    Please help. IDEASE help. Modders help.

    Anything helps.

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

    posted a message on Has the modPE script image bug been fixed? or not....is there a bug with my device?
    Hi,
    The image bug for modPE scripts....is it still being worked on or is my device messed up? Please help.
    Posted in: MCPE: Mod / Tool Help & Requests
  • 0

    posted a message on Minecraft PE Christian B-J's Android Mods! >>>>>The Closest Pc Mods you will find!<<<<< [Sonic Mod release 1.0!]
    Quote from DrDarkness

    For the Deadpool mod you can add speed, regeneration, indestructible iron sword, firearms and super strenght-one hit kill, double or triple jump(or just superjump) and maybe teleportation.

    THANK YOU SO MUCH FOR THE IDEAS!
    Posted in: MCPE: Mods / Tools
  • 1

    posted a message on Mcpe Modding Help!?
    Quote from Anton_Encinazz

    Hello, Thx! Because at first I was really confused of this"{" "}" but know I know thank youw very much can I add u as a friend?

    Yes, I don't care
    :)
    If you need me to show you more, let me know.
    Posted in: MCPE: Mod / Tool Help & Requests
  • 0

    posted a message on screen recorder for android that requires no root or PC?
    Quote from LukeOnco

    HOW??? I HAVE SGT210.1 HOW YOU ROOTED YOUR.I WANNA ROOT MY GALAXY TAB 2 10.1

    This guy helped.
    Posted in: MCPE: Mod / Tool Help & Requests
  • 1

    posted a message on Mcpe Modding Help!?
    Now we are combining the code. It will look like this:


    function useItem(x, y, z, itemId, blockId, side)
    {
    if(itemId==280)
    {


    Notice, i put two of {. These tell that its the start of code.
    To end the code we would use }.

    So now we are going to make it....explode! When we tap with a stick, it will explods!
    The code we will use, for explode is this:

    explode(5,5,)

    The reason I use 5 is because the bigger the number the worst the lag. So don't go any farther than 20.
    So now, we will change the code a little more.

    function useItem(x, y, z, itemId, blockId, side)<----function, tells that when I tap
    {<-----start of code
    if(itemId==280)<-----if we use a stick
    {<----another start :P
    explode(5,5);<----explode, radious of 5,
    }<-----code ends
    }<-----code ends

    Congratulations! You made your first mod!
    Modding is really easy, if you have any problems, just let me know.

    Christian BJ
    Posted in: MCPE: Mod / Tool Help & Requests
  • 1

    posted a message on Mcpe Modding Help!?
    Now then....FOR THE FUN PART!

    Open up Droidedit for your android phone/tablet.
    Type in the function we reviewed in lesson 1.

    (function useItem(x, y, z, itemId, blockId, side))
    Okay,

    Once you did that, go to this website:
    http://minecraft-ids.grahamedgecombe.com/

    On this site, you will see pictures of all minecraft items, next to the items, you will see numbers. Select the item you want to use for this project. (btw/ by the way, it can be a block too)
    So now we're going to learn a new command.

    YAY!

    this is the code:
    if(itemId==??)

    What this is, is telling what item we want. With this, we can make do things like make things explode when we use a stick.
    So if you used a stick in this case, the number/ID would be 280, so the command would look like this:

    if(itemId==280)

    Simple right?
    Posted in: MCPE: Mod / Tool Help & Requests
  • 1

    posted a message on Mcpe Modding Help!?
    Hi,

    I see you want to make mods. It gets simple once you have everything in your head.
    I can help you ^_^ but this is going to take some time to learn.

    But anyways, lets start off with lesson 1
    ---------------------------------------
    Lesson 1: functions
    ---------------------------------------
    The first thing that I ever learned about modding was the functions. Very very very important. What functions do is tell what the code will do.

    function useItem(x, y, z, itemId, blockId, side) == a function

    Now your probably wondering....what the heck does thos do?????
    This function tells if the player touches a block.

    So...if you say this to a computer....he'll think..."If the player touches a block---"


    I know all this might seem a little strange, but you'll learn (eventually)

    So...remember...
    function useItem(x, y, z, itemId, blockId, side) == if the player touches the block
    Now thats only one command, we still have lots and lots and lots of commands....


    -----------------------------
    Lesson 2 Apps
    -----------------------------

    There are a few apps you will need before beginning to mod:

    1. DroidEdit Free (On Google Play App Store) (free)
    2.Blocklauncher Pro/free (On Google Play Store) (I recommend Pro) (like.....$2.99)

    -----------------------------
    Lesson 3: Completing a sentence
    -----------------------------
    Posted in: MCPE: Mod / Tool Help & Requests
  • 0

    posted a message on modpe sound?
    Hi,
    What you are trying to do is possible, but not your very own sound. You have to use the in-game sounds. So example, if you wanted to make a certain item play a sound of the player getting hurt, you would do this code:

    function useItem(x, y, z, itemId, blockId, side)
    {
    if(itemId==??)
    Level.playSound(getPlayerX(), getPlayerY(), getPlayerZ(), "random.hurt", 100, 30);
    }

    Its that simple. If you need a list of the sound commands, let me know.

    Christian BJ~
    Posted in: MCPE: Mod / Tool Help & Requests
  • 1

    posted a message on MCPE[Mods Allowed] BETTER SPAWNPOINT! silent_NoB_saprk OPPED! (ANDROID & IOS)Status: No Longer Telling
    Quote from Noverre8484

    Hi sonicmancool sorry to interupt u but pls disable the /stop command for opped people cause earlier i wanted to try all of the commands then i came a cross the /stop command and i tried it then the server stopped!

    So please disable the /stop command for opped people, like me
    (Please forgive me i didnt mean it. Please dont un-op me pls?)

    Guys, friends good awesome people,

    I have bad news, as sad as I am to break the news, the server will be offline PERMANENTLY...

    I am rrrreeeeeaaaaaaalllllllyyyyyyy sorry, but I just can't take the work any more. People are disobeying my rules, ruining minigames, and I am just not in a mood to deal with it anymore. So I am closing the server. Please forgive me, and please forgive me.

    Christian BJ
    Posted in: MCPE: Servers
  • 0

    posted a message on How to add custom blocks witn ModPE?!?! Please need help. ANDROID.
    They just added a command, but I dont know how it works......
    Posted in: MCPE: Mod / Tool Help & Requests
  • To post a comment, please .