Hi, I have been wondering about this for my mod. Is it possible to draw items/block textures from another place APART from the items_opaque.png? Kind of like this I guess
Hey, my little cousin is 5 and likes minecraft PE.....the only problem is that she has a nabi.....i dont know why but she can get the app but enabling the mods are giving her problems. it prings up a script of.....letters and numbers i dont know how to fix this or how to enable them on the nabi since a have an htc myself......can anyone help me, or make mods able to be enabled on nabi"s in the next block launcher update? if so thanks
Hey, my little cousin is 5 and likes minecraft PE.....the only problem is that she has a nabi.....i dont know why but she can get the app but enabling the mods are giving her problems. it prings up a script of.....letters and numbers i dont know how to fix this or how to enable them on the nabi since a have an htc myself......can anyone help me, or make mods able to be enabled on nabi"s in the next block launcher update? if so thanks
What mod were you trying to load? and can you post the error here?
Rollback Post to RevisionRollBack
Please give me an Internet. Please. Pretty Please with sprinkles on top
I have a twitter!! Follow me for regular updates on my mods! https://twitter.com/DamienMiller11
So the Cool Armor Chestplate will have durability 100 (same thing as using Item.setMaxDamage) and will protect 5 half hearts of being losed when you take damage.
I don't know why it is so hard to understand unique IDs. I made a name tag mod with it back when they were released. Unique IDs give entities a unique ID so they can be recognized after a world is left and re-entered. Here is a way to use them:
var entity, id;
function attackHook(attacker, victim) {
entity = victim;
}
function leaveGame() {
if(entity) {
var file = new java.io.File(android.os.Environment.getExternalStorageDirectory().getAbsolutePath() + "/games/com.mojang/minecraftworlds/" + Level.getWorldDir() + "/");
file.createNewFile();
var outWrite = new java.io.OutputStreamWriter(new java.io.FileOutputStream(file));
outWrite.append(Entity.getUniqueId(entity));
outWrite.close();
}
}
function newLevel() {
var file = new java.io.File(android.os.Environment.getExternalStorageDirectory().getAbsolutePath() + "/games/com.mojang/minecraftworlds/" + Level.getWorldDir() + "/");
if(file.exists()) id = new java.io.BufferedReader(new java.io.FileReader(file)).readLine();
}
function entityAddedHook(ent) {
if(Entity.getUniqueId(ent) == id) {
id = null;
entity = ent;
}
}
You can use it if you want, and if you want to do it with multiple entities, use loops and arrays.
I cant really understand what the code was doing so I imported it into bl just see it work. Unfortunately it gave this error when going into a world and I cant figure out what it means (yolo is the name of the world I used):
Error occurred in script: unique id.js
org.mozilla.javascript.WrappedException: Wrapped java.io.FileNotFoundException: /storage/sdcard0/games/com.mojang/minecraftworlds/yolo: open failed: EISDIR (Is a directory) (unique id.js#18)
at org.mozilla.javascript.Context.throwAsScriptRuntimeEx(Unknown Source)
at org.mozilla.javascript.MemberBox.newInstance(Unknown Source)
at org.mozilla.javascript.NativeJavaClass.constructInternal(Unknown Source)
at org.mozilla.javascript.NativeJavaClass.constructSpecific(Unknown Source)
at org.mozilla.javascript.NativeJavaClass.construct(Unknown Source)
at org.mozilla.javascript.Interpreter.interpretLoop(Unknown Source)
at script.newLevel(unique id.js:18)
at org.mozilla.javascript.Interpreter.interpret(Unknown Source)
at org.mozilla.javascript.InterpretedFunction.call(Unknown Source)
at org.mozilla.javascript.ContextFactory.doTopCall(Unknown Source)
at org.mozilla.javascript.ScriptRuntime.doTopCall(Unknown Source)
at org.mozilla.javascript.InterpretedFunction.call(Unknown Source)
at net.zhuoweizhang.mcpelauncher.ScriptManager.callScriptMethod(ScriptManager.java:235)
at net.zhuoweizhang.mcpelauncher.ScriptManager.setLevelCallback(ScriptManager.java:267)
at dalvik.system.NativeStart.run(Native Method)
Caused by: java.io.FileNotFoundException: /storage/sdcard0/games/com.mojang/minecraftworlds/yolo: open failed: EISDIR (Is a directory)
at libcore.io.IoBridge.open(IoBridge.java:416)
at java.io.FileInputStream.<init>(FileInputStream.java:78)
at java.io.FileReader.<init>(FileReader.java:42)
at java.lang.reflect.Constructor.constructNative(Native Method)
at java.lang.reflect.Constructor.newInstance(Constructor.java:417)
... 13 more
Caused by: libcore.io.ErrnoException: open failed: EISDIR (Is a directory)
at libcore.io.IoBridge.open(IoBridge.java:405)
... 17 more
I get this weird texture glitch to where sticks pickaxes and stuff like the are invisible in my inventory but i can still use them so what is going on i even deleted all my mods and it still did tht how do i fix
I get this weird texture glitch to where sticks pickaxes and stuff like the are invisible in my inventory but i can still use them so what is going on i even deleted all my mods and it still did tht how do i fix
Its an mcpe glitch. In mine the items and blocks exchange textures. Now I do not know whether my stick is just a stick or a pickaxe. It appears correctly in the hand.
Please give me an Internet. Please. Pretty Please with sprinkles on top
I have a twitter!! Follow me for regular updates on my mods! https://twitter.com/DamienMiller11
I mean to use xbox or ps3 controller to play PE in BL.
Now THAT would be cool
Rollback Post to RevisionRollBack
Please give me an Internet. Please. Pretty Please with sprinkles on top
I have a twitter!! Follow me for regular updates on my mods! https://twitter.com/DamienMiller11
To post a comment, please login or register a new account.
I dont think so. To create custom textures I edit the items.meta and Terrain.meta. its not easy but it works.
Want Custom ModPE functions? Look here -> WolfyPE ModPE functions
Cool could you put up some tutorial of how to do it. Or could you pm me a tutorial. Thnx in advance.
I have a twitter!! Follow me for regular updates on my mods!
https://twitter.com/DamienMiller11
I have the same problem =(
http://bdcraft.net
Example:
So the Cool Armor Chestplate will have durability 100 (same thing as using Item.setMaxDamage) and will protect 5 half hearts of being losed when you take damage.
Game dev and Minecraft modder.
Twitter: @jv110br_
Game dev and Minecraft modder.
Twitter: @jv110br_
Sorry instead of pressing Edit I pressed Quote, and then I edited this other post to ",.,.,"Can someone teach me how to do a patch? thanks
Game dev and Minecraft modder.
Twitter: @jv110br_
I cant really understand what the code was doing so I imported it into bl just see it work. Unfortunately it gave this error when going into a world and I cant figure out what it means (yolo is the name of the world I used):
Error occurred in script: unique id.js
org.mozilla.javascript.WrappedException: Wrapped java.io.FileNotFoundException: /storage/sdcard0/games/com.mojang/minecraftworlds/yolo: open failed: EISDIR (Is a directory) (unique id.js#18)
at org.mozilla.javascript.Context.throwAsScriptRuntimeEx(Unknown Source)
at org.mozilla.javascript.MemberBox.newInstance(Unknown Source)
at org.mozilla.javascript.NativeJavaClass.constructInternal(Unknown Source)
at org.mozilla.javascript.NativeJavaClass.constructSpecific(Unknown Source)
at org.mozilla.javascript.NativeJavaClass.construct(Unknown Source)
at org.mozilla.javascript.Interpreter.interpretLoop(Unknown Source)
at script.newLevel(unique id.js:18)
at org.mozilla.javascript.Interpreter.interpret(Unknown Source)
at org.mozilla.javascript.InterpretedFunction.call(Unknown Source)
at org.mozilla.javascript.ContextFactory.doTopCall(Unknown Source)
at org.mozilla.javascript.ScriptRuntime.doTopCall(Unknown Source)
at org.mozilla.javascript.InterpretedFunction.call(Unknown Source)
at net.zhuoweizhang.mcpelauncher.ScriptManager.callScriptMethod(ScriptManager.java:235)
at net.zhuoweizhang.mcpelauncher.ScriptManager.setLevelCallback(ScriptManager.java:267)
at dalvik.system.NativeStart.run(Native Method)
Caused by: java.io.FileNotFoundException: /storage/sdcard0/games/com.mojang/minecraftworlds/yolo: open failed: EISDIR (Is a directory)
at libcore.io.IoBridge.open(IoBridge.java:416)
at java.io.FileInputStream.<init>(FileInputStream.java:78)
at java.io.FileReader.<init>(FileReader.java:42)
at java.lang.reflect.Constructor.constructNative(Native Method)
at java.lang.reflect.Constructor.newInstance(Constructor.java:417)
... 13 more
Caused by: libcore.io.ErrnoException: open failed: EISDIR (Is a directory)
at libcore.io.IoBridge.open(IoBridge.java:405)
... 17 more
Link:
http://www.minecraft.../#entry29816329
http://bdcraft.net
Many a hook like:
function blockDataValue(BlockId){ }Want to learn all about game design and game programming? Visit firenibbler.com to learn all about it
Want to learn all about game design and game programming? Visit firenibbler.com to learn all about it
It is already possible. In useItem if the block is xxx pop up a gui.
Its an mcpe glitch. In mine the items and blocks exchange textures. Now I do not know whether my stick is just a stick or a pickaxe. It appears correctly in the hand.
All the other things I've made for Minecraft: desno365.net/minecraft/
Follow me on Twitter: @desno365
Visit my website: desno365.net
I have a twitter!! Follow me for regular updates on my mods!
https://twitter.com/DamienMiller11
I mean to use xbox or ps3 controller to play PE in BL.
Now THAT would be cool
I have a twitter!! Follow me for regular updates on my mods!
https://twitter.com/DamienMiller11