bwmap2.txt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. mapname = "Cube";
  2. numberofteams = 2;
  3. teamsize = 2;
  4. minplayers = 2;
  5. maxplayers = teamsize * numberofteams;
  6. gamesignloc = minigame.getSignLoc("bwmapsign2");
  7. gamesworld = world.getGames();
  8. lobbyspawnloc = loc.new(gamesworld, 956, 85, 1012, -90, 0); //Lobbyspawn
  9. middleloc = loc.new(gamesworld, -3978, 59, 5979); //Middleloc und Radius zum Resetten der Items
  10. radius = 100;
  11. voidedge1 = loc.new(gamesworld, -4019, -30, 5939);
  12. voidedge2 = loc.new(gamesworld, -3930, -1, 6020);
  13. join_blocks = map.new(); //Block-Locations, um einem Team zu joinen
  14. map.add(join_blocks, loc.new(gamesworld, 960, 84, 1007), 0);
  15. map.add(join_blocks, loc.new(gamesworld, 960, 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, -3967, 64, 5979));
  18. list.add(foot_bed_loc, loc.new(gamesworld, -3984, 64, 5979));
  19. head_bed_loc = list.new(); //Liste aller Locs Kopfteile der Betten
  20. list.add(head_bed_loc, loc.new(gamesworld, -3968, 64, 5979));
  21. list.add(head_bed_loc, loc.new(gamesworld, -3983, 64, 5979));
  22. bed_facing = map.new(); //Map in welche Richtung das Bett schaut
  23. map.add(bed_facing, 0, "west");
  24. map.add(bed_facing, 1, "east");
  25. spawn_locs = map.new(); //Liste der Spawnlocs der einzelnen Teams
  26. map.add(spawn_locs, 0, loc.new(gamesworld, -3966.5, 64, 5981.5, 90, 0));
  27. map.add(spawn_locs, 1, loc.new(gamesworld, -3983.5, 64, 5977.5, -90, 0));
  28. copper_locs = list.new();
  29. list.add(copper_locs, loc.new(gamesworld, -3967.5, 63, 5981.5));
  30. list.add(copper_locs, loc.new(gamesworld, -3982.5, 63, 5977.5));
  31. silver_locs = list.new();
  32. list.add(silver_locs, loc.new(gamesworld, -3966.5, 57, 5977.5));
  33. list.add(silver_locs, loc.new(gamesworld, -3983.5, 57, 5981.5));
  34. gold_locs = list.new();
  35. list.add(gold_locs, loc.new(gamesworld, -3972.5, 59, 5979.5));
  36. list.add(gold_locs, loc.new(gamesworld, -3977.5, 59, 5979.5));