Advertisement
Guest User

extra_rc.hpp

a guest
Jun 2nd, 2014
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.55 KB | None | 0 0
  1. class ExtraRc {
  2.  
  3. class ItemToolbox {
  4. class BuildBike {
  5. text = "Deploy Bike";
  6. script = "['MMT_Civ'] execVM 'custom\EVD\EVD_deploy.sqf'";
  7. };
  8. class BuildMotorcycle {
  9. text = "Deploy Motorcycle";
  10. script = "['TT650_Civ'] execVM 'custom\EVD\EVD_deploy.sqf'";
  11. };
  12. class BuildMozzie {
  13. text = "Deploy Mozzie";
  14. script = "['CSJ_GyroC'] execVM 'custom\EVD\EVD_deploy.sqf'";
  15. };
  16. };
  17.  
  18. class ItemBloodbag {
  19. class Use {
  20. text = "Use Bloodbag";
  21. script = "execVM 'scripts\SelfBB.sqf'";
  22. };
  23. };
  24.  
  25. class Binocular_Vector {
  26. class distance400m {
  27. text = "400 Meters";
  28. script = "setViewDistance 400; systemChat('ViewDistance: 400');";
  29. };
  30. class distance600m {
  31. text = "600 Meters";
  32. script = "setViewDistance 600; systemChat('ViewDistance: 600');";
  33. };
  34. class distance800m {
  35. text = "800 Meters";
  36. script = "setViewDistance 800; systemChat('ViewDistance: 800');";
  37. };
  38. class distance1000m {
  39. text = "1000 Meters";
  40. script = "setViewDistance 1000; systemChat('ViewDistance: 1000');";
  41. };
  42. class distance1250m {
  43. text = "1250 Meters";
  44. script = "setViewDistance 1250; systemChat('ViewDistance: 1250');";
  45. };
  46. class distance1500m {
  47. text = "1500 Meters";
  48. script = "setViewDistance 1500; systemChat('ViewDistance: 1500');";
  49. };
  50. class distance2000m {
  51. text = "2000 Meters";
  52. script = "setViewDistance 2000; systemChat('ViewDistance: 2000'); systemChat('Warning: Higher the view distance Lower the FPS');";
  53. };
  54. class distance3000m {
  55. text = "3000 Meters";
  56. script = "setViewDistance 3000; systemChat('ViewDistance: 3000'); systemChat('Warning: Higher the view distance Lower the FPS');";
  57. };
  58. class distance5000m {
  59. text = "5000 Meters";
  60. script = "setViewDistance 5000; systemChat('ViewDistance: 5000'); systemChat('Warning: Higher the view distance Lower the FPS');";
  61. };
  62. };
  63. class Binocular {
  64. class distance400m {
  65. text = "400 Meters";
  66. script = "setViewDistance 400; systemChat('ViewDistance: 400');";
  67. };
  68. class distance600m {
  69. text = "600 Meters";
  70. script = "setViewDistance 600; systemChat('ViewDistance: 600');";
  71. };
  72. class distance800m {
  73. text = "800 Meters";
  74. script = "setViewDistance 800; systemChat('ViewDistance: 800');";
  75. };
  76. class distance1000m {
  77. text = "1000 Meters";
  78. script = "setViewDistance 1000; systemChat('ViewDistance: 1000');";
  79. };
  80. class distance1250m {
  81. text = "1250 Meters";
  82. script = "setViewDistance 1250; systemChat('ViewDistance: 1250');";
  83. };
  84. class distance1500m {
  85. text = "1500 Meters";
  86. script = "setViewDistance 1500; systemChat('ViewDistance: 1500');";
  87. };
  88. class distance2000m {
  89. text = "2000 Meters";
  90. script = "setViewDistance 2000; systemChat('ViewDistance: 2000'); systemChat('Warning: Higher the view distance Lower the FPS');";
  91. };
  92. class distance3000m {
  93. text = "3000 Meters";
  94. script = "setViewDistance 3000; systemChat('ViewDistance: 3000'); systemChat('Warning: Higher the view distance Lower the FPS');";
  95. };
  96. class distance5000m {
  97. text = "5000 Meters";
  98. script = "setViewDistance 5000; systemChat('ViewDistance: 5000'); systemChat('Warning: Higher the view distance Lower the FPS');";
  99. };
  100. };
  101.  
  102. class ItemKnife {
  103. class farmhemp {
  104. text = "Harvest weed";
  105. script = "execVM 'scripts\hemp.sqf'";
  106. };
  107. };
  108.  
  109. class ItemKiloHemp {
  110. class smokeweed {
  111. text = "Smoke the shit";
  112. script = "execVM 'scripts\smokeshit.sqf'";
  113. };
  114. };
  115. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement