Want some more 'splosions?
Hit a Nether Core Reactor with Flint n' Steel to have 'em
Link: https://db.tt/wiTkGSNG
Layman Mod Maker: Beta 1.0
Any of you fellow Minecrafters out there want to make a new item or make a simple mod?
Well here's what I think will be the perfect thing for you!
In Beta 1.0:
Complete re- write everything changed!
Here is the code!
function procCmd(cmd)
{
var p = cmd.split(' ');
if(p[0]=="give")
{
Player.addItemInventory(parseInt(p[2]),parseInt(p[1]));
clientMessage("[LMM] Spawned " + parseInt(p[1]) + " of " + parseInt(p[2]) + "!");
}
else if(p[0]=="makeItem")
{
ModPE.setItem(parseInt(p[1]), parseInt(p[2]), parseInt(p[3]), p[4]);
clientMessage("[LMM] Created a new item named " + (p[4]) + " and its item ID is " + parseInt(p[1]) + "!");
}
else if(p[0]=="makeFoodItem")
{
ModPE.setFoodItem(parseInt(p[1]), parseInt(p[2]), parseInt(p[3]), parseInt(p[4]), p[5]);
clientMessage ("[LMM] Created a new food item and its name is " + (p[5]) + " and its item ID is " + parseInt(p[1]) + " and it heals " + parseInt(p[4]) +" half- hearts!");
}
}
SaveSD
Ever want to save something to your SD card without going out of MCPE? Well do /save {name of file} {what file contains}
function procCmd(cmd)
{
var p = cmd.split(' ');
if(p[0]=="save")
var newFile = new java.io.File(android.os.Environment.getExternalStorageDirectory(), p[1]);
try{
var fos = new java.io.FileOutputStream(newFile);
fos.write(new java.lang.String(p[2]).getBytes());
fos.flush();
fos.close();
clientMessage("[Saving Process] Success, and saved file as "+p[1]+" and has "+p[2]+" printed in it");
}catch(err){
clientMessage("[Saving Process] Failed with because of "+err+" ");
}
}
Elemental Wands! Version 2.0
Highly in testing, report any bugs. To get the wand use a inventory editor or ModPE script that has a /give command. The Item ID is 505 so this is not compatable with The Elements PE. To alternate between wands tap a Diamond block. The wand of Magical Essence raises a block up one block and the Wand of Magical Whirlwind shoots the block north 2 blocks.
double = some numbers with a decimal point ex: 103.27289
String = a group of letters and numbers ex: "Yomama123" (Requires " at the beginning and the end)
int = integer (self explanatory, but if you dont't know it is any number without a decmal)
boolean = Only true or false
NEWS
Fixed my Dropbox account, added links, except for the mods I havent edited in a while.
Bugs!
MoTnT [Severe - 1] Can not ignite another TnT wothout resetting the script. [Fixing]
InstaLoot [Annoying -1] Sometimes a ghost item will appear in your hand.
Yea, I wanna know as well!
Lead developer of Dragonet!
Check out my game, Adventuria!
Dev of (IMO the best server ever) TwilightGamez!
Sweet mods!
Lead developer of Dragonet!
Check out my game, Adventuria!
Dev of (IMO the best server ever) TwilightGamez!