region_bwmap3.txt 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. mapname = "Mining";
  2. numberofteams = 2;
  3. teamsize = 1;
  4. minplayers = teamsize + 1;
  5. maxplayers = teamsize * numberofteams;
  6. gamesignsmap = getScriptVar("gamesigns");
  7. gamesignloc = map.get(gamesignsmap, "bwmapsign3");
  8. gamesworld = world.get("games");
  9. lobbyspawnloc = loc.new(gamesworld, 928, 85, 1012, -90, 0); //Lobbyspawn
  10. middleloc = loc.new(gamesworld, 1020, 78, 4931); //Middleloc und Radius zum Resetten der Items
  11. radius = 150;
  12. voidedge1 = loc.new(gamesworld, 1020, 78, 4931);
  13. voidedge2 = loc.new(gamesworld, 1020, 78, 4931);
  14. join_blocks = map.new(); //Block-Locations, um einem Team zu joinen
  15. map.add(join_blocks, loc.new(gamesworld, 932, 84, 1007), 0);
  16. map.add(join_blocks, loc.new(gamesworld, 932, 84, 1017), 1);
  17. foot_bed_loc = list.new(); //Liste aller Locs Fußteile der Betten
  18. list.add(foot_bed_loc, loc.new(gamesworld, 1022, 79, 4882));
  19. list.add(foot_bed_loc, loc.new(gamesworld, 1019, 79, 4980));
  20. head_bed_loc = list.new(); //Liste aller Locs Kopfteile der Betten
  21. list.add(head_bed_loc, loc.new(gamesworld, 1022, 79, 4881));
  22. list.add(head_bed_loc, loc.new(gamesworld, 1019, 79, 4981));
  23. bed_facing = map.new(); //Map in welche Richtung das Bett schaut
  24. map.add(bed_facing, 0, "north");
  25. map.add(bed_facing, 1, "south");
  26. spawn_locs = map.new(); //Liste der Spawnlocs der einzelnen Teams
  27. map.add(spawn_locs, 0, loc.new(gamesworld, 1022, 79, 4890));
  28. map.add(spawn_locs, 1, loc.new(gamesworld, 1019, 79, 4972));
  29. copper_locs = list.new();
  30. list.add(copper_locs, loc.new(gamesworld, 1022, 78, 4891));
  31. list.add(copper_locs, loc.new(gamesworld, 1019, 78, 4971));
  32. silver_locs = list.new();
  33. list.add(silver_locs, loc.new(gamesworld, 1014, 78, 4889));
  34. list.add(silver_locs, loc.new(gamesworld, 1027, 78, 4911));
  35. list.add(silver_locs, loc.new(gamesworld, 1027, 78, 4973));
  36. list.add(silver_locs, loc.new(gamesworld, 1014, 78, 4951));
  37. gold_locs = list.new();
  38. list.add(gold_locs, loc.new(gamesworld, 1020, 78, 4931));
  39. list.add(gold_locs, loc.new(gamesworld, 1021, 78, 4931));