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!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
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.
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
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.
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:
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....
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.
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.
0
Do you think God stays in heaven because he too fears what he has created?
0
0
i don't know, but that would be AMAZING!!!! BETTER THAN JUICE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
0
Default texture
(I am holding an item, it just doesnt show the pic)
0
Please guys let me know in the comments if yall can help.
Please help. IDEASE help. Modders help.
Anything helps.
Thanks
0
The image bug for modPE scripts....is it still being worked on or is my device messed up? Please help.
0
THANK YOU SO MUCH FOR THE IDEAS!
1
Yes, I don't care
If you need me to show you more, let me know.
0
This guy helped.
1
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
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
1
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?
1
I see you want to make mods. It gets simple once you have everything in your head.
I can help you
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
-----------------------------
0
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~
1
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
0