There should make a trailer for it, I ll do the text
In a world where Steve lost all of his pickaxes. Team EnderMagic strikes with a help.
They say: "Steve, get a stick"
Steve: "wut? Gett aoutta here mann!"
They: "STEVE! Stop being a baby, get a stick!!!!!!!"
Steve: "ok, ok, wow, mean..."
They: "Tap the ground with that stick"
Steve: "HOLY CREEPER! Shine bright like a diamond, damn, thanks guys!"
They: "Thanks! Now remember kids, if your Steve is tired, visit our website at energyforsteve.org
BLING
"just for lulz"
Lol.Where do you people think of this stuff??
Rollback Post to RevisionRollBack
Willing to work on Android apps or multi-platform games, see profile bio for information.
There should make a trailer for it, I ll do the text
In a world where Steve lost all of his pickaxes. Team EnderMagic strikes with a help.
They say: "Steve, get a stick"
Steve: "wut? Gett aoutta here mann!"
They: "STEVE! Stop being a baby, get a stick!!!!!!!"
Steve: "ok, ok, wow, mean..."
They: "Tap the ground with that stick"
Steve: "HOLY CREEPER! Shine bright like a diamond, damn, thanks guys!"
They: "Thanks! Now remember kids, if your Steve is tired, visit our website at energyforsteve.org
BLING
We are making a HUGE modscript that's why we are not makinv mods lately,
It might even be as famous as the elements! Btw qymineASAP and donalddoesMC the elements mod is E.P.I.C.!
We are making a HUGE modscript that's why we are not makinv mods lately,
It might even be as famous as the elements! Btw qymineASAP and donalddoesMC the elements mod is E.P.I.C.!
We are making a HUGE modscript that's why we are not makinv mods lately,
It might even be as famous as the elements! Btw qymineASAP and donalddoesMC the elements mod is E.P.I.C.!
LoL! And yeah even i want to know which mod are you guys making.
Rollback Post to RevisionRollBack
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! ---------------->
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! ---------------->
Super tools is awesome!!!
But how u make mob drop custom items?
I Used This Code :
function deathHook(murderer,victim){
var random = Math.floor((Math.random()*5)+1);
if(random==5){
Level.dropItem(Entity.getX(victim),Entity.getY(victim),Entity.getZ(victim),1,506,1);
}
}
You Can Also Use This To Make A Mob Drop Custom Item Everytime (to not make it random) :
function deathHook(murderer,victim){
Level.dropItem(Entity.getX(victim),Entity.getY(victim),Entity.getZ(victim),1,506,1);
}
You Can Also Use This To Make A Specific Mob Drop An Item :
function deathHook(murderer,victim){
if(Entity.getEntityTypeId(victim)==32){//if the victim is a zombie
Level.dropItem(Entity.getX(victim),Entity.getY(victim),Entity.getZ(victim),1,506,1);
}
}
Lol.Where do you people think of this stuff??
Willing to work on Android apps or multi-platform games, see profile bio for information.
Founder and CEO of Temena Development
Twitter: @TemenaPE
Instagram: @ItsLiterallyMath
LOL
Ok
Willing to work on Android apps or multi-platform games, see profile bio for information.
Founder and CEO of Temena Development
Twitter: @TemenaPE
Instagram: @ItsLiterallyMath
I Will Record The "They" Lines...
Will Anyone Record The "Steve" Lines ?
I Will Do Everything Else By Myself
It might even be as famous as the elements! Btw qymineASAP and donalddoesMC the elements mod is E.P.I.C.!
Which HUGE modscript are we making ?
i also want to know which modscript are we making
LoL! And yeah even i want to know which mod are you guys making.
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! ---------------->
Dood the natural disasters mod...:)You know the one with tornados and other stuff..:)
Dirt Armor Mod : 239+
Stick-Diamonds Mod : 70+ xD
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! ---------------->
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]
Update blocks are texured as an air block that's darker so you can see it.
But how u make mob drop custom items?
ModPE!?
I Used This Code :
function deathHook(murderer,victim){ var random = Math.floor((Math.random()*5)+1); if(random==5){ Level.dropItem(Entity.getX(victim),Entity.getY(victim),Entity.getZ(victim),1,506,1); } }You Can Also Use This To Make A Mob Drop Custom Item Everytime (to not make it random) :
function deathHook(murderer,victim){ Level.dropItem(Entity.getX(victim),Entity.getY(victim),Entity.getZ(victim),1,506,1); }You Can Also Use This To Make A Specific Mob Drop An Item :
function deathHook(murderer,victim){ if(Entity.getEntityTypeId(victim)==32){//if the victim is a zombie Level.dropItem(Entity.getX(victim),Entity.getY(victim),Entity.getZ(victim),1,506,1); } }