2.Ridable Animals===Tap an animal with a stick and you will ride it. Unfortunately, you cannot control the movements off the animal.
//Made by Fong Yoong
Ridable animals/Thanks to Treebi for the ModPe Script tool
function attackHook(attacker, victim)
{
var ourItem = getCarriedItem() ;
if(ourItem==280)
{
preventDefault () ;
rideAnimal(attacker, victim) ;
clientMessage("Animal Rided") ;
}
3.InStoneMine===Useful for mining.Hold a stick and touch stone blocks to mine it(only stone). Stay three blocks away from the stone because it will explode at 1.5 radius.
//Made by Fong Yoong
//InstoneMine/Thanks to Treebi for the Modpe Script tool
function useItem(x,y,z,itemId,blockId)
{
if(itemId==280&&blockId==1)
{
explode(x, y, z, 1.5) ;
I know how to use loops, but I only gave him a code to mine one at a time lol sorry I didn't think of mining a big block, only thought of one block at a time
Rollback Post to RevisionRollBack
Back to modding! Follow me on Twitter @byteandahalf
1. Insta Tools===In survival, tap a block with stick and you will have full Diamond armor and full Diamond tools.
//Insta Tools/Thanks to Treebi for the ModPe Script tool
function useItem(x,y,z,itemId,blockId)
{
if(itemId==280)
{
addItemInventory(310, 1) ;
addItemInventory(311, 1) ;
addItemInventory(312, 1) ;
addItemInventory(313, 1) ;
addItemInventory(276, 64) ;
addItemInventory(277, 64) ;
addItemInventory(278, 64) ;
addItemInventory(279, 64) ;
clientMessage("Insta Tools On") ;
2.Ridable Animals===Tap an animal with a stick and you will ride it. Unfortunately, you cannot control the movements off the animal.
Ridable animals/Thanks to Treebi for the ModPe Script tool
function attackHook(attacker, victim)
{
var ourItem = getCarriedItem() ;
if(ourItem==280)
{
preventDefault () ;
rideAnimal(attacker, victim) ;
clientMessage("Animal Rided") ;
}
3.InStoneMine===Useful for mining.Hold a stick and touch stone blocks to mine it(only stone). Stay three blocks away from the stone because it will explode at 1.5 radius.
//InstoneMine/Thanks to Treebi for the Modpe Script tool
function useItem(x,y,z,itemId,blockId)
{
if(itemId==280&&blockId==1)
{
explode(x, y, z, 1.5) ;
Join my clan, Diamond Eye!:http://www.minecraftforum.net/topic/1901662-diamond-eye-pvp-map-building-join-now/
He made the rideable one or edited treebl's. -.-
Pk is god
Also 3DS FC: 0662-4153-9518 Who's up for a battle? XY IGN:Soggy
function useItem(x,y,z,itemId,blockId) { if(itemId==280 && blockId==1) { setTile(x,y,z,0); addItemInventory(4,1); } }Use this, and tapping stone with a stick will automatically mine it and put the cobblestone into your inventory.
Back to modding! Follow me on Twitter @byteandahalf
Back to modding! Follow me on Twitter @byteandahalf
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumLearn about for loops so you can mine a 11x11x11 cube of blocks simultaneously
https://raw.github.com/zhuowei/ModPEScripts/master/500ise_superpickaxe.js
Back to modding! Follow me on Twitter @byteandahalf
Join my clan, Diamond Eye!:http://www.minecraftforum.net/topic/1901662-diamond-eye-pvp-map-building-join-now/