Advertisement
Guest User

Untitled

a guest
Nov 1st, 2015
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. hiddenSelections[]=
  2. {
  3. "camo1",
  4. "jump",
  5. "lb-left-front-corner",
  6. "lb-left-takedown",
  7. "lb-front-blue-1",
  8. "lb-front-blue-2",
  9. "lb-front-red-2",
  10. "lb-front-red-1",
  11. "lb-right-takedown",
  12. "lb-right-front-corner",
  13. "lb-right-back-corner",
  14. "lb-back-red-1",
  15. "lb-back-red-2",
  16. "lb-back-red-3",
  17. "lb-back-blue-3",
  18. "lb-back-blue-2",
  19. "lb-back-blue-1",
  20. "lb-left-back-corner",
  21. "lb-back-yellow-1",
  22. "lb-back-yellow-2",
  23. "lb-back-yellow-3",
  24. "lb-back-yellow-4",
  25. "lb-back-yellow-5",
  26. "lb-back-yellow-6",
  27. "lb-left-alley",
  28. "lb-right-alley",
  29. "lb-ion-blue",
  30. "lb-ion-red",
  31. "radar_patrol_c",
  32. "radar_patrol_d",
  33. "radar_patrol_u",
  34. "radar_fast_c",
  35. "radar_fast_d",
  36. "radar_fast_u",
  37. "radar_target_c",
  38. "radar_target_d",
  39. "radar_target_u"
  40. };
  41. class AnimationSources: AnimationSources
  42. {
  43. class Zeroanimation
  44. {
  45. source="user";
  46. animPeriod=0;
  47. initPhase=0;
  48. };
  49. class LightAnim
  50. {
  51. source="user";
  52. animPeriod=1;
  53. initPhase=1;
  54. };
  55. class ani_lightbar
  56. {
  57. source="user";
  58. animPeriod=1;
  59. initPhase=0;
  60. };
  61. class ani_siren
  62. {
  63. source="user";
  64. animPeriod=1;
  65. initPhase=0;
  66. };
  67. class ani_alley
  68. {
  69. source="user";
  70. animPeriod=1;
  71. initPhase=0;
  72. };
  73. class ani_takedown
  74. {
  75. source="user";
  76. animPeriod=1;
  77. initPhase=0;
  78. };
  79. class ani_directional
  80. {
  81. source="user";
  82. animPeriod=1;
  83. initPhase=0;
  84. };
  85. class ani_radar
  86. {
  87. source="user";
  88. animPeriod=1;
  89. initPhase=0;
  90. };
  91. };
  92. class UserActions
  93. {
  94. class codeOne
  95. {
  96. displayName="<t color='#0000ff'>Code One</t>";
  97. position="drivewheel";
  98. radius=10;
  99. condition="driver this == player && (this animationPhase 'ani_lightbar' != 0)";
  100. statement="this animate ['ani_lightbar', 0], this animate ['ani_siren', 0], this animate ['ani_directional', 0]";
  101. onlyForplayer=1;
  102. };
  103. class LightMode1
  104. {
  105. displayName="<t color='#0000ff'>Code Two</t>";
  106. position="drivewheel";
  107. radius=10;
  108. condition="driver this == player && (this animationPhase 'ani_lightbar' != 0.1)";
  109. statement="this animate ['ani_lightbar', 0.1], this animate ['ani_directional', 0.2]";
  110. onlyForplayer=1;
  111. };
  112. class LightMode2
  113. {
  114. displayName="<t color='#0000ff'>Code Two</t>";
  115. position="drivewheel";
  116. radius=10;
  117. condition="driver this == player && (this animationPhase 'ani_siren' > 0)";
  118. statement="this animate ['ani_lightbar', 0.1], this animate ['ani_directional', 0.2], this animate ['ani_siren', 0]";
  119. onlyForplayer=1;
  120. };
  121. class sirenon
  122. {
  123. displayName="<t color='#ff0000'>Code Three</t>";
  124. position="drivewheel";
  125. radius=10;
  126. condition="driver this == player && (this animationPhase 'ani_siren' == 0)";
  127. statement="this animate ['ani_siren', 0.2], this animate ['ani_lightbar', 0.1], this animate ['ani_directional', 0.2]";
  128. onlyForplayer=1;
  129. };
  130. class radaron
  131. {
  132. displayName = "<t color='#000000'>Radar ON</t>";
  133. position = "drivewheel";
  134. radius = 1000;
  135. condition = "driver this == player && (this animationPhase 'ani_radar' == 0)";
  136. statement = "this animate ['ani_radar', 0.3]";
  137. onlyForplayer = 0;
  138. };
  139. class radaroff: radaron
  140. {
  141. displayName = "<t color='#000000'>Radar OFF</t>";
  142. position = "drivewheel";
  143. radius = 1000;
  144. condition = "driver this == player && (this animationPhase 'ani_radar' != 0)";
  145. statement = "this animate ['ani_radar', 0]";
  146. onlyForplayer = 0;
  147. };
  148. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement