This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
ModPE.setItem(500, "battle_axe", 0, "Diamond Battle Axe"); Item.setMaxDamage(500, 2000); Player.addItemCreativeInv(500, 1, 0); Item.setCategory(500, ItemCategory.TOOL);
function newLevel(){ print("Logging in..."); clientMessage("Welcome Player"); } function leaveGame(){ print("Logged Out"); }
Item.addCraftRecipe(500, 1, 0[264, 5, 0, 280, 2, 0]); Item.addShapedRecipe(500, 1, 0[ "aaa", "aba", " b " ], ["a", 264, 0, "b", 280, 0]); function attackHook(attacker, victim){
if (Player.getCarriedItem() == 500){
var dmg = 15
Entity.setHealth(victim, Entity.getHealth(victim) - dmg); }
}
I tried to import a mod like this, but when i import it to blocklauncher , a message pop up, it said missing ) after agrument or something
Someone help me please
Item.addCraftRecipe(500, 1, 0[264, 5, 0, 280, 2, 0]);
You're missing a , after the 0
It's even in the other recipe
The heck is this for
ModPE.setItem(500, "battle_axe", 0, "Diamond Battle Axe");
Item.setMaxDamage(500, 2000);
Player.addItemCreativeInv(500, 1, 0);
Item.setCategory(500, ItemCategory.TOOL);
function newLevel(){
print("Logging in...");
clientMessage("Welcome Player");
}
function leaveGame(){
print("Logged Out");
}
Item.addCraftRecipe(500, 1, 0[264, 5, 0, 280, 2, 0]);
Item.addShapedRecipe(500, 1, 0[
"aaa",
"aba",
" b "
],
["a", 264, 0, "b", 280, 0]);
function attackHook(attacker, victim){
if (Player.getCarriedItem() == 500){
var dmg = 15
Entity.setHealth(victim, Entity.getHealth(victim) - dmg);
}
}
I tried to import a mod like this, but when i import it to blocklauncher , a message pop up, it said missing ) after agrument or something
Someone help me please
Item.addCraftRecipe(500, 1, 0[264, 5, 0, 280, 2, 0]);
You're missing a , after the 0
It's even in the other recipe
The heck is this for