Advertisement
Guest User

Untitled

a guest
May 9th, 2015
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. /*
  2. spawn dialog misc settings
  3. By Halv
  4. */
  5.  
  6. //UID's for lvl 1 spawn's
  7. _level1UIDs = ["0","0","0"];
  8. //UID's for lvl 2 spawn's
  9. _level2UIDs = ["76561198159270600","0","0"];
  10. //this is to allow any lvl 2 to spawn on lvl 1, comment out to seperate the two
  11. _level1UIDs = _level1UIDs + _level2UIDs;
  12.  
  13. //Spawn area radius
  14. _area = 1250;
  15.  
  16. //halo jump true/false
  17. _halo = true; //<<==== NOTE THAT DEFAULT ANTIHACK WILL SOMETIMES TELEPORT A PLAYER BACK UP IN THE AIR WITH NO CHUTE!!! ====
  18. _jumpheight = 1250;
  19.  
  20. //this is the distance (in meters) it will check for the players dead bodys, set to -1 to disable
  21. _bodyCheckDist = -1;
  22.  
  23. //execVM script (like credits) on spawn? "pathto\script\filename.sqf" or "" to disable
  24. _script = "";
  25.  
  26. _Weapons2add = [
  27. //a random weapon is picked from this array
  28. ["ruger_pistol_epoch","1911_pistol_epoch","hgun_P07_F","hgun_Pistol_heavy_01_F","hgun_Pistol_heavy_02_F","hgun_Rook40_F"],
  29. //how many magazines min
  30. 2,
  31. //how many magazines max
  32. 4
  33. ];
  34.  
  35. _toolWeapons = [
  36. //random tools are picked from this array
  37. ["EpochRadio0","ItemCompass","ItemWatch","Binocular","ItemGPS"],
  38. //how many tools min
  39. 1,
  40. //how many tools max
  41. 3
  42. ];
  43.  
  44. _ItemClass2add = [
  45. //random items are picked from this array
  46. ["ItemSodaRbull","meatballs_epoch","FirstAidKit","WhiskeyNoodle","ItemSodaOrangeSherbet","sweetcorn_epoch","scam_epoch","HeatPack","ColdPack","Heal_EPOCH","FAK"],
  47. //how many items min
  48. 1,
  49. //how many items max
  50. 3
  51. ];
  52.  
  53. _MagazineClass2add = [
  54. //random magazines are picked from this array
  55. ["Chemlight_green","Chemlight_red","Chemlight_yellow","Chemlight_blue","EnergyPack","SmokeShellOrange","SmokeShellBlue","SmokeShellPurple","SmokeShellYellow","SmokeShellGreen","SmokeShellRed","SmokeShell"],
  56. //how many magazines min
  57. 1,
  58. //how many magazines max
  59. 3
  60. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement