Advertisement
Guest User

Untitled

a guest
May 7th, 2015
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 KB | None | 0 0
  1. /*
  2. spawn dialog location settings
  3. By Halv
  4. */
  5.  
  6. //allow spawn near players jammer? only one is registered, so no point in multiple jammers
  7. _spawnNearJammer = true;
  8.  
  9. //not sure if this will work ...
  10. _spawnNearGroup = true;
  11.  
  12. //adds the default spawns locations
  13. //NOTE: Epoch group system is broken, so i allow spawn by all players in a group for now
  14. //at a later point i will change that back to leader only
  15. _adddefaultspawns = true;
  16.  
  17. Halv_spawns = switch(toLower worldName)do{
  18. //altis spawns
  19. case "altis":{
  20. [
  21. /*
  22. [
  23. [20548.4,8888.25],
  24. 2,
  25. "My custom spawn name for panagia"
  26. ], // 'Panagia' donor lvl 2 required to spawn here
  27. [
  28. [20548.4,8888.25]
  29. ], //minimal array for 'Panagia', name is found by the script and no donor / lvl requirements to spawn here
  30. */
  31. [[20548.4,8888.25],2], // 'Panagia'" //donor
  32. [[20788.2,6733.91]], // 'Selakano'
  33. [[20241.1,11659.6],1], // 'Chalkeia' //reg
  34. [[16786.2,12619.4]], // 'Pyrgos'
  35. [[18111.2,15242.3]], // 'Charkia'
  36. [[21358.5,16361],2], // 'Kalochori'" //donor
  37. [[23211.4,19957.7]], // 'Ioannina'
  38. [[25696.9,21348.6],2], // 'Sofia' //donor
  39. [[26990.8,23202.2]], // 'Molos'
  40. [[16278.7,17267.4],1], // 'Telos' //reg
  41. [[14039.2,18730.9]], // 'Athira'
  42. [[14602.8,20791.3]], // 'Frini'
  43. [[9436.79,20304.4]], // 'Abdera'
  44. [[4559.19,21406.7],2], // 'Oreokastro' //donor
  45. [[4040.33,17281.3]], // 'Agios Konstantinos'
  46. [[9275.09,15899.8],1], // 'Agios Dionysios' //reg
  47. [[12477.4,14316.7]], // 'Neochori'
  48. [[3529.11,13054.8]], // 'Kavala'
  49. [[9045.54,11960.8]], // 'Zaros'
  50. [[9259.52,8062.07],1] //'Sfaka' //reg
  51.  
  52. ]
  53. };
  54. //stratis spawns
  55. case "stratis":{
  56. [
  57. [[1949.69,5522.03]],
  58. [[3024.14,5973.37]],
  59. [[3725.39,7114.48]],
  60. [[5008.42,5907.77]],
  61. [[6429.73,5395.64]],
  62. [[5356.9,3792.62]],
  63. [[4362.02,3831.27]],
  64. [[3292.59,2934.25]],
  65. [[2778.96,1746.92]],
  66. [[2625.43,608.782]],
  67. [[2424.63,1142.45]],
  68. [[2120.67,1920.52]],
  69. [[2005.55,2702.73]],
  70. [[1922.96,3569.01]],
  71. [[1983.26,4178.85]]
  72. ]
  73. };
  74. case "chernarus":
  75. {
  76. [
  77. //these are old a2 positions taken directly from ebays essv2 (thanks ebay)
  78. //... Richie says they will work, so ill leave them here for now ...
  79. //Chernarus
  80. [[12048,8352]], //"Berezino",
  81. [[6901,2509]], //"Chernogorsk",
  82. [[10294,2191]], //"Elektrozavodsk",
  83. [[2236,1923]], //"Kamenka",
  84. [[12071,3591]], //"Kamyshovo",
  85. [[3608,2152]], //"Komarovo",
  86. [[13510,5249]], //"Solnichny",
  87. [[2692,5284]], //"Zelenogorsk",
  88. // Above are defaults
  89. [[9711,8962],1], //"Gorka",
  90. [[5939,10195],1], //"Grishino",
  91. [[8421,6643],1], //"Guglovo",
  92. [[8812,11642],1], //"Gvozdno",
  93. [[5301,8548],1], //"Kabanino",
  94. [[2718,10094],1], //"Lopatino",
  95. [[4984,12492],1], //"Petrovka",
  96. [[4582,6457],1], //"Pogorevka",
  97. [[3626,8976],1], //"Vybor",
  98. [[6587,6026],1], //"Vyshnoye",
  99. [[11441,11364],2], //"Klen Trader",
  100. [[6320,7815],2], //"Stary Trader",
  101. [[4082,11657,2], //"Bash Trader",
  102. };
  103. /* //create new world spawns, use lower case letters only or it will not be detected (only [x,y] needed)
  104. case "myworldname":{
  105. [
  106. [[0,0],2],//locked for everyone but lvl 2
  107. [[0,0]]
  108. ]
  109. };
  110. */
  111. default{[]};
  112. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement