bwmap3.txt 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. mapname = "Mining";
  2. numberofteams = 2;
  3. teamsize = 3;
  4. minplayers = 2;
  5. maxplayers = teamsize * numberofteams;
  6. gamesignloc = minigame.getSignLoc("bwmapsign3");
  7. gamesworld = world.getGames();
  8. lobbyspawnloc = loc.new(gamesworld, 928, 85, 1012, -90, 0); //Lobbyspawn
  9. middleloc = loc.new(gamesworld, 1020, 78, 4931); //Middleloc und Radius zum Resetten der Items
  10. radius = 150;
  11. voidedge1 = loc.new(gamesworld, 1020, 78, 4931);
  12. voidedge2 = loc.new(gamesworld, 1020, 78, 4931);
  13. join_blocks = map.new(); //Block-Locations, um einem Team zu joinen
  14. map.add(join_blocks, loc.new(gamesworld, 932, 84, 1007), 0);
  15. map.add(join_blocks, loc.new(gamesworld, 932, 84, 1017), 1);
  16. foot_bed_loc = list.new(); //Liste aller Locs Fußteile der Betten
  17. list.add(foot_bed_loc, loc.new(gamesworld, 1022, 79, 4882));
  18. list.add(foot_bed_loc, loc.new(gamesworld, 1019, 79, 4980));
  19. head_bed_loc = list.new(); //Liste aller Locs Kopfteile der Betten
  20. list.add(head_bed_loc, loc.new(gamesworld, 1022, 79, 4881));
  21. list.add(head_bed_loc, loc.new(gamesworld, 1019, 79, 4981));
  22. bed_facing = map.new(); //Map in welche Richtung das Bett schaut
  23. map.add(bed_facing, 0, "north");
  24. map.add(bed_facing, 1, "south");
  25. spawn_locs = map.new(); //Liste der Spawnlocs der einzelnen Teams
  26. map.add(spawn_locs, 0, loc.new(gamesworld, 1022, 79, 4890));
  27. map.add(spawn_locs, 1, loc.new(gamesworld, 1019, 79, 4972));
  28. copper_locs = list.new();
  29. list.add(copper_locs, loc.new(gamesworld, 1022.5, 78, 4891.5));
  30. list.add(copper_locs, loc.new(gamesworld, 1019.5, 78, 4971.5));
  31. silver_locs = list.new();
  32. list.add(silver_locs, loc.new(gamesworld, 1014.5, 78, 4889.5));
  33. list.add(silver_locs, loc.new(gamesworld, 1027.5, 78, 4911.5));
  34. list.add(silver_locs, loc.new(gamesworld, 1027.5, 78, 4973.5));
  35. list.add(silver_locs, loc.new(gamesworld, 1014.5, 78, 4951.5));
  36. gold_locs = list.new();
  37. list.add(gold_locs, loc.new(gamesworld, 1020.5, 78, 4931.5));
  38. list.add(gold_locs, loc.new(gamesworld, 1021.5, 78, 4931.5));