1234567891011121314151617181920212223242526272829 |
- minplayers = 2;
- maxplayers = 4;
- roundsforwin = 3;
- gamesignloc = read.location(ggv("SERVER", "pvpsign2"));
- gamesworld = world.get("games");
- lobbyspawnloc = loc.new(gamesworld, -7981.5, 95, 4016.5);
- mapname = "Arena";
- list.new(spawnlocs);
- list.add(spawnlocs, loc.new(gamesworld, 203.5, 56, -249.5, 90, 0));
- list.add(spawnlocs, loc.new(gamesworld, 158.5, 56, -250.5, -90, 0));
- list.add(spawnlocs, loc.new(gamesworld, 180.5, 56, -272.5, 0, 0));
- list.add(spawnlocs, loc.new(gamesworld, 181.5, 56, -227.5, 180, 0));
- middleloc = loc.new(gamesworld, 180, 60, -250);
- radius = 30;
- 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"));
|