@nativewrappers/fivem 0.0.65 → 0.0.73

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (243) hide show
  1. package/Audio.d.ts +2 -2
  2. package/Blip.d.ts +2 -2
  3. package/Camera.d.ts +1 -1
  4. package/Game.d.ts +1 -1
  5. package/GameplayCamera.d.ts +1 -1
  6. package/Model.d.ts +1 -1
  7. package/ParticleEffect.d.ts +2 -2
  8. package/ParticleEffectAsset.d.ts +1 -1
  9. package/README.md +45 -0
  10. package/Raycast.d.ts +2 -2
  11. package/RelationshipGroup.d.ts +1 -1
  12. package/Tasks.d.ts +3 -3
  13. package/World.d.ts +5 -13
  14. package/cfx/StateBagChangeHandler.d.ts +1 -3
  15. package/common/Command.d.ts +30 -0
  16. package/common/Convar.d.ts +13 -0
  17. package/common/GlobalData.d.ts +8 -0
  18. package/common/Kvp.d.ts +69 -0
  19. package/common/Resource.d.ts +14 -0
  20. package/common/decors/Events.d.ts +54 -0
  21. package/common/index.d.ts +8 -0
  22. package/common/net/NetworkedMap.d.ts +28 -0
  23. package/common/types.d.ts +5 -0
  24. package/common/utils/ClassTypes.d.ts +11 -0
  25. package/common/utils/Color.d.ts +14 -0
  26. package/common/utils/Maths.d.ts +4 -0
  27. package/common/utils/PointF.d.ts +7 -0
  28. package/common/utils/Quaternion.d.ts +10 -0
  29. package/common/utils/Vector.d.ts +429 -0
  30. package/common/utils/Vector2.d.ts +1 -0
  31. package/common/utils/Vector3.d.ts +1 -0
  32. package/common/utils/Vector4.d.ts +1 -0
  33. package/common/utils/cleanPlayerName.d.ts +6 -0
  34. package/common/utils/enumValues.d.ts +12 -0
  35. package/{utils/getStringFromUInt8Array.js → common/utils/getStringFromUInt8Array.d.ts} +1 -3
  36. package/{utils/getUInt32FromUint8Array.js → common/utils/getUInt32FromUint8Array.d.ts} +1 -1
  37. package/common/utils/index.d.ts +12 -0
  38. package/index.d.ts +1 -1
  39. package/index.js +18794 -26
  40. package/interfaces/Dimensions.d.ts +1 -1
  41. package/models/BaseEntity.d.ts +3 -3
  42. package/models/Ped.d.ts +4 -15
  43. package/models/PedBone.d.ts +1 -1
  44. package/models/PedBoneCollection.d.ts +1 -1
  45. package/models/Player.d.ts +1 -1
  46. package/models/Vehicle.d.ts +2 -2
  47. package/models/VehicleDoor.d.ts +2 -2
  48. package/models/VehicleDoorCollection.d.ts +1 -1
  49. package/models/VehicleMod.d.ts +2 -2
  50. package/models/VehicleModCollection.d.ts +2 -2
  51. package/models/VehicleToggleMod.d.ts +2 -2
  52. package/models/VehicleWheel.d.ts +1 -1
  53. package/models/VehicleWheelCollection.d.ts +1 -1
  54. package/models/VehicleWindow.d.ts +2 -2
  55. package/models/VehicleWindowCollection.d.ts +1 -1
  56. package/package.json +6 -4
  57. package/ui/Container.d.ts +2 -2
  58. package/ui/Effects.d.ts +1 -1
  59. package/ui/Hud.d.ts +2 -2
  60. package/ui/InstructionalButtons.d.ts +1 -1
  61. package/ui/Rectangle.d.ts +2 -2
  62. package/ui/Scaleform.d.ts +1 -1
  63. package/ui/Screen.d.ts +1 -1
  64. package/ui/Text.d.ts +1 -1
  65. package/ui/interfaces/IButton.d.ts +1 -1
  66. package/ui/interfaces/IDrawable.d.ts +1 -1
  67. package/ui/menu/items/UIMenuItem.d.ts +1 -1
  68. package/ui/menu/items/UIMenuListItem.d.ts +1 -1
  69. package/ui/menu/items/panels/AbstractUIMenuPanel.d.ts +2 -2
  70. package/ui/menu/items/panels/UIMenuStatisticsPanel.d.ts +1 -1
  71. package/utils/LiteEvent.d.ts +2 -8
  72. package/utils/PointF.d.ts +0 -5
  73. package/utils/String.d.ts +1 -1
  74. package/utils/index.d.ts +2 -2
  75. package/weapon/DlcWeaponData.d.ts +1 -1
  76. package/weapon/Weapon.d.ts +7 -7
  77. package/weapon/WeaponAsset.d.ts +1 -1
  78. package/weapon/WeaponCollection.d.ts +2 -2
  79. package/weaponComponent/DlcWeaponComponentData.d.ts +1 -1
  80. package/weaponComponent/InvalidWeaponComponent.d.ts +1 -1
  81. package/weaponComponent/WeaponComponent.d.ts +3 -3
  82. package/weaponComponent/WeaponComponentCollection.d.ts +3 -3
  83. package/Audio.js +0 -93
  84. package/Blip.js +0 -105
  85. package/Camera.js +0 -162
  86. package/Checkpoint.js +0 -43
  87. package/Events.js +0 -74
  88. package/Game.js +0 -474
  89. package/GameplayCamera.js +0 -141
  90. package/Model.js +0 -213
  91. package/NetworkedScene.js +0 -18
  92. package/ParticleEffect.js +0 -123
  93. package/ParticleEffectAsset.js +0 -105
  94. package/Pickup.js +0 -19
  95. package/Raycast.js +0 -123
  96. package/RelationshipGroup.js +0 -67
  97. package/Rope.js +0 -129
  98. package/TaskSequence.js +0 -48
  99. package/Tasks.js +0 -241
  100. package/World.js +0 -765
  101. package/cfx/StateBagChangeHandler.js +0 -1
  102. package/cfx/index.js +0 -1
  103. package/enums/Alignment.js +0 -6
  104. package/enums/AnimationFlags.js +0 -35
  105. package/enums/AudioFlag.js +0 -38
  106. package/enums/BadgeStyle.js +0 -183
  107. package/enums/Blip.js +0 -225
  108. package/enums/Bone.js +0 -103
  109. package/enums/CameraShake.js +0 -14
  110. package/enums/CameraTypes.js +0 -8
  111. package/enums/CheckboxStyle.js +0 -5
  112. package/enums/Checkpoint.js +0 -67
  113. package/enums/CloudHat.js +0 -27
  114. package/enums/Control.js +0 -361
  115. package/enums/CursorSprite.js +0 -15
  116. package/enums/Driving.js +0 -34
  117. package/enums/ExplosionType.js +0 -45
  118. package/enums/FiringPattern.js +0 -20
  119. package/enums/Font.js +0 -8
  120. package/enums/ForceType.js +0 -9
  121. package/enums/Gender.js +0 -5
  122. package/enums/HelmetType.js +0 -6
  123. package/enums/HudColor.js +0 -184
  124. package/enums/HudComponent.js +0 -54
  125. package/enums/InputMode.js +0 -5
  126. package/enums/InvertAxis.js +0 -7
  127. package/enums/Language.js +0 -15
  128. package/enums/LeaveVehicleFlags.js +0 -11
  129. package/enums/LoadingSpinnerType.js +0 -8
  130. package/enums/MarkerType.js +0 -50
  131. package/enums/MenuAlignment.js +0 -5
  132. package/enums/NotificationType.js +0 -11
  133. package/enums/Parachute.js +0 -15
  134. package/enums/PickupType.js +0 -74
  135. package/enums/RadioStation.js +0 -25
  136. package/enums/RagdollType.js +0 -7
  137. package/enums/RaycastEnums.js +0 -32
  138. package/enums/Relationship.js +0 -10
  139. package/enums/RopeType.js +0 -6
  140. package/enums/ScreenEffect.js +0 -84
  141. package/enums/SpeechModifier.js +0 -40
  142. package/enums/Vehicle.js +0 -376
  143. package/enums/Weather.js +0 -22
  144. package/enums/ZoneID.js +0 -95
  145. package/enums/index.js +0 -42
  146. package/hashes/MaterialHash.js +0 -217
  147. package/hashes/PedHash.js +0 -725
  148. package/hashes/VehicleHash.js +0 -523
  149. package/hashes/WeaponHash.js +0 -161
  150. package/hashes/WeatherTypeHash.js +0 -22
  151. package/hashes/index.js +0 -5
  152. package/interfaces/Dimensions.js +0 -1
  153. package/models/BaseEntity.js +0 -477
  154. package/models/Entity.js +0 -25
  155. package/models/EntityBone.js +0 -26
  156. package/models/EntityBoneCollection.js +0 -18
  157. package/models/Ped.js +0 -692
  158. package/models/PedBone.js +0 -9
  159. package/models/PedBoneCollection.js +0 -21
  160. package/models/Player.js +0 -186
  161. package/models/Prop.js +0 -26
  162. package/models/Vehicle.js +0 -576
  163. package/models/VehicleDoor.js +0 -44
  164. package/models/VehicleDoorCollection.js +0 -62
  165. package/models/VehicleMod.js +0 -35
  166. package/models/VehicleModCollection.js +0 -227
  167. package/models/VehicleToggleMod.js +0 -29
  168. package/models/VehicleWheel.js +0 -23
  169. package/models/VehicleWheelCollection.js +0 -57
  170. package/models/VehicleWindow.js +0 -35
  171. package/models/VehicleWindowCollection.js +0 -57
  172. package/models/index.js +0 -19
  173. package/ui/Container.js +0 -31
  174. package/ui/Effects.js +0 -106
  175. package/ui/Fading.js +0 -69
  176. package/ui/Hud.js +0 -39
  177. package/ui/InstructionalButtons.js +0 -54
  178. package/ui/LoadingPrompt.js +0 -45
  179. package/ui/Notification.js +0 -9
  180. package/ui/Rectangle.js +0 -40
  181. package/ui/Scaleform.js +0 -236
  182. package/ui/Screen.js +0 -72
  183. package/ui/Sprite.js +0 -60
  184. package/ui/Text.js +0 -115
  185. package/ui/Timerbar.js +0 -248
  186. package/ui/index.js +0 -15
  187. package/ui/interfaces/IButton.js +0 -1
  188. package/ui/interfaces/IDrawable.js +0 -1
  189. package/ui/interfaces/index.js +0 -1
  190. package/ui/menu/Menu.js +0 -831
  191. package/ui/menu/MenuControl.js +0 -12
  192. package/ui/menu/MenuControls.js +0 -9
  193. package/ui/menu/MenuSettings.js +0 -54
  194. package/ui/menu/index.js +0 -6
  195. package/ui/menu/items/UIMenuCheckboxItem.js +0 -59
  196. package/ui/menu/items/UIMenuItem.js +0 -1111
  197. package/ui/menu/items/UIMenuListItem.js +0 -119
  198. package/ui/menu/items/UIMenuSeparatorItem.js +0 -29
  199. package/ui/menu/items/UIMenuSliderItem.js +0 -191
  200. package/ui/menu/items/index.js +0 -6
  201. package/ui/menu/items/panels/AbstractUIMenuPanel.js +0 -44
  202. package/ui/menu/items/panels/UIMenuColorPanel.js +0 -217
  203. package/ui/menu/items/panels/UIMenuGridPanel.js +0 -261
  204. package/ui/menu/items/panels/UIMenuPercentagePanel.js +0 -124
  205. package/ui/menu/items/panels/UIMenuStatisticsPanel.js +0 -79
  206. package/ui/menu/items/panels/UIMenuStatisticsPanelItem.js +0 -35
  207. package/ui/menu/items/panels/index.js +0 -6
  208. package/ui/menu/modules/ListItem.js +0 -10
  209. package/ui/menu/modules/index.js +0 -1
  210. package/utils/Animations.js +0 -55
  211. package/utils/Crypto.js +0 -25
  212. package/utils/LiteEvent.js +0 -19
  213. package/utils/Maths.js +0 -10
  214. package/utils/Point.js +0 -30
  215. package/utils/PointF.js +0 -14
  216. package/utils/Quaternion.js +0 -27
  217. package/utils/Size.js +0 -8
  218. package/utils/String.js +0 -25
  219. package/utils/enumValues.js +0 -14
  220. package/utils/index.js +0 -9
  221. package/weapon/DlcWeaponData.js +0 -44
  222. package/weapon/Mk2WeaponHash.js +0 -25
  223. package/weapon/Weapon.js +0 -270
  224. package/weapon/WeaponAsset.js +0 -84
  225. package/weapon/WeaponCollection.js +0 -187
  226. package/weapon/WeaponDisplayNameByHash.js +0 -75
  227. package/weapon/WeaponGroup.js +0 -19
  228. package/weapon/WeaponHudStats.js +0 -38
  229. package/weapon/WeaponLivery.js +0 -14
  230. package/weapon/WeaponLiveryColor.js +0 -35
  231. package/weapon/WeaponTint.js +0 -43
  232. package/weapon/index.js +0 -8
  233. package/weaponComponent/ComponentAttachmentPoint.js +0 -19
  234. package/weaponComponent/ComponentAttachmentPointByHash.js +0 -573
  235. package/weaponComponent/ComponentDisplayNameByHash.js +0 -280
  236. package/weaponComponent/DlcWeaponComponentData.js +0 -44
  237. package/weaponComponent/InvalidWeaponComponent.js +0 -28
  238. package/weaponComponent/WeaponComponent.js +0 -123
  239. package/weaponComponent/WeaponComponentCollection.js +0 -174
  240. package/weaponComponent/WeaponComponentHash.js +0 -887
  241. package/weaponComponent/WeaponComponentHashesByWeaponHash.js +0 -829
  242. package/weaponComponent/WeaponComponentHudStats.js +0 -34
  243. package/weaponComponent/index.js +0 -5
@@ -1,5 +0,0 @@
1
- export var CheckboxStyle;
2
- (function (CheckboxStyle) {
3
- CheckboxStyle[CheckboxStyle["Tick"] = 0] = "Tick";
4
- CheckboxStyle[CheckboxStyle["Cross"] = 1] = "Cross";
5
- })(CheckboxStyle || (CheckboxStyle = {}));
@@ -1,67 +0,0 @@
1
- export var CheckpointIcon;
2
- (function (CheckpointIcon) {
3
- CheckpointIcon[CheckpointIcon["CylinderSingleArrow"] = 0] = "CylinderSingleArrow";
4
- CheckpointIcon[CheckpointIcon["CylinderDoubleArrow"] = 1] = "CylinderDoubleArrow";
5
- CheckpointIcon[CheckpointIcon["CylinderTripleArrow"] = 2] = "CylinderTripleArrow";
6
- CheckpointIcon[CheckpointIcon["CylinderCycleArrow"] = 3] = "CylinderCycleArrow";
7
- CheckpointIcon[CheckpointIcon["CylinderCheckerboard"] = 4] = "CylinderCheckerboard";
8
- CheckpointIcon[CheckpointIcon["CylinderSingleArrow2"] = 5] = "CylinderSingleArrow2";
9
- CheckpointIcon[CheckpointIcon["CylinderDoubleArrow2"] = 6] = "CylinderDoubleArrow2";
10
- CheckpointIcon[CheckpointIcon["CylinderTripleArrow2"] = 7] = "CylinderTripleArrow2";
11
- CheckpointIcon[CheckpointIcon["CylinderCycleArrow2"] = 8] = "CylinderCycleArrow2";
12
- CheckpointIcon[CheckpointIcon["CylinderCheckerboard2"] = 9] = "CylinderCheckerboard2";
13
- CheckpointIcon[CheckpointIcon["RingSingleArrow"] = 10] = "RingSingleArrow";
14
- CheckpointIcon[CheckpointIcon["RingDoubleArrow"] = 11] = "RingDoubleArrow";
15
- CheckpointIcon[CheckpointIcon["RingTripleArrow"] = 12] = "RingTripleArrow";
16
- CheckpointIcon[CheckpointIcon["RingCycleArrow"] = 13] = "RingCycleArrow";
17
- CheckpointIcon[CheckpointIcon["RingCheckerboard"] = 14] = "RingCheckerboard";
18
- CheckpointIcon[CheckpointIcon["SingleArrow"] = 15] = "SingleArrow";
19
- CheckpointIcon[CheckpointIcon["DoubleArrow"] = 16] = "DoubleArrow";
20
- CheckpointIcon[CheckpointIcon["TripleArrow"] = 17] = "TripleArrow";
21
- CheckpointIcon[CheckpointIcon["CycleArrow"] = 18] = "CycleArrow";
22
- CheckpointIcon[CheckpointIcon["Checkerboard"] = 19] = "Checkerboard";
23
- CheckpointIcon[CheckpointIcon["CylinderSingleArrow3"] = 20] = "CylinderSingleArrow3";
24
- CheckpointIcon[CheckpointIcon["CylinderDoubleArrow3"] = 21] = "CylinderDoubleArrow3";
25
- CheckpointIcon[CheckpointIcon["CylinderTripleArrow3"] = 22] = "CylinderTripleArrow3";
26
- CheckpointIcon[CheckpointIcon["CylinderCycleArrow3"] = 23] = "CylinderCycleArrow3";
27
- CheckpointIcon[CheckpointIcon["CylinderCheckerboard3"] = 24] = "CylinderCheckerboard3";
28
- CheckpointIcon[CheckpointIcon["CylinderSingleArrow4"] = 25] = "CylinderSingleArrow4";
29
- CheckpointIcon[CheckpointIcon["CylinderDoubleArrow4"] = 26] = "CylinderDoubleArrow4";
30
- CheckpointIcon[CheckpointIcon["CylinderTripleArrow4"] = 27] = "CylinderTripleArrow4";
31
- CheckpointIcon[CheckpointIcon["CylinderCycleArrow4"] = 28] = "CylinderCycleArrow4";
32
- CheckpointIcon[CheckpointIcon["CylinderCheckerboard4"] = 29] = "CylinderCheckerboard4";
33
- CheckpointIcon[CheckpointIcon["CylinderSingleArrow5"] = 30] = "CylinderSingleArrow5";
34
- CheckpointIcon[CheckpointIcon["CylinderDoubleArrow5"] = 31] = "CylinderDoubleArrow5";
35
- CheckpointIcon[CheckpointIcon["CylinderTripleArrow5"] = 32] = "CylinderTripleArrow5";
36
- CheckpointIcon[CheckpointIcon["CylinderCycleArrow5"] = 33] = "CylinderCycleArrow5";
37
- CheckpointIcon[CheckpointIcon["CylinderCheckerboard5"] = 34] = "CylinderCheckerboard5";
38
- CheckpointIcon[CheckpointIcon["RingPlaneUp"] = 35] = "RingPlaneUp";
39
- CheckpointIcon[CheckpointIcon["RingPlaneLeft"] = 36] = "RingPlaneLeft";
40
- CheckpointIcon[CheckpointIcon["RingPlaneRight"] = 37] = "RingPlaneRight";
41
- CheckpointIcon[CheckpointIcon["RingPlaneDown"] = 38] = "RingPlaneDown";
42
- CheckpointIcon[CheckpointIcon["Empty"] = 39] = "Empty";
43
- CheckpointIcon[CheckpointIcon["Ring"] = 40] = "Ring";
44
- CheckpointIcon[CheckpointIcon["Empty2"] = 41] = "Empty2";
45
- // CylinderCustomShape,
46
- // CylinderCustomShape2,
47
- // CylinderCustomShape3,
48
- CheckpointIcon[CheckpointIcon["Cyclinder"] = 45] = "Cyclinder";
49
- CheckpointIcon[CheckpointIcon["Cyclinder2"] = 46] = "Cyclinder2";
50
- CheckpointIcon[CheckpointIcon["Cyclinder3"] = 47] = "Cyclinder3";
51
- })(CheckpointIcon || (CheckpointIcon = {}));
52
- export var CheckpointCustomIconStyle;
53
- (function (CheckpointCustomIconStyle) {
54
- CheckpointCustomIconStyle[CheckpointCustomIconStyle["Number"] = 0] = "Number";
55
- CheckpointCustomIconStyle[CheckpointCustomIconStyle["SingleArrow"] = 1] = "SingleArrow";
56
- CheckpointCustomIconStyle[CheckpointCustomIconStyle["DoubleArrow"] = 2] = "DoubleArrow";
57
- CheckpointCustomIconStyle[CheckpointCustomIconStyle["TripleArrow"] = 3] = "TripleArrow";
58
- CheckpointCustomIconStyle[CheckpointCustomIconStyle["Ring"] = 4] = "Ring";
59
- CheckpointCustomIconStyle[CheckpointCustomIconStyle["CycleArrow"] = 5] = "CycleArrow";
60
- CheckpointCustomIconStyle[CheckpointCustomIconStyle["Ring2"] = 6] = "Ring2";
61
- CheckpointCustomIconStyle[CheckpointCustomIconStyle["RingPointer"] = 7] = "RingPointer";
62
- CheckpointCustomIconStyle[CheckpointCustomIconStyle["SegmentedRing"] = 8] = "SegmentedRing";
63
- CheckpointCustomIconStyle[CheckpointCustomIconStyle["Sphere"] = 9] = "Sphere";
64
- CheckpointCustomIconStyle[CheckpointCustomIconStyle["Dollar"] = 10] = "Dollar";
65
- CheckpointCustomIconStyle[CheckpointCustomIconStyle["QuintupleLines"] = 11] = "QuintupleLines";
66
- CheckpointCustomIconStyle[CheckpointCustomIconStyle["BeastIcon"] = 12] = "BeastIcon";
67
- })(CheckpointCustomIconStyle || (CheckpointCustomIconStyle = {}));
package/enums/CloudHat.js DELETED
@@ -1,27 +0,0 @@
1
- /**
2
- * List of cloud hats. Used to change cloud patterns
3
- */
4
- export var CloudHat;
5
- (function (CloudHat) {
6
- CloudHat[CloudHat["Unknown"] = 1] = "Unknown";
7
- CloudHat[CloudHat["Altostratus"] = 2] = "Altostratus";
8
- CloudHat[CloudHat["Cirrus"] = 3] = "Cirrus";
9
- CloudHat[CloudHat["Cirrocumulus"] = 4] = "Cirrocumulus";
10
- CloudHat[CloudHat["Clear"] = 5] = "Clear";
11
- CloudHat[CloudHat["Cloudy"] = 6] = "Cloudy";
12
- CloudHat[CloudHat["Contrails"] = 7] = "Contrails";
13
- CloudHat[CloudHat["Horizon"] = 8] = "Horizon";
14
- CloudHat[CloudHat["HorizonBand1"] = 9] = "HorizonBand1";
15
- CloudHat[CloudHat["HorizonBand2"] = 10] = "HorizonBand2";
16
- CloudHat[CloudHat["HorizonBand3"] = 11] = "HorizonBand3";
17
- CloudHat[CloudHat["Horsey"] = 12] = "Horsey";
18
- CloudHat[CloudHat["Nimbus"] = 13] = "Nimbus";
19
- CloudHat[CloudHat["Puffs"] = 14] = "Puffs";
20
- CloudHat[CloudHat["Rain"] = 15] = "Rain";
21
- CloudHat[CloudHat["Snowy"] = 16] = "Snowy";
22
- CloudHat[CloudHat["Stormy"] = 17] = "Stormy";
23
- CloudHat[CloudHat["Stratoscumulus"] = 18] = "Stratoscumulus";
24
- CloudHat[CloudHat["Stripey"] = 19] = "Stripey";
25
- CloudHat[CloudHat["Shower"] = 20] = "Shower";
26
- CloudHat[CloudHat["Wispy"] = 21] = "Wispy";
27
- })(CloudHat || (CloudHat = {}));
package/enums/Control.js DELETED
@@ -1,361 +0,0 @@
1
- export var Control;
2
- (function (Control) {
3
- Control[Control["NextCamera"] = 0] = "NextCamera";
4
- Control[Control["LookLeftRight"] = 1] = "LookLeftRight";
5
- Control[Control["LookUpDown"] = 2] = "LookUpDown";
6
- Control[Control["LookUpOnly"] = 3] = "LookUpOnly";
7
- Control[Control["LookDownOnly"] = 4] = "LookDownOnly";
8
- Control[Control["LookLeftOnly"] = 5] = "LookLeftOnly";
9
- Control[Control["LookRightOnly"] = 6] = "LookRightOnly";
10
- Control[Control["CinematicSlowMo"] = 7] = "CinematicSlowMo";
11
- Control[Control["FlyUpDown"] = 8] = "FlyUpDown";
12
- Control[Control["FlyLeftRight"] = 9] = "FlyLeftRight";
13
- Control[Control["ScriptedFlyZUp"] = 10] = "ScriptedFlyZUp";
14
- Control[Control["ScriptedFlyZDown"] = 11] = "ScriptedFlyZDown";
15
- Control[Control["WeaponWheelUpDown"] = 12] = "WeaponWheelUpDown";
16
- Control[Control["WeaponWheelLeftRight"] = 13] = "WeaponWheelLeftRight";
17
- Control[Control["WeaponWheelNext"] = 14] = "WeaponWheelNext";
18
- Control[Control["WeaponWheelPrev"] = 15] = "WeaponWheelPrev";
19
- Control[Control["SelectNextWeapon"] = 16] = "SelectNextWeapon";
20
- Control[Control["SelectPrevWeapon"] = 17] = "SelectPrevWeapon";
21
- Control[Control["SkipCutscene"] = 18] = "SkipCutscene";
22
- Control[Control["CharacterWheel"] = 19] = "CharacterWheel";
23
- Control[Control["MultiplayerInfo"] = 20] = "MultiplayerInfo";
24
- Control[Control["Sprint"] = 21] = "Sprint";
25
- Control[Control["Jump"] = 22] = "Jump";
26
- Control[Control["Enter"] = 23] = "Enter";
27
- Control[Control["Attack"] = 24] = "Attack";
28
- Control[Control["Aim"] = 25] = "Aim";
29
- Control[Control["LookBehind"] = 26] = "LookBehind";
30
- Control[Control["Phone"] = 27] = "Phone";
31
- Control[Control["SpecialAbility"] = 28] = "SpecialAbility";
32
- Control[Control["SpecialAbilitySecondary"] = 29] = "SpecialAbilitySecondary";
33
- Control[Control["MoveLeftRight"] = 30] = "MoveLeftRight";
34
- Control[Control["MoveUpDown"] = 31] = "MoveUpDown";
35
- Control[Control["MoveUpOnly"] = 32] = "MoveUpOnly";
36
- Control[Control["MoveDownOnly"] = 33] = "MoveDownOnly";
37
- Control[Control["MoveLeftOnly"] = 34] = "MoveLeftOnly";
38
- Control[Control["MoveRightOnly"] = 35] = "MoveRightOnly";
39
- Control[Control["Duck"] = 36] = "Duck";
40
- Control[Control["SelectWeapon"] = 37] = "SelectWeapon";
41
- Control[Control["Pickup"] = 38] = "Pickup";
42
- Control[Control["SniperZoom"] = 39] = "SniperZoom";
43
- Control[Control["SniperZoomInOnly"] = 40] = "SniperZoomInOnly";
44
- Control[Control["SniperZoomOutOnly"] = 41] = "SniperZoomOutOnly";
45
- Control[Control["SniperZoomInSecondary"] = 42] = "SniperZoomInSecondary";
46
- Control[Control["SniperZoomOutSecondary"] = 43] = "SniperZoomOutSecondary";
47
- Control[Control["Cover"] = 44] = "Cover";
48
- Control[Control["Reload"] = 45] = "Reload";
49
- Control[Control["Talk"] = 46] = "Talk";
50
- Control[Control["Detonate"] = 47] = "Detonate";
51
- Control[Control["HUDSpecial"] = 48] = "HUDSpecial";
52
- Control[Control["Arrest"] = 49] = "Arrest";
53
- Control[Control["AccurateAim"] = 50] = "AccurateAim";
54
- Control[Control["Context"] = 51] = "Context";
55
- Control[Control["ContextSecondary"] = 52] = "ContextSecondary";
56
- Control[Control["WeaponSpecial"] = 53] = "WeaponSpecial";
57
- Control[Control["WeaponSpecial2"] = 54] = "WeaponSpecial2";
58
- Control[Control["Dive"] = 55] = "Dive";
59
- Control[Control["DropWeapon"] = 56] = "DropWeapon";
60
- Control[Control["DropAmmo"] = 57] = "DropAmmo";
61
- Control[Control["ThrowGrenade"] = 58] = "ThrowGrenade";
62
- Control[Control["VehicleMoveLeftRight"] = 59] = "VehicleMoveLeftRight";
63
- Control[Control["VehicleMoveUpDown"] = 60] = "VehicleMoveUpDown";
64
- Control[Control["VehicleMoveUpOnly"] = 61] = "VehicleMoveUpOnly";
65
- Control[Control["VehicleMoveDownOnly"] = 62] = "VehicleMoveDownOnly";
66
- Control[Control["VehicleMoveLeftOnly"] = 63] = "VehicleMoveLeftOnly";
67
- Control[Control["VehicleMoveRightOnly"] = 64] = "VehicleMoveRightOnly";
68
- Control[Control["VehicleSpecial"] = 65] = "VehicleSpecial";
69
- Control[Control["VehicleGunLeftRight"] = 66] = "VehicleGunLeftRight";
70
- Control[Control["VehicleGunUpDown"] = 67] = "VehicleGunUpDown";
71
- Control[Control["VehicleAim"] = 68] = "VehicleAim";
72
- Control[Control["VehicleAttack"] = 69] = "VehicleAttack";
73
- Control[Control["VehicleAttack2"] = 70] = "VehicleAttack2";
74
- Control[Control["VehicleAccelerate"] = 71] = "VehicleAccelerate";
75
- Control[Control["VehicleBrake"] = 72] = "VehicleBrake";
76
- Control[Control["VehicleDuck"] = 73] = "VehicleDuck";
77
- Control[Control["VehicleHeadlight"] = 74] = "VehicleHeadlight";
78
- Control[Control["VehicleExit"] = 75] = "VehicleExit";
79
- Control[Control["VehicleHandbrake"] = 76] = "VehicleHandbrake";
80
- Control[Control["VehicleHotwireLeft"] = 77] = "VehicleHotwireLeft";
81
- Control[Control["VehicleHotwireRight"] = 78] = "VehicleHotwireRight";
82
- Control[Control["VehicleLookBehind"] = 79] = "VehicleLookBehind";
83
- Control[Control["VehicleCinCam"] = 80] = "VehicleCinCam";
84
- Control[Control["VehicleNextRadio"] = 81] = "VehicleNextRadio";
85
- Control[Control["VehiclePrevRadio"] = 82] = "VehiclePrevRadio";
86
- Control[Control["VehicleNextRadioTrack"] = 83] = "VehicleNextRadioTrack";
87
- Control[Control["VehiclePrevRadioTrack"] = 84] = "VehiclePrevRadioTrack";
88
- Control[Control["VehicleRadioWheel"] = 85] = "VehicleRadioWheel";
89
- Control[Control["VehicleHorn"] = 86] = "VehicleHorn";
90
- Control[Control["VehicleFlyThrottleUp"] = 87] = "VehicleFlyThrottleUp";
91
- Control[Control["VehicleFlyThrottleDown"] = 88] = "VehicleFlyThrottleDown";
92
- Control[Control["VehicleFlyYawLeft"] = 89] = "VehicleFlyYawLeft";
93
- Control[Control["VehicleFlyYawRight"] = 90] = "VehicleFlyYawRight";
94
- Control[Control["VehiclePassengerAim"] = 91] = "VehiclePassengerAim";
95
- Control[Control["VehiclePassengerAttack"] = 92] = "VehiclePassengerAttack";
96
- Control[Control["VehicleSpecialAbilityFranklin"] = 93] = "VehicleSpecialAbilityFranklin";
97
- Control[Control["VehicleStuntUpDown"] = 94] = "VehicleStuntUpDown";
98
- Control[Control["VehicleCinematicUpDown"] = 95] = "VehicleCinematicUpDown";
99
- Control[Control["VehicleCinematicUpOnly"] = 96] = "VehicleCinematicUpOnly";
100
- Control[Control["VehicleCinematicDownOnly"] = 97] = "VehicleCinematicDownOnly";
101
- Control[Control["VehicleCinematicLeftRight"] = 98] = "VehicleCinematicLeftRight";
102
- Control[Control["VehicleSelectNextWeapon"] = 99] = "VehicleSelectNextWeapon";
103
- Control[Control["VehicleSelectPrevWeapon"] = 100] = "VehicleSelectPrevWeapon";
104
- Control[Control["VehicleRoof"] = 101] = "VehicleRoof";
105
- Control[Control["VehicleJump"] = 102] = "VehicleJump";
106
- Control[Control["VehicleGrapplingHook"] = 103] = "VehicleGrapplingHook";
107
- Control[Control["VehicleShuffle"] = 104] = "VehicleShuffle";
108
- Control[Control["VehicleDropProjectile"] = 105] = "VehicleDropProjectile";
109
- Control[Control["VehicleMouseControlOverride"] = 106] = "VehicleMouseControlOverride";
110
- Control[Control["VehicleFlyRollLeftRight"] = 107] = "VehicleFlyRollLeftRight";
111
- Control[Control["VehicleFlyRollLeftOnly"] = 108] = "VehicleFlyRollLeftOnly";
112
- Control[Control["VehicleFlyRollRightOnly"] = 109] = "VehicleFlyRollRightOnly";
113
- Control[Control["VehicleFlyPitchUpDown"] = 110] = "VehicleFlyPitchUpDown";
114
- Control[Control["VehicleFlyPitchUpOnly"] = 111] = "VehicleFlyPitchUpOnly";
115
- Control[Control["VehicleFlyPitchDownOnly"] = 112] = "VehicleFlyPitchDownOnly";
116
- Control[Control["VehicleFlyUnderCarriage"] = 113] = "VehicleFlyUnderCarriage";
117
- Control[Control["VehicleFlyAttack"] = 114] = "VehicleFlyAttack";
118
- Control[Control["VehicleFlySelectNextWeapon"] = 115] = "VehicleFlySelectNextWeapon";
119
- Control[Control["VehicleFlySelectPrevWeapon"] = 116] = "VehicleFlySelectPrevWeapon";
120
- Control[Control["VehicleFlySelectTargetLeft"] = 117] = "VehicleFlySelectTargetLeft";
121
- Control[Control["VehicleFlySelectTargetRight"] = 118] = "VehicleFlySelectTargetRight";
122
- Control[Control["VehicleFlyVerticalFlightMode"] = 119] = "VehicleFlyVerticalFlightMode";
123
- Control[Control["VehicleFlyDuck"] = 120] = "VehicleFlyDuck";
124
- Control[Control["VehicleFlyAttackCamera"] = 121] = "VehicleFlyAttackCamera";
125
- Control[Control["VehicleFlyMouseControlOverride"] = 122] = "VehicleFlyMouseControlOverride";
126
- Control[Control["VehicleSubTurnLeftRight"] = 123] = "VehicleSubTurnLeftRight";
127
- Control[Control["VehicleSubTurnLeftOnly"] = 124] = "VehicleSubTurnLeftOnly";
128
- Control[Control["VehicleSubTurnRightOnly"] = 125] = "VehicleSubTurnRightOnly";
129
- Control[Control["VehicleSubPitchUpDown"] = 126] = "VehicleSubPitchUpDown";
130
- Control[Control["VehicleSubPitchUpOnly"] = 127] = "VehicleSubPitchUpOnly";
131
- Control[Control["VehicleSubPitchDownOnly"] = 128] = "VehicleSubPitchDownOnly";
132
- Control[Control["VehicleSubThrottleUp"] = 129] = "VehicleSubThrottleUp";
133
- Control[Control["VehicleSubThrottleDown"] = 130] = "VehicleSubThrottleDown";
134
- Control[Control["VehicleSubAscend"] = 131] = "VehicleSubAscend";
135
- Control[Control["VehicleSubDescend"] = 132] = "VehicleSubDescend";
136
- Control[Control["VehicleSubTurnHardLeft"] = 133] = "VehicleSubTurnHardLeft";
137
- Control[Control["VehicleSubTurnHardRight"] = 134] = "VehicleSubTurnHardRight";
138
- Control[Control["VehicleSubMouseControlOverride"] = 135] = "VehicleSubMouseControlOverride";
139
- Control[Control["VehiclePushbikePedal"] = 136] = "VehiclePushbikePedal";
140
- Control[Control["VehiclePushbikeSprint"] = 137] = "VehiclePushbikeSprint";
141
- Control[Control["VehiclePushbikeFrontBrake"] = 138] = "VehiclePushbikeFrontBrake";
142
- Control[Control["VehiclePushbikeRearBrake"] = 139] = "VehiclePushbikeRearBrake";
143
- Control[Control["MeleeAttackLight"] = 140] = "MeleeAttackLight";
144
- Control[Control["MeleeAttackHeavy"] = 141] = "MeleeAttackHeavy";
145
- Control[Control["MeleeAttackAlternate"] = 142] = "MeleeAttackAlternate";
146
- Control[Control["MeleeBlock"] = 143] = "MeleeBlock";
147
- Control[Control["ParachuteDeploy"] = 144] = "ParachuteDeploy";
148
- Control[Control["ParachuteDetach"] = 145] = "ParachuteDetach";
149
- Control[Control["ParachuteTurnLeftRight"] = 146] = "ParachuteTurnLeftRight";
150
- Control[Control["ParachuteTurnLeftOnly"] = 147] = "ParachuteTurnLeftOnly";
151
- Control[Control["ParachuteTurnRightOnly"] = 148] = "ParachuteTurnRightOnly";
152
- Control[Control["ParachutePitchUpDown"] = 149] = "ParachutePitchUpDown";
153
- Control[Control["ParachutePitchUpOnly"] = 150] = "ParachutePitchUpOnly";
154
- Control[Control["ParachutePitchDownOnly"] = 151] = "ParachutePitchDownOnly";
155
- Control[Control["ParachuteBrakeLeft"] = 152] = "ParachuteBrakeLeft";
156
- Control[Control["ParachuteBrakeRight"] = 153] = "ParachuteBrakeRight";
157
- Control[Control["ParachuteSmoke"] = 154] = "ParachuteSmoke";
158
- Control[Control["ParachutePrecisionLanding"] = 155] = "ParachutePrecisionLanding";
159
- Control[Control["Map"] = 156] = "Map";
160
- Control[Control["SelectWeaponUnarmed"] = 157] = "SelectWeaponUnarmed";
161
- Control[Control["SelectWeaponMelee"] = 158] = "SelectWeaponMelee";
162
- Control[Control["SelectWeaponHandgun"] = 159] = "SelectWeaponHandgun";
163
- Control[Control["SelectWeaponShotgun"] = 160] = "SelectWeaponShotgun";
164
- Control[Control["SelectWeaponSmg"] = 161] = "SelectWeaponSmg";
165
- Control[Control["SelectWeaponAutoRifle"] = 162] = "SelectWeaponAutoRifle";
166
- Control[Control["SelectWeaponSniper"] = 163] = "SelectWeaponSniper";
167
- Control[Control["SelectWeaponHeavy"] = 164] = "SelectWeaponHeavy";
168
- Control[Control["SelectWeaponSpecial"] = 165] = "SelectWeaponSpecial";
169
- Control[Control["SelectCharacterMichael"] = 166] = "SelectCharacterMichael";
170
- Control[Control["SelectCharacterFranklin"] = 167] = "SelectCharacterFranklin";
171
- Control[Control["SelectCharacterTrevor"] = 168] = "SelectCharacterTrevor";
172
- Control[Control["SelectCharacterMultiplayer"] = 169] = "SelectCharacterMultiplayer";
173
- Control[Control["SaveReplayClip"] = 170] = "SaveReplayClip";
174
- Control[Control["SpecialAbilityPC"] = 171] = "SpecialAbilityPC";
175
- Control[Control["PhoneUp"] = 172] = "PhoneUp";
176
- Control[Control["PhoneDown"] = 173] = "PhoneDown";
177
- Control[Control["PhoneLeft"] = 174] = "PhoneLeft";
178
- Control[Control["PhoneRight"] = 175] = "PhoneRight";
179
- Control[Control["PhoneSelect"] = 176] = "PhoneSelect";
180
- Control[Control["PhoneCancel"] = 177] = "PhoneCancel";
181
- Control[Control["PhoneOption"] = 178] = "PhoneOption";
182
- Control[Control["PhoneExtraOption"] = 179] = "PhoneExtraOption";
183
- Control[Control["PhoneScrollForward"] = 180] = "PhoneScrollForward";
184
- Control[Control["PhoneScrollBackward"] = 181] = "PhoneScrollBackward";
185
- Control[Control["PhoneCameraFocusLock"] = 182] = "PhoneCameraFocusLock";
186
- Control[Control["PhoneCameraGrid"] = 183] = "PhoneCameraGrid";
187
- Control[Control["PhoneCameraSelfie"] = 184] = "PhoneCameraSelfie";
188
- Control[Control["PhoneCameraDOF"] = 185] = "PhoneCameraDOF";
189
- Control[Control["PhoneCameraExpression"] = 186] = "PhoneCameraExpression";
190
- Control[Control["FrontendDown"] = 187] = "FrontendDown";
191
- Control[Control["FrontendUp"] = 188] = "FrontendUp";
192
- Control[Control["FrontendLeft"] = 189] = "FrontendLeft";
193
- Control[Control["FrontendRight"] = 190] = "FrontendRight";
194
- Control[Control["FrontendRdown"] = 191] = "FrontendRdown";
195
- Control[Control["FrontendRup"] = 192] = "FrontendRup";
196
- Control[Control["FrontendRleft"] = 193] = "FrontendRleft";
197
- Control[Control["FrontendRright"] = 194] = "FrontendRright";
198
- Control[Control["FrontendAxisX"] = 195] = "FrontendAxisX";
199
- Control[Control["FrontendAxisY"] = 196] = "FrontendAxisY";
200
- Control[Control["FrontendRightAxisX"] = 197] = "FrontendRightAxisX";
201
- Control[Control["FrontendRightAxisY"] = 198] = "FrontendRightAxisY";
202
- Control[Control["FrontendPause"] = 199] = "FrontendPause";
203
- Control[Control["FrontendPauseAlternate"] = 200] = "FrontendPauseAlternate";
204
- Control[Control["FrontendAccept"] = 201] = "FrontendAccept";
205
- Control[Control["FrontendCancel"] = 202] = "FrontendCancel";
206
- Control[Control["FrontendX"] = 203] = "FrontendX";
207
- Control[Control["FrontendY"] = 204] = "FrontendY";
208
- Control[Control["FrontendLb"] = 205] = "FrontendLb";
209
- Control[Control["FrontendRb"] = 206] = "FrontendRb";
210
- Control[Control["FrontendLt"] = 207] = "FrontendLt";
211
- Control[Control["FrontendRt"] = 208] = "FrontendRt";
212
- Control[Control["FrontendLs"] = 209] = "FrontendLs";
213
- Control[Control["FrontendRs"] = 210] = "FrontendRs";
214
- Control[Control["FrontendLeaderboard"] = 211] = "FrontendLeaderboard";
215
- Control[Control["FrontendSocialClub"] = 212] = "FrontendSocialClub";
216
- Control[Control["FrontendSocialClubSecondary"] = 213] = "FrontendSocialClubSecondary";
217
- Control[Control["FrontendDelete"] = 214] = "FrontendDelete";
218
- Control[Control["FrontendEndscreenAccept"] = 215] = "FrontendEndscreenAccept";
219
- Control[Control["FrontendEndscreenExpand"] = 216] = "FrontendEndscreenExpand";
220
- Control[Control["FrontendSelect"] = 217] = "FrontendSelect";
221
- Control[Control["ScriptLeftAxisX"] = 218] = "ScriptLeftAxisX";
222
- Control[Control["ScriptLeftAxisY"] = 219] = "ScriptLeftAxisY";
223
- Control[Control["ScriptRightAxisX"] = 220] = "ScriptRightAxisX";
224
- Control[Control["ScriptRightAxisY"] = 221] = "ScriptRightAxisY";
225
- Control[Control["ScriptRUp"] = 222] = "ScriptRUp";
226
- Control[Control["ScriptRDown"] = 223] = "ScriptRDown";
227
- Control[Control["ScriptRLeft"] = 224] = "ScriptRLeft";
228
- Control[Control["ScriptRRight"] = 225] = "ScriptRRight";
229
- Control[Control["ScriptLB"] = 226] = "ScriptLB";
230
- Control[Control["ScriptRB"] = 227] = "ScriptRB";
231
- Control[Control["ScriptLT"] = 228] = "ScriptLT";
232
- Control[Control["ScriptRT"] = 229] = "ScriptRT";
233
- Control[Control["ScriptLS"] = 230] = "ScriptLS";
234
- Control[Control["ScriptRS"] = 231] = "ScriptRS";
235
- Control[Control["ScriptPadUp"] = 232] = "ScriptPadUp";
236
- Control[Control["ScriptPadDown"] = 233] = "ScriptPadDown";
237
- Control[Control["ScriptPadLeft"] = 234] = "ScriptPadLeft";
238
- Control[Control["ScriptPadRight"] = 235] = "ScriptPadRight";
239
- Control[Control["ScriptSelect"] = 236] = "ScriptSelect";
240
- Control[Control["CursorAccept"] = 237] = "CursorAccept";
241
- Control[Control["CursorCancel"] = 238] = "CursorCancel";
242
- Control[Control["CursorX"] = 239] = "CursorX";
243
- Control[Control["CursorY"] = 240] = "CursorY";
244
- Control[Control["CursorScrollUp"] = 241] = "CursorScrollUp";
245
- Control[Control["CursorScrollDown"] = 242] = "CursorScrollDown";
246
- Control[Control["EnterCheatCode"] = 243] = "EnterCheatCode";
247
- Control[Control["InteractionMenu"] = 244] = "InteractionMenu";
248
- Control[Control["MpTextChatAll"] = 245] = "MpTextChatAll";
249
- Control[Control["MpTextChatTeam"] = 246] = "MpTextChatTeam";
250
- Control[Control["MpTextChatFriends"] = 247] = "MpTextChatFriends";
251
- Control[Control["MpTextChatCrew"] = 248] = "MpTextChatCrew";
252
- Control[Control["PushToTalk"] = 249] = "PushToTalk";
253
- Control[Control["CreatorLS"] = 250] = "CreatorLS";
254
- Control[Control["CreatorRS"] = 251] = "CreatorRS";
255
- Control[Control["CreatorLT"] = 252] = "CreatorLT";
256
- Control[Control["CreatorRT"] = 253] = "CreatorRT";
257
- Control[Control["CreatorMenuToggle"] = 254] = "CreatorMenuToggle";
258
- Control[Control["CreatorAccept"] = 255] = "CreatorAccept";
259
- Control[Control["CreatorDelete"] = 256] = "CreatorDelete";
260
- Control[Control["Attack2"] = 257] = "Attack2";
261
- Control[Control["RappelJump"] = 258] = "RappelJump";
262
- Control[Control["RappelLongJump"] = 259] = "RappelLongJump";
263
- Control[Control["RappelSmashWindow"] = 260] = "RappelSmashWindow";
264
- Control[Control["PrevWeapon"] = 261] = "PrevWeapon";
265
- Control[Control["NextWeapon"] = 262] = "NextWeapon";
266
- Control[Control["MeleeAttack1"] = 263] = "MeleeAttack1";
267
- Control[Control["MeleeAttack2"] = 264] = "MeleeAttack2";
268
- Control[Control["Whistle"] = 265] = "Whistle";
269
- Control[Control["MoveLeft"] = 266] = "MoveLeft";
270
- Control[Control["MoveRight"] = 267] = "MoveRight";
271
- Control[Control["MoveUp"] = 268] = "MoveUp";
272
- Control[Control["MoveDown"] = 269] = "MoveDown";
273
- Control[Control["LookLeft"] = 270] = "LookLeft";
274
- Control[Control["LookRight"] = 271] = "LookRight";
275
- Control[Control["LookUp"] = 272] = "LookUp";
276
- Control[Control["LookDown"] = 273] = "LookDown";
277
- Control[Control["SniperZoomIn"] = 274] = "SniperZoomIn";
278
- Control[Control["SniperZoomOut"] = 275] = "SniperZoomOut";
279
- Control[Control["SniperZoomInAlternate"] = 276] = "SniperZoomInAlternate";
280
- Control[Control["SniperZoomOutAlternate"] = 277] = "SniperZoomOutAlternate";
281
- Control[Control["VehicleMoveLeft"] = 278] = "VehicleMoveLeft";
282
- Control[Control["VehicleMoveRight"] = 279] = "VehicleMoveRight";
283
- Control[Control["VehicleMoveUp"] = 280] = "VehicleMoveUp";
284
- Control[Control["VehicleMoveDown"] = 281] = "VehicleMoveDown";
285
- Control[Control["VehicleGunLeft"] = 282] = "VehicleGunLeft";
286
- Control[Control["VehicleGunRight"] = 283] = "VehicleGunRight";
287
- Control[Control["VehicleGunUp"] = 284] = "VehicleGunUp";
288
- Control[Control["VehicleGunDown"] = 285] = "VehicleGunDown";
289
- Control[Control["VehicleLookLeft"] = 286] = "VehicleLookLeft";
290
- Control[Control["VehicleLookRight"] = 287] = "VehicleLookRight";
291
- Control[Control["ReplayStartStopRecording"] = 288] = "ReplayStartStopRecording";
292
- Control[Control["ReplayStartStopRecordingSecondary"] = 289] = "ReplayStartStopRecordingSecondary";
293
- Control[Control["ScaledLookLeftRight"] = 290] = "ScaledLookLeftRight";
294
- Control[Control["ScaledLookUpDown"] = 291] = "ScaledLookUpDown";
295
- Control[Control["ScaledLookUpOnly"] = 292] = "ScaledLookUpOnly";
296
- Control[Control["ScaledLookDownOnly"] = 293] = "ScaledLookDownOnly";
297
- Control[Control["ScaledLookLeftOnly"] = 294] = "ScaledLookLeftOnly";
298
- Control[Control["ScaledLookRightOnly"] = 295] = "ScaledLookRightOnly";
299
- Control[Control["ReplayMarkerDelete"] = 296] = "ReplayMarkerDelete";
300
- Control[Control["ReplayClipDelete"] = 297] = "ReplayClipDelete";
301
- Control[Control["ReplayPause"] = 298] = "ReplayPause";
302
- Control[Control["ReplayRewind"] = 299] = "ReplayRewind";
303
- Control[Control["ReplayFfwd"] = 300] = "ReplayFfwd";
304
- Control[Control["ReplayNewmarker"] = 301] = "ReplayNewmarker";
305
- Control[Control["ReplayRecord"] = 302] = "ReplayRecord";
306
- Control[Control["ReplayScreenshot"] = 303] = "ReplayScreenshot";
307
- Control[Control["ReplayHidehud"] = 304] = "ReplayHidehud";
308
- Control[Control["ReplayStartpoint"] = 305] = "ReplayStartpoint";
309
- Control[Control["ReplayEndpoint"] = 306] = "ReplayEndpoint";
310
- Control[Control["ReplayAdvance"] = 307] = "ReplayAdvance";
311
- Control[Control["ReplayBack"] = 308] = "ReplayBack";
312
- Control[Control["ReplayTools"] = 309] = "ReplayTools";
313
- Control[Control["ReplayRestart"] = 310] = "ReplayRestart";
314
- Control[Control["ReplayShowhotkey"] = 311] = "ReplayShowhotkey";
315
- Control[Control["ReplayCycleMarkerLeft"] = 312] = "ReplayCycleMarkerLeft";
316
- Control[Control["ReplayCycleMarkerRight"] = 313] = "ReplayCycleMarkerRight";
317
- Control[Control["ReplayFOVIncrease"] = 314] = "ReplayFOVIncrease";
318
- Control[Control["ReplayFOVDecrease"] = 315] = "ReplayFOVDecrease";
319
- Control[Control["ReplayCameraUp"] = 316] = "ReplayCameraUp";
320
- Control[Control["ReplayCameraDown"] = 317] = "ReplayCameraDown";
321
- Control[Control["ReplaySave"] = 318] = "ReplaySave";
322
- Control[Control["ReplayToggletime"] = 319] = "ReplayToggletime";
323
- Control[Control["ReplayToggletips"] = 320] = "ReplayToggletips";
324
- Control[Control["ReplayPreview"] = 321] = "ReplayPreview";
325
- Control[Control["ReplayToggleTimeline"] = 322] = "ReplayToggleTimeline";
326
- Control[Control["ReplayTimelinePickupClip"] = 323] = "ReplayTimelinePickupClip";
327
- Control[Control["ReplayTimelineDuplicateClip"] = 324] = "ReplayTimelineDuplicateClip";
328
- Control[Control["ReplayTimelinePlaceClip"] = 325] = "ReplayTimelinePlaceClip";
329
- Control[Control["ReplayCtrl"] = 326] = "ReplayCtrl";
330
- Control[Control["ReplayTimelineSave"] = 327] = "ReplayTimelineSave";
331
- Control[Control["ReplayPreviewAudio"] = 328] = "ReplayPreviewAudio";
332
- Control[Control["VehicleDriveLook"] = 329] = "VehicleDriveLook";
333
- Control[Control["VehicleDriveLook2"] = 330] = "VehicleDriveLook2";
334
- Control[Control["VehicleFlyAttack2"] = 331] = "VehicleFlyAttack2";
335
- Control[Control["RadioWheelUpDown"] = 332] = "RadioWheelUpDown";
336
- Control[Control["RadioWheelLeftRight"] = 333] = "RadioWheelLeftRight";
337
- Control[Control["VehicleSlowMoUpDown"] = 334] = "VehicleSlowMoUpDown";
338
- Control[Control["VehicleSlowMoUpOnly"] = 335] = "VehicleSlowMoUpOnly";
339
- Control[Control["VehicleSlowMoDownOnly"] = 336] = "VehicleSlowMoDownOnly";
340
- Control[Control["VehicleHydraulicsControlToggle"] = 337] = "VehicleHydraulicsControlToggle";
341
- Control[Control["VehicleHydraulicsControlLeft"] = 338] = "VehicleHydraulicsControlLeft";
342
- Control[Control["VehicleHydraulicsControlRight"] = 339] = "VehicleHydraulicsControlRight";
343
- Control[Control["VehicleHydraulicsControlUp"] = 340] = "VehicleHydraulicsControlUp";
344
- Control[Control["VehicleHydraulicsControlDown"] = 341] = "VehicleHydraulicsControlDown";
345
- Control[Control["VehicleHydraulicsControlUpDown"] = 342] = "VehicleHydraulicsControlUpDown";
346
- Control[Control["VehicleHydraulicsControlLeftRight"] = 343] = "VehicleHydraulicsControlLeftRight";
347
- Control[Control["SwitchVisor"] = 344] = "SwitchVisor";
348
- Control[Control["VehicleMeleeHold"] = 345] = "VehicleMeleeHold";
349
- Control[Control["VehicleMeleeLeft"] = 346] = "VehicleMeleeLeft";
350
- Control[Control["VehicleMeleeRight"] = 347] = "VehicleMeleeRight";
351
- Control[Control["MapPointOfInterest"] = 348] = "MapPointOfInterest";
352
- Control[Control["ReplaySnapmaticPhoto"] = 349] = "ReplaySnapmaticPhoto";
353
- Control[Control["VehicleCarJump"] = 350] = "VehicleCarJump";
354
- Control[Control["VehicleRocketBoost"] = 351] = "VehicleRocketBoost";
355
- Control[Control["VehicleFlyBoost"] = 352] = "VehicleFlyBoost";
356
- Control[Control["VehicleParachute"] = 353] = "VehicleParachute";
357
- Control[Control["VehicleBikeWings"] = 354] = "VehicleBikeWings";
358
- Control[Control["VehicleFlyBombBay"] = 355] = "VehicleFlyBombBay";
359
- Control[Control["VehicleFlyCounter"] = 356] = "VehicleFlyCounter";
360
- Control[Control["VehicleFlyTransform"] = 357] = "VehicleFlyTransform";
361
- })(Control || (Control = {}));
@@ -1,15 +0,0 @@
1
- export var CursorSprite;
2
- (function (CursorSprite) {
3
- CursorSprite[CursorSprite["Normal"] = 1] = "Normal";
4
- CursorSprite[CursorSprite["LightArrow"] = 2] = "LightArrow";
5
- CursorSprite[CursorSprite["OpenHand"] = 3] = "OpenHand";
6
- CursorSprite[CursorSprite["GrabHand"] = 4] = "GrabHand";
7
- CursorSprite[CursorSprite["MiddleFinger"] = 5] = "MiddleFinger";
8
- CursorSprite[CursorSprite["LeftArrow"] = 6] = "LeftArrow";
9
- CursorSprite[CursorSprite["RightArrow"] = 7] = "RightArrow";
10
- CursorSprite[CursorSprite["UpArrow"] = 8] = "UpArrow";
11
- CursorSprite[CursorSprite["DownArrow"] = 9] = "DownArrow";
12
- CursorSprite[CursorSprite["HorizontalDoubleArrow"] = 10] = "HorizontalDoubleArrow";
13
- CursorSprite[CursorSprite["NormalWithPlus"] = 11] = "NormalWithPlus";
14
- CursorSprite[CursorSprite["NormalWithMinus"] = 12] = "NormalWithMinus";
15
- })(CursorSprite || (CursorSprite = {}));
package/enums/Driving.js DELETED
@@ -1,34 +0,0 @@
1
- export var DrivingStyle;
2
- (function (DrivingStyle) {
3
- DrivingStyle[DrivingStyle["None"] = 0] = "None";
4
- DrivingStyle[DrivingStyle["Normal"] = 786603] = "Normal";
5
- DrivingStyle[DrivingStyle["IgnoreLights"] = 2883621] = "IgnoreLights";
6
- DrivingStyle[DrivingStyle["SometimesOvertakeTraffic"] = 5] = "SometimesOvertakeTraffic";
7
- DrivingStyle[DrivingStyle["Rushed"] = 1074528293] = "Rushed";
8
- DrivingStyle[DrivingStyle["AvoidTraffic"] = 786468] = "AvoidTraffic";
9
- DrivingStyle[DrivingStyle["AvoidTrafficExtremely"] = 6] = "AvoidTrafficExtremely";
10
- DrivingStyle[DrivingStyle["AvoidHighwaysWhenPossible"] = 536870912] = "AvoidHighwaysWhenPossible";
11
- DrivingStyle[DrivingStyle["IgnorePathing"] = 16777216] = "IgnorePathing";
12
- DrivingStyle[DrivingStyle["IgnoreRoads"] = 4194304] = "IgnoreRoads";
13
- DrivingStyle[DrivingStyle["ShortestPath"] = 262144] = "ShortestPath";
14
- DrivingStyle[DrivingStyle["Backwards"] = 1024] = "Backwards";
15
- })(DrivingStyle || (DrivingStyle = {}));
16
- export var VehicleDrivingFlags;
17
- (function (VehicleDrivingFlags) {
18
- VehicleDrivingFlags[VehicleDrivingFlags["None"] = 0] = "None";
19
- VehicleDrivingFlags[VehicleDrivingFlags["FollowTraffic"] = 1] = "FollowTraffic";
20
- VehicleDrivingFlags[VehicleDrivingFlags["YieldToPeds"] = 2] = "YieldToPeds";
21
- VehicleDrivingFlags[VehicleDrivingFlags["AvoidVehicles"] = 4] = "AvoidVehicles";
22
- VehicleDrivingFlags[VehicleDrivingFlags["AvoidEmptyVehicles"] = 8] = "AvoidEmptyVehicles";
23
- VehicleDrivingFlags[VehicleDrivingFlags["AvoidPeds"] = 16] = "AvoidPeds";
24
- VehicleDrivingFlags[VehicleDrivingFlags["AvoidObjects"] = 32] = "AvoidObjects";
25
- VehicleDrivingFlags[VehicleDrivingFlags["StopAtTrafficLights"] = 128] = "StopAtTrafficLights";
26
- VehicleDrivingFlags[VehicleDrivingFlags["UseBlinkers"] = 256] = "UseBlinkers";
27
- VehicleDrivingFlags[VehicleDrivingFlags["AllowGoingWrongWay"] = 512] = "AllowGoingWrongWay";
28
- VehicleDrivingFlags[VehicleDrivingFlags["Reverse"] = 1024] = "Reverse";
29
- VehicleDrivingFlags[VehicleDrivingFlags["AllowMedianCrossing"] = 262144] = "AllowMedianCrossing";
30
- VehicleDrivingFlags[VehicleDrivingFlags["DriveBySight"] = 4194304] = "DriveBySight";
31
- VehicleDrivingFlags[VehicleDrivingFlags["IgnorePathFinding"] = 16777216] = "IgnorePathFinding";
32
- VehicleDrivingFlags[VehicleDrivingFlags["TryToAvoidHighways"] = 536870912] = "TryToAvoidHighways";
33
- VehicleDrivingFlags[VehicleDrivingFlags["StopAtDestination"] = 2147483648] = "StopAtDestination";
34
- })(VehicleDrivingFlags || (VehicleDrivingFlags = {}));
@@ -1,45 +0,0 @@
1
- /**
2
- * List of explosion sources.
3
- */
4
- export var ExplosionType;
5
- (function (ExplosionType) {
6
- ExplosionType[ExplosionType["Grenade"] = 0] = "Grenade";
7
- ExplosionType[ExplosionType["GrenadeL"] = 1] = "GrenadeL";
8
- ExplosionType[ExplosionType["StickyBomb"] = 2] = "StickyBomb";
9
- ExplosionType[ExplosionType["Molotov1"] = 3] = "Molotov1";
10
- ExplosionType[ExplosionType["Rocket"] = 4] = "Rocket";
11
- ExplosionType[ExplosionType["TankShell"] = 5] = "TankShell";
12
- ExplosionType[ExplosionType["HiOctane"] = 6] = "HiOctane";
13
- ExplosionType[ExplosionType["Car"] = 7] = "Car";
14
- ExplosionType[ExplosionType["Plane"] = 8] = "Plane";
15
- ExplosionType[ExplosionType["PetrolPump"] = 9] = "PetrolPump";
16
- ExplosionType[ExplosionType["Bike"] = 10] = "Bike";
17
- ExplosionType[ExplosionType["Steam"] = 11] = "Steam";
18
- ExplosionType[ExplosionType["Flame"] = 12] = "Flame";
19
- ExplosionType[ExplosionType["WaterHydrant"] = 13] = "WaterHydrant";
20
- ExplosionType[ExplosionType["GasCanister"] = 14] = "GasCanister";
21
- ExplosionType[ExplosionType["Boat"] = 15] = "Boat";
22
- ExplosionType[ExplosionType["ShipDestroy"] = 16] = "ShipDestroy";
23
- ExplosionType[ExplosionType["Truck"] = 17] = "Truck";
24
- ExplosionType[ExplosionType["Bullet"] = 18] = "Bullet";
25
- ExplosionType[ExplosionType["SmokeGL"] = 19] = "SmokeGL";
26
- ExplosionType[ExplosionType["SmokeG"] = 20] = "SmokeG";
27
- ExplosionType[ExplosionType["BZGas"] = 21] = "BZGas";
28
- ExplosionType[ExplosionType["Flare"] = 22] = "Flare";
29
- ExplosionType[ExplosionType["GasCanister2"] = 23] = "GasCanister2";
30
- ExplosionType[ExplosionType["Extinguisher"] = 24] = "Extinguisher";
31
- ExplosionType[ExplosionType["ProgramAR"] = 25] = "ProgramAR";
32
- ExplosionType[ExplosionType["Train"] = 26] = "Train";
33
- ExplosionType[ExplosionType["Barrel"] = 27] = "Barrel";
34
- ExplosionType[ExplosionType["Propane"] = 28] = "Propane";
35
- ExplosionType[ExplosionType["Blimp"] = 29] = "Blimp";
36
- ExplosionType[ExplosionType["FlameExplode"] = 30] = "FlameExplode";
37
- ExplosionType[ExplosionType["Tanker"] = 31] = "Tanker";
38
- ExplosionType[ExplosionType["PlaneRocket"] = 32] = "PlaneRocket";
39
- ExplosionType[ExplosionType["VehicleBullet"] = 33] = "VehicleBullet";
40
- ExplosionType[ExplosionType["GasTank"] = 34] = "GasTank";
41
- ExplosionType[ExplosionType["FireWork"] = 35] = "FireWork";
42
- ExplosionType[ExplosionType["SnowBall"] = 36] = "SnowBall";
43
- ExplosionType[ExplosionType["ProxMine"] = 37] = "ProxMine";
44
- ExplosionType[ExplosionType["Valkyrie"] = 38] = "Valkyrie";
45
- })(ExplosionType || (ExplosionType = {}));
@@ -1,20 +0,0 @@
1
- export var FiringPattern;
2
- (function (FiringPattern) {
3
- FiringPattern[FiringPattern["Default"] = 0] = "Default";
4
- FiringPattern[FiringPattern["FullAuto"] = 3337513804] = "FullAuto";
5
- FiringPattern[FiringPattern["BurstFire"] = 3607063905] = "BurstFire";
6
- FiringPattern[FiringPattern["BurstInCover"] = 40051185] = "BurstInCover";
7
- FiringPattern[FiringPattern["BurstFireDriveby"] = 3541198322] = "BurstFireDriveby";
8
- FiringPattern[FiringPattern["FromGround"] = 577037782] = "FromGround";
9
- FiringPattern[FiringPattern["DelayFireByOneSec"] = 2055493265] = "DelayFireByOneSec";
10
- FiringPattern[FiringPattern["SingleShot"] = 1566631136] = "SingleShot";
11
- FiringPattern[FiringPattern["BurstFirePistol"] = 2685983626] = "BurstFirePistol";
12
- FiringPattern[FiringPattern["BurstFireSMG"] = 3507334638] = "BurstFireSMG";
13
- FiringPattern[FiringPattern["BurstFireRifle"] = 2624893958] = "BurstFireRifle";
14
- FiringPattern[FiringPattern["BurstFireMG"] = 3044263348] = "BurstFireMG";
15
- FiringPattern[FiringPattern["BurstFirePumpShotGun"] = 12239771] = "BurstFirePumpShotGun";
16
- FiringPattern[FiringPattern["BurstFireHeli"] = 2437838959] = "BurstFireHeli";
17
- FiringPattern[FiringPattern["BurstFireMicro"] = 1122960381] = "BurstFireMicro";
18
- FiringPattern[FiringPattern["BurstFireBursts"] = 445831135] = "BurstFireBursts";
19
- FiringPattern[FiringPattern["BurstFireTank"] = 3804904049] = "BurstFireTank";
20
- })(FiringPattern || (FiringPattern = {}));
package/enums/Font.js DELETED
@@ -1,8 +0,0 @@
1
- export var Font;
2
- (function (Font) {
3
- Font[Font["ChaletLondon"] = 0] = "ChaletLondon";
4
- Font[Font["HouseScript"] = 1] = "HouseScript";
5
- Font[Font["Monospace"] = 2] = "Monospace";
6
- Font[Font["ChaletComprimeCologne"] = 4] = "ChaletComprimeCologne";
7
- Font[Font["Pricedown"] = 7] = "Pricedown";
8
- })(Font || (Font = {}));
@@ -1,9 +0,0 @@
1
- export var ForceType;
2
- (function (ForceType) {
3
- ForceType[ForceType["MinForce"] = 0] = "MinForce";
4
- ForceType[ForceType["MaxForceRot"] = 1] = "MaxForceRot";
5
- ForceType[ForceType["MinForce2"] = 2] = "MinForce2";
6
- ForceType[ForceType["MaxForceRot2"] = 3] = "MaxForceRot2";
7
- ForceType[ForceType["ForceNoRot"] = 4] = "ForceNoRot";
8
- ForceType[ForceType["ForceRotPlusForce"] = 5] = "ForceRotPlusForce";
9
- })(ForceType || (ForceType = {}));
package/enums/Gender.js DELETED
@@ -1,5 +0,0 @@
1
- export var Gender;
2
- (function (Gender) {
3
- Gender[Gender["Male"] = 0] = "Male";
4
- Gender[Gender["Female"] = 1] = "Female";
5
- })(Gender || (Gender = {}));
@@ -1,6 +0,0 @@
1
- export var HelmetType;
2
- (function (HelmetType) {
3
- HelmetType[HelmetType["RegularMotorcycleHelmet"] = 4096] = "RegularMotorcycleHelmet";
4
- HelmetType[HelmetType["FiremanHelmet"] = 16384] = "FiremanHelmet";
5
- HelmetType[HelmetType["PilotHeadset"] = 32768] = "PilotHeadset";
6
- })(HelmetType || (HelmetType = {}));