Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2015
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. class ItemKnife {
  2. class farmhemp {
  3. text = "Harvest the weed";
  4. script = "execVM 'scripts\hemp.sqf'";
  5. };
  6. };
  7. class ItemKiloHemp {
  8. class smokeweed {
  9. text = "Smoke the shit";
  10. script = "execVM 'scripts\smokeshit.sqf'";
  11. };
  12. };
  13. class Binocular_Vector {
  14. class viewdistanceTitle {
  15. text = "View Distance:";
  16. script = "systemChat('Change View Distance Locally. Click on one of the distance options');";
  17. };
  18. class distance400m {
  19. text = "400 Meters";
  20. script = "setViewDistance 400; systemChat('ViewDistance: 400');";
  21. };
  22. class distance600m {
  23. text = "600 Meters";
  24. script = "setViewDistance 600; systemChat('ViewDistance: 600');";
  25. };
  26. class distance800m {
  27. text = "800 Meters";
  28. script = "setViewDistance 800; systemChat('ViewDistance: 800');";
  29. };
  30. class distance1000m {
  31. text = "1000 Meters";
  32. script = "setViewDistance 1000; systemChat('ViewDistance: 1000');";
  33. };
  34. class distance1250m {
  35. text = "1250 Meters";
  36. script = "setViewDistance 1250; systemChat('ViewDistance: 1250');";
  37. };
  38. class distance1500m {
  39. text = "1500 Meters";
  40. script = "setViewDistance 1500; systemChat('ViewDistance: 1500');";
  41. };
  42. class distance2000m {
  43. text = "2000 Meters";
  44. script = "setViewDistance 2000; systemChat('ViewDistance: 2000'); systemChat('Warning: Higher the view distance Lower the FPS');";
  45. };
  46. class distance3000m {
  47. text = "3000 Meters";
  48. script = "setViewDistance 3000; systemChat('ViewDistance: 3000'); systemChat('Warning: Higher the view distance Lower the FPS');";
  49. };
  50. class distance5000m {
  51. text = "5000 Meters";
  52. script = "setViewDistance 5000; systemChat('ViewDistance: 5000'); systemChat('Warning: Higher the view distance Lower the FPS');";
  53. };
  54. };
  55.  
  56.  
  57. class Binocular {
  58. class viewdistanceTitle {
  59. text = "View Distance:";
  60. script = "systemChat('Change View Distance Locally. Click on one of the distance options');";
  61. };
  62. class distance400m {
  63. text = "400 Meters";
  64. script = "setViewDistance 400; systemChat('ViewDistance: 400');";
  65. };
  66. class distance600m {
  67. text = "600 Meters";
  68. script = "setViewDistance 600; systemChat('ViewDistance: 600');";
  69. };
  70. class distance800m {
  71. text = "800 Meters";
  72. script = "setViewDistance 800; systemChat('ViewDistance: 800');";
  73. };
  74. class distance1000m {
  75. text = "1000 Meters";
  76. script = "setViewDistance 1000; systemChat('ViewDistance: 1000');";
  77. };
  78. class distance1250m {
  79. text = "1250 Meters";
  80. script = "setViewDistance 1250; systemChat('ViewDistance: 1250');";
  81. };
  82. class distance1500m {
  83. text = "1500 Meters";
  84. script = "setViewDistance 1500; systemChat('ViewDistance: 1500');";
  85. };
  86. class distance2000m {
  87. text = "2000 Meters";
  88. script = "setViewDistance 2000; systemChat('ViewDistance: 2000'); systemChat('Warning: Higher the view distance Lower the FPS');";
  89. };
  90. class distance3000m {
  91. text = "3000 Meters";
  92. script = "setViewDistance 3000; systemChat('ViewDistance: 3000'); systemChat('Warning: Higher the view distance Lower the FPS');";
  93. };
  94. class distance5000m {
  95. text = "5000 Meters";
  96. script = "setViewDistance 5000; systemChat('ViewDistance: 5000'); systemChat('Warning: Higher the view distance Lower the FPS');";
  97. };
  98. };
  99. class ItemRadio {
  100. class GroupManagement {
  101. text = "Group Management";
  102. script = "execVM 'dzgm\loadGroupManagement.sqf'";
  103. };
  104. };
  105. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement