Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. local FORM = {}
  2.  
  3. --The name of this form. Do not repeat names of forms!
  4. FORM.Name = "Majestic"
  5.  
  6. --Who does this form belong to? Options: FORM_SINGLE, FORM_DUAL, FORM_BOTH
  7. FORM.Type = FORM_SINGLE
  8.  
  9. --What user groups are able to use this form? And which stances?
  10. FORM.UserGroups = {
  11. ["user"] = { 1 },
  12. ["jedi"] = { 1, 2, 3 },
  13. }
  14.  
  15. FORM.Stances = {}
  16.  
  17. FORM.Stances[1] = {
  18. [ "run" ] = "b_run",
  19. [ "idle" ] = "phalanx_h_block",
  20. [ "light_left" ] = {
  21. Sequence = "h_c1_t1",
  22. Time = nil,
  23. Rate = nil,
  24. },
  25. [ "light_right" ] = {
  26. Sequence = "ryoku_r_c2_t1",
  27. Time = 0.9,
  28. Rate = 0.9,
  29. },
  30. [ "light_forward" ] = {
  31. Sequence = "b_c4_t2",
  32. Time = 0.8,
  33. Rate = nil,
  34. },
  35. [ "air_left" ] = {
  36. Sequence = "judge_a_left_t1",
  37. Time = 0.6,
  38. Rate = 1.6,
  39. },
  40. [ "air_right" ] = {
  41. Sequence = "judge_a_right_t1",
  42. Time = 0.6,
  43. Rate = 2.0,
  44. },
  45. [ "air_forward" ] = {
  46. Sequence = "judge_a_s1_t2",
  47. Time = 0.4,
  48. Rate = 2.0,
  49. },
  50. [ "heavy" ] = {
  51. Sequence = "h_right_t3",
  52. Time = 4,
  53. Rate = 4,
  54. },
  55. [ "heavy_charge" ] = "h_c2_charge",
  56. }
  57. FORM.Stances[2] = {
  58. [ "run" ] = "b_run",
  59. [ "idle" ] = "h_block_left",
  60. [ "light_left" ] = {
  61. Sequence = "h_c3_t3",
  62. Time = 0.7,
  63. Rate = 1.2,
  64. },
  65. [ "light_right" ] = {
  66. Sequence = "judge_b_right_t3",
  67. Time = 2.5,
  68. Rate = 3,
  69. },
  70. [ "light_forward" ] = {
  71. Sequence = "vanguard_b_s4_t3",
  72. Time = 0.9,
  73. Rate = 2.2,
  74. },
  75. [ "air_left" ] = {
  76. Sequence = "judge_a_left_t1",
  77. Time = 0.6,
  78. Rate = 1.6,
  79. },
  80. [ "air_right" ] = {
  81. Sequence = "judge_a_right_t1",
  82. Time = 1,
  83. Rate = 2.0,
  84. },
  85. [ "air_forward" ] = {
  86. Sequence = "judge_a_s1_t2",
  87. Time = 0.4,
  88. Rate = 2.0,
  89. },
  90. [ "heavy" ] = {
  91. Sequence = "h_right_t3",
  92. Time = 4,
  93. Rate = 3.5,
  94. },
  95. [ "heavy_charge" ] = "h_c2_charge",
  96. }
  97.  
  98. FORM.Stances[3] = {
  99. [ "run" ] = "b_run",
  100. [ "idle" ] = "vanguard_idle_reference",
  101. [ "light_left" ] = {
  102. Sequence = "h_c1_t3",
  103. Time = nil,
  104. Rate = nil,
  105. },
  106. [ "light_right" ] = {
  107. Sequence = "vanguard_r_s3_t2",
  108. Time = 0.8,
  109. Rate = 1.2,
  110. },
  111. [ "light_forward" ] = {
  112. Sequence = "b_c4_t3",
  113. Time = 0.9,
  114. Rate = nil,
  115. },
  116. [ "air_left" ] = {
  117. Sequence = "judge_a_left_t1",
  118. Time = 0.6,
  119. Rate = 1.6,
  120. },
  121. [ "air_right" ] = {
  122. Sequence = "judge_a_right_t1",
  123. Time = 0.9,
  124. Rate = 2.0,
  125. },
  126. [ "air_forward" ] = {
  127. Sequence = "judge_a_s1_t2",
  128. Time = 0.4,
  129. Rate = 2.0,
  130. },
  131. [ "heavy" ] = {
  132. Sequence = "h_right_t3",
  133. Time = 4,
  134. Rate = 4,
  135. },
  136. [ "heavy_charge" ] = "h_c2_charge",
  137. }
  138.  
  139. wOS:RegisterNewForm( FORM )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement