Nevermind. I found the error. I barely looked at the error last time. Apparently you did var Cave Spider=null; A variable can't be composed of two separate word forms. This would work:
Nevermind. I found the error. I barely looked at the error last time. Apparently you did var Cave Spider=null; A variable can't be composed of two separate word forms. This would work:
var caveSpider = null;
Thanks! I shouldent have rage quitted and delete everything....
I quit ModPE. Too simple and basic. I only make addons now. I didn't release enchantments due to copyright. "Someone" already stole some code from DroidControl which was pretty simple. My Enchantments mod is extremely advanced and there is not way to obfuscate it. (It can be deobfuscated) Anyway, ModPE sucks, I forgot most of it, this should be right:
ModPE.setItem(505,"dye_powder", 4, "Dog Blue");
function useItem(x,y,z,itemId,blockId,side){
if(itemId==505){
spawnTamedBlue(x,y,z);
}
}
function spawnTamedBlue(x,y,z){
wolf_tamed = Level.spawnMob(x,y,z,14,"mob/tamed_blue.png");
Entity.setRenderType(wolf_tamed, 10);
}
I quit ModPE. Too simple and basic. I only make addons now. I didn't release enchantments due to copyright. "Someone" already stole some code from DroidControl which was pretty simple. My Enchantments mod is extremely advanced and there is not way to obfuscate it. (It can be deobfuscated) Anyway, ModPE sucks, I forgot most of it, this should be right:
ModPE.setItem(505,"dye_powder", 4, "Dog Blue");
function useItem(x,y,z,itemId,blockId,side){
if(itemId==505){
spawnTamedBlue(x,y,z);
}
}
function spawnTamedBlue(x,y,z){
wolf_tamed = Level.spawnMob(x,y,z,14,"mob/tamed_blue.png");
Entity.setRenderType(wolf_tamed, 10);
}
Want GUI Templates? Done!
https://github.com/BeATz-UnKNoWN/ModPE_Scripts/wiki/ModPE-Script-Templates
P.S. Feel free to follow me so you know when I post "awesome" content and make the MCForums a brighter place (totally).
If you need to contact me you can either shoot a Kik message to beatz_unknown or send an email to [email protected]
Want GUI Templates? Done!
https://github.com/BeATz-UnKNoWN/ModPE_Scripts/wiki/ModPE-Script-Templates
P.S. Feel free to follow me so you know when I post "awesome" content and make the MCForums a brighter place (totally).
If you need to contact me you can either shoot a Kik message to beatz_unknown or send an email to [email protected]
Thanks! I shouldent have rage quitted and delete everything....
ModPE.setItem(505,"dye_powder", 4, "Dog Blue"); function useItem(x,y,z,itemId,blockId,side){ if(itemId==505){ spawnTamedBlue(x,y,z); } } function spawnTamedBlue(x,y,z){ wolf_tamed = Level.spawnMob(x,y,z,14,"mob/tamed_blue.png"); Entity.setRenderType(wolf_tamed, 10); }Want GUI Templates? Done!
https://github.com/BeATz-UnKNoWN/ModPE_Scripts/wiki/ModPE-Script-Templates
P.S. Feel free to follow me so you know when I post "awesome" content and make the MCForums a brighter place (totally).
If you need to contact me you can either shoot a Kik message to beatz_unknown or send an email to [email protected]
Okay.. thanks by the way