|
@@ -12,6 +12,7 @@ event.load("player_toss");
|
|
event.load("pre_explosion");
|
|
event.load("pre_explosion");
|
|
event.load("mob_griefing");
|
|
event.load("mob_griefing");
|
|
event.load("item_air_click");
|
|
event.load("item_air_click");
|
|
|
|
+event.load("projectile_hit");
|
|
|
|
|
|
setScriptVar("skills", list.new());
|
|
setScriptVar("skills", list.new());
|
|
skill.add("Keep Inventory", "skill.subcu_inv", "minecraft:chest", "Keeps the inventory on death", 100, false, false, true);
|
|
skill.add("Keep Inventory", "skill.subcu_inv", "minecraft:chest", "Keeps the inventory on death", 100, false, false, true);
|
|
@@ -27,6 +28,9 @@ skill.add("Dolphin", "skill.dolphin", "minecraft:fire_coral", "Swim like a dolph
|
|
skill.add("Block Up", "skill.block_up", "minecraft:diamond_pickaxe", "Break a block and the block above for a minute", 25, false, true, false);
|
|
skill.add("Block Up", "skill.block_up", "minecraft:diamond_pickaxe", "Break a block and the block above for a minute", 25, false, true, false);
|
|
skill.add("Block Down", "skill.block_down", "minecraft:diamond_pickaxe", "Break a block and the block below for a minute", 25, false, true, false);
|
|
skill.add("Block Down", "skill.block_down", "minecraft:diamond_pickaxe", "Break a block and the block below for a minute", 25, false, true, false);
|
|
skill.add("Timber", "skill.timber", "minecraft:iron_axe", "Break whole trees with an axe for a minute", 128, false, true, false);
|
|
skill.add("Timber", "skill.timber", "minecraft:iron_axe", "Break whole trees with an axe for a minute", 128, false, true, false);
|
|
|
|
+skill.add("Fire Arrow", "skill.fire_arrow", "minecraft:arrow", "For a minute with an flame enchanted bow your arrows ignites hitten blocks", 50, false, true, false);
|
|
|
|
+skill.add("Better Shears", "skill.better_shears", "minecraft:shears", "Sharpness enchanted shears increases the radius for destruction of leaves", 500, true, false, true);
|
|
|
|
+skill.add("Cobweb Miner", "skill.cobweb_miner", "minecraft:cobweb", "Swords increases the radius for destruction of cobwebs", 250, true, false, true);
|
|
|
|
|
|
clan.loadData();
|
|
clan.loadData();
|
|
|
|
|
|
@@ -111,8 +115,11 @@ grass = "minecraft:grass";
|
|
iron_nugget = "minecraft:iron_nugget";
|
|
iron_nugget = "minecraft:iron_nugget";
|
|
hay_bundle = "km:hay_bundle";
|
|
hay_bundle = "km:hay_bundle";
|
|
real_hay_block = "km:real_hay_block";
|
|
real_hay_block = "km:real_hay_block";
|
|
|
|
+sword_tag = item.getTag("km:sword");
|
|
dye_tag = item.getTag("km:dye");
|
|
dye_tag = item.getTag("km:dye");
|
|
|
|
+leaves_tag = block.getTag("minecraft:leaves");
|
|
sign_tag = block.getTag("minecraft:signs");
|
|
sign_tag = block.getTag("minecraft:signs");
|
|
|
|
+prop_persistent = block.getProperty("persistent");
|
|
|
|
|
|
recipe.add(1, "minecraft:saddle", leather, leather, leather, leather, string, leather, air, iron_ingot, air);
|
|
recipe.add(1, "minecraft:saddle", leather, leather, leather, leather, string, leather, air, iron_ingot, air);
|
|
recipe.add(1, "km:bronze_helmet", bronze_ingot, bronze_ingot, bronze_ingot, bronze_ingot, air, bronze_ingot, air, air, air);
|
|
recipe.add(1, "km:bronze_helmet", bronze_ingot, bronze_ingot, bronze_ingot, bronze_ingot, air, bronze_ingot, air, air, air);
|
|
@@ -205,6 +212,9 @@ recipe.add(1, "km:lantern", iron_nugget, iron_nugget, iron_nugget, "minecraft:gl
|
|
recipe.add(1, "km:sling", stick, string, stick, stick, air, stick, air, stick, air);
|
|
recipe.add(1, "km:sling", stick, string, stick, stick, air, stick, air, stick, air);
|
|
recipe.add(4, "minecraft:string", air, air, air, air, "minecraft:white_wool", air, air, air, air);
|
|
recipe.add(4, "minecraft:string", air, air, air, air, "minecraft:white_wool", air, air, air, air);
|
|
|
|
|
|
|
|
+ench_flame = enchantment.get("flame");
|
|
|
|
+ench_unbreaking = enchantment.get("unbreaking");
|
|
|
|
+ench_sharpness = enchantment.get("sharpness");
|
|
par = particle.get("minecraft:witch");
|
|
par = particle.get("minecraft:witch");
|
|
piston_sound = sound.get("block.piston.extend");
|
|
piston_sound = sound.get("block.piston.extend");
|
|
adv_tp_sound = sound.get("block.portal.travel");
|
|
adv_tp_sound = sound.get("block.portal.travel");
|
|
@@ -619,6 +629,50 @@ if(inv_name == "Recipes") {
|
|
}
|
|
}
|
|
goto("wait");
|
|
goto("wait");
|
|
|
|
|
|
|
|
+@projectile_hit
|
|
|
|
+if(!isPlayer(shooter)) {
|
|
|
|
+ goto("wait");
|
|
|
|
+}
|
|
|
|
+player = shooter;
|
|
|
|
+duration = data.getTimer(player, "skill.fire_arrow");
|
|
|
|
+if(duration > 0) {
|
|
|
|
+ if(loc_hit == null) {
|
|
|
|
+ goto("wait");
|
|
|
|
+ }
|
|
|
|
+ flame = enchantment.getLevel(ench_flame, living.getHand(player));
|
|
|
|
+ if(flame <= 0) {
|
|
|
|
+ goto("wait");
|
|
|
|
+ }
|
|
|
|
+ if(!plot.check(loc_hit, player, 3, true) && !perm.has(player, "plot.bypass")) {
|
|
|
|
+ msg.prefix(player, prefix_skill, "You have no permissions on this plot.");
|
|
|
|
+ goto("wait");
|
|
|
|
+ }
|
|
|
|
+ ent_loc = entity.getLocation(projectile);
|
|
|
|
+ if(block.isAir(ent_loc)){
|
|
|
|
+ block.set(ent_loc, "minecraft:fire");
|
|
|
|
+ }
|
|
|
|
+ fire_ring(ent_loc, "minecraft:fire", 0);
|
|
|
|
+}
|
|
|
|
+goto("wait");
|
|
|
|
+
|
|
|
|
+function fire_ring(location, block_string, radius){
|
|
|
|
+ loc_x = loc.getX(location);
|
|
|
|
+ loc_y = loc.getY(location);
|
|
|
|
+ loc_z = loc.getZ(location);
|
|
|
|
+ for(a = -radius; a < radius + 1; a++){
|
|
|
|
+ loc.setX(location, loc_x + a);
|
|
|
|
+ for(b = -radius; b < radius + 1; b++){
|
|
|
|
+ loc.setY(location, loc_y + b);
|
|
|
|
+ for(c = -radius; c < radius + 1; c++){
|
|
|
|
+ loc.setZ(location, loc_z + c);
|
|
|
|
+ if(block.isAir(location)){
|
|
|
|
+ block.set(location, block_string);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
@block_break
|
|
@block_break
|
|
duration = data.getTimer(player, "block_down");
|
|
duration = data.getTimer(player, "block_down");
|
|
if(duration > 0) {
|
|
if(duration > 0) {
|
|
@@ -650,8 +704,110 @@ if(duration > 0) {
|
|
block.break(loc, player);
|
|
block.break(loc, player);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+if(block_type == "minecraft:cobweb") {
|
|
|
|
+ if(cancel) {
|
|
|
|
+ goto("wait");
|
|
|
|
+ }
|
|
|
|
+ hand_item = living.getHand(player);
|
|
|
|
+ if(!item.hasTag(sword_tag, hand_item)) {
|
|
|
|
+ goto("wait");
|
|
|
|
+ }
|
|
|
|
+ amount = skill.getAmount(player, "skill.cobweb_miner");
|
|
|
|
+ if(amount <= 0) {
|
|
|
|
+ goto("wait");
|
|
|
|
+ }
|
|
|
|
+ if(!skill.isActivated(player, "skill.cobweb_miner")) {
|
|
|
|
+ goto("wait");
|
|
|
|
+ }
|
|
|
|
+ location = loc.mod(block_loc, 0, 0, 0);
|
|
|
|
+ cobweb_X = loc.getX(location);
|
|
|
|
+ cobweb_Y = loc.getY(location);
|
|
|
|
+ cobweb_Z = loc.getZ(location);
|
|
|
|
+ unbreaking_level = enchantment.getLevel(ench_unbreaking, hand_item);
|
|
|
|
+ for(a = -cobweb_radius; a < cobweb_radius + 1; a++) {
|
|
|
|
+ loc.setX(location, cobweb_X + a);
|
|
|
|
+ for(b = -cobweb_radius; b < cobweb_radius + 1; b++) {
|
|
|
|
+ loc.setY(location, cobweb_Y + b);
|
|
|
|
+ for(c = -cobweb_radius; c < cobweb_radius + 1; c++) {
|
|
|
|
+ loc.setZ(location, cobweb_Z + c);
|
|
|
|
+ if(math.abs(a) + math.abs(b) + math.abs(c) + math.random(0, 2) < cobweb_radius + 2) {
|
|
|
|
+ shear_cobweb(location, block_type, player, unbreaking_level);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ goto("wait");
|
|
|
|
+}
|
|
|
|
+if(block.hasTag(leaves_tag, block)) {
|
|
|
|
+ if(cancel) {
|
|
|
|
+ goto("wait");
|
|
|
|
+ }
|
|
|
|
+ hand_item = living.getHand(player);
|
|
|
|
+ if(item.getType(hand_item) != "minecraft:shears") {
|
|
|
|
+ goto("wait");
|
|
|
|
+ }
|
|
|
|
+ if(block.property.getValue(block_loc, prop_persistent)){
|
|
|
|
+ goto("wait");
|
|
|
|
+ }
|
|
|
|
+ amount = skill.getAmount(player, "skill.better_shears");
|
|
|
|
+ if(amount <= 0) {
|
|
|
|
+ goto("wait");
|
|
|
|
+ }
|
|
|
|
+ if(!skill.isActivated(player, "skill.better_shears")) {
|
|
|
|
+ goto("wait");
|
|
|
|
+ }
|
|
|
|
+ location = loc.mod(block_loc, 0, 0, 0);
|
|
|
|
+ shears_X = loc.getX(location);
|
|
|
|
+ shears_Y = loc.getY(location);
|
|
|
|
+ shears_Z = loc.getZ(location);
|
|
|
|
+ unbreaking_level = enchantment.getLevel(ench_unbreaking, hand_item);
|
|
|
|
+ radius = enchantment.getLevel(ench_sharpness, hand_item);
|
|
|
|
+ if(radius > 0) {
|
|
|
|
+ cancel = true;
|
|
|
|
+ }
|
|
|
|
+ orig_item = block.toStack(location);
|
|
|
|
+ for(a = -radius; a < radius + 1; a++){
|
|
|
|
+ loc.setX(location, shears_X + a);
|
|
|
|
+ for(b = -radius; b < radius + 1; b++){
|
|
|
|
+ loc.setY(location, shears_Y + b);
|
|
|
|
+ for(c = -radius; c < radius + 1; c++){
|
|
|
|
+ loc.setZ(location, shears_Z + c);
|
|
|
|
+ if(math.abs(a) + math.abs(b) + math.abs(c) + math.random(0, 2) < radius + 2) {
|
|
|
|
+ shear_leave(location, block_type, orig_item, player, unbreaking_level);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ goto("wait");
|
|
|
|
+}
|
|
goto("wait");
|
|
goto("wait");
|
|
|
|
|
|
|
|
+function shear_leave(block_loc, original_block_type, original_item, player, unbreaking_level){
|
|
|
|
+ if(block.getType(block_loc) != original_block_type) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ if(block.property.getValue(block_loc, $prop_persistent)) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ block.set(block_loc, "minecraft:air");
|
|
|
|
+ item.drop(block_loc, original_item);
|
|
|
|
+ if(player.isSurvival(player)) {
|
|
|
|
+ if(math.random(0, 99) < 100 / (unbreaking_level + 1)) {
|
|
|
|
+ player.damageItem(player, 1);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+function shear_cobweb(block_loc, original_block_type, player, unbreaking_level) {
|
|
|
|
+ if(block.getType(block_loc) != original_block_type) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ block.break(block_loc, player);
|
|
|
|
+ if(math.random(0, 99) < 100 / (unbreaking_level + 1)) {
|
|
|
|
+ player.damageItem(player, 1);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
@block_click
|
|
@block_click
|
|
if(action == "right" && player.checkHandsForTag(player, dye_tag)) {
|
|
if(action == "right" && player.checkHandsForTag(player, dye_tag)) {
|
|
if(block.hasTag(sign_tag, block)) {
|
|
if(block.hasTag(sign_tag, block)) {
|
|
@@ -1210,7 +1366,7 @@ function lottery.set(location, amount) {
|
|
text_entity = list.getIndex(list, 0);
|
|
text_entity = list.getIndex(list, 0);
|
|
name = entity.getName(text_entity);
|
|
name = entity.getName(text_entity);
|
|
if(!text.startsWith(name, "Snuvis: ", 0)) {
|
|
if(!text.startsWith(name, "Snuvis: ", 0)) {
|
|
- msg("dev", "Lottery error");
|
|
|
|
|
|
+ snuvi.debug("Lottery error");
|
|
goto("wait");
|
|
goto("wait");
|
|
}
|
|
}
|
|
entity.setName(text_entity, concat("Snuvis: ", text.number(amount)), true);
|
|
entity.setName(text_entity, concat("Snuvis: ", text.number(amount)), true);
|
|
@@ -1222,7 +1378,7 @@ function lottery.add(location, amount) {
|
|
text_entity = list.getIndex(list, 0);
|
|
text_entity = list.getIndex(list, 0);
|
|
name = entity.getName(text_entity);
|
|
name = entity.getName(text_entity);
|
|
if(!text.startsWith(name, "Snuvis: ", 0)) {
|
|
if(!text.startsWith(name, "Snuvis: ", 0)) {
|
|
- msg("dev", "Lottery error");
|
|
|
|
|
|
+ snuvi.debug("Lottery error");
|
|
goto("wait");
|
|
goto("wait");
|
|
}
|
|
}
|
|
amount = text.convert(text.subString(name, 8, text.length(name))) + 1;
|
|
amount = text.convert(text.subString(name, 8, text.length(name))) + 1;
|