Hi guys I created a more mine arts mod
Hope you like it
Script I'd is 16447
Tap a stick on the ground to get them
Tell me anything that's wrong
Please follow this post
I have created a chest minecart
a golden apple
a minecart chest
Hi guys I created a more mine arts mod
Hope you like it
Script I'd is 16447
Tap a stick on the ground to get them
Error occurred in script: 16447.js
org.mozilla.javascript.EcmaError: ReferenceError: "itemid" is not defined. (16447.js#4)
at org.mozilla.javascript.ScriptRuntime.constructError(Unknown Source)
at org.mozilla.javascript.ScriptRuntime.constructError(Unknown Source)
at org.mozilla.javascript.ScriptRuntime.notFoundError(Unknown Source)
at org.mozilla.javascript.ScriptRuntime.name(Unknown Source)
at org.mozilla.javascript.Interpreter.interpretLoop(Unknown Source)
at script.useItem(16447.js:4)
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:181)
at net.zhuoweizhang.mcpelauncher.ScriptManager.useItemOnCallback(ScriptManager.java:191)
at dalvik.system.NativeStart.run(Native Method)
What's wrong here? Not working, this is what popped up after tapping the ground with a stick
Error occurred in script: 16447.js
org.mozilla.javascript.EcmaError: ReferenceError: "itemid" is not defined. (16447.js#4)
at org.mozilla.javascript.ScriptRuntime.constructError(Unknown Source)
at org.mozilla.javascript.ScriptRuntime.constructError(Unknown Source)
at org.mozilla.javascript.ScriptRuntime.notFoundError(Unknown Source)
at org.mozilla.javascript.ScriptRuntime.name(Unknown Source)
at org.mozilla.javascript.Interpreter.interpretLoop(Unknown Source)
at script.useItem(16447.js:4)
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:181)
at net.zhuoweizhang.mcpelauncher.ScriptManager.useItemOnCallback(ScriptManager.java:191)
at dalvik.system.NativeStart.run(Native Method)
What's wrong here? Not working, this is what popped up after tapping the ground with a stick
He needs to change the "itemid" to itemId... aka put a capitol Ii changed it(fixed) and it doesnt work.
Make sure you follow me on twitter! @DarkDiaMiner IF I post a mod download it and give me a +1 if you appreciate.
Make sure you give me a suggestion at my WIP topic darkPE
Make sure you click on that +1 button if I help you! ---------------->
var ini=false;
function selectLevelHook()
{
if(!ini)
{
//custom item here
ini=true;
}
}
function useItem(x,y,z,itemId,blockId)
{
//use the same as in that fixed js
else if(itemId==customCart&&blockId==track)
{
Level.spawnMob(x,y+1,z,42);
}
}
Hope you like it
Script I'd is 16447
Tap a stick on the ground to get them
Tell me anything that's wrong
Please follow this post
I have created a chest minecart
a golden apple
a minecart chest
Error occurred in script: 16447.js
org.mozilla.javascript.EcmaError: ReferenceError: "itemid" is not defined. (16447.js#4)
at org.mozilla.javascript.ScriptRuntime.constructError(Unknown Source)
at org.mozilla.javascript.ScriptRuntime.constructError(Unknown Source)
at org.mozilla.javascript.ScriptRuntime.notFoundError(Unknown Source)
at org.mozilla.javascript.ScriptRuntime.name(Unknown Source)
at org.mozilla.javascript.Interpreter.interpretLoop(Unknown Source)
at script.useItem(16447.js:4)
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:181)
at net.zhuoweizhang.mcpelauncher.ScriptManager.useItemOnCallback(ScriptManager.java:191)
at dalvik.system.NativeStart.run(Native Method)
What's wrong here? Not working, this is what popped up after tapping the ground with a stick
He needs to change the "itemid" to itemId... aka put a capitol Ii changed it(fixed) and it doesnt work.
Follow @Darth377Apps
Please check out my Twitter account!

I have been working on a few games!
Give me ALL THE INTERNETS!
Caiden "Eihthype" Crawfish
IF I post a mod download it and give me a +1 if you appreciate.
Make sure you give me a suggestion at my WIP topic darkPE
Make sure you click on that +1 button if I help you! ---------------->
Yes you may
Download link(More minecart mod that I fixed):
var ini=false; function selectLevelHook() { if(!ini) { //custom item here ini=true; } } function useItem(x,y,z,itemId,blockId) { //use the same as in that fixed js else if(itemId==customCart&&blockId==track) { Level.spawnMob(x,y+1,z,42); } }Hope this helps!