123456789101112131415161718192021222324252627 |
- minplayers = 2;
- maxplayers = 2;
- roundsforwin = 3;
- gamesignloc = read.location(ggv("SERVER", "pvpsign1"));
- gamesworld = world.get("games");
- lobbyspawnloc = loc.new(gamesworld, -7981.5, 95, 4016.5);
- mapname = "Canyon";
- list.new(spawnlocs);
- list.add(spawnlocs, loc.new(gamesworld, 390.5, 59, -320.5, 90, 0));
- list.add(spawnlocs, loc.new(gamesworld, 295.5, 58, -339.5, -90, 0));
- middleloc = loc.new(gamesworld, 345, 74, -328);
- radius = 65;
- table.new(equip, 2);
- table.addRow(equip, "head", read.item("minecraft:diamond_helmet"));
- table.addRow(equip, "chest", read.item("minecraft:diamond_chestplate"));
- table.addRow(equip, "legs", read.item("minecraft:diamond_leggings"));
- table.addRow(equip, "feet", read.item("minecraft:diamond_boots"));
- list.new(items);
- list.add(items, read.item("minecraft:diamond_sword"));
- list.add(items, read.item("minecraft:ender_pearl", 10));
- list.add(items, read.item("minecraft:fishing_rod"));
- list.add(items, read.item("minecraft:golden_apple", 5));
- list.add(items, read.item("{id:'minecraft:bow',Count:1b,tag:{ench:[{lvl:2s,id:50s},{lvl:1s,id:51s}]},Damage:0s}"));
- list.add(items, read.item("minecraft:arrow"));
|