@nativewrappers/fivem 0.0.1

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 (421) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +33 -0
  3. package/lib/client/Audio.d.ts +17 -0
  4. package/lib/client/Audio.js +92 -0
  5. package/lib/client/Blip.d.ts +39 -0
  6. package/lib/client/Blip.js +104 -0
  7. package/lib/client/Camera.d.ts +46 -0
  8. package/lib/client/Camera.js +161 -0
  9. package/lib/client/Checkpoint.d.ts +18 -0
  10. package/lib/client/Checkpoint.js +42 -0
  11. package/lib/client/Events.d.ts +11 -0
  12. package/lib/client/Events.js +73 -0
  13. package/lib/client/Game.d.ts +283 -0
  14. package/lib/client/Game.js +451 -0
  15. package/lib/client/GameplayCamera.d.ts +102 -0
  16. package/lib/client/GameplayCamera.js +141 -0
  17. package/lib/client/Model.d.ts +134 -0
  18. package/lib/client/Model.js +198 -0
  19. package/lib/client/NetworkedScene.d.ts +10 -0
  20. package/lib/client/NetworkedScene.js +17 -0
  21. package/lib/client/ParticleEffect.d.ts +80 -0
  22. package/lib/client/ParticleEffect.js +120 -0
  23. package/lib/client/ParticleEffectAsset.d.ts +54 -0
  24. package/lib/client/ParticleEffectAsset.js +104 -0
  25. package/lib/client/Pickup.d.ts +9 -0
  26. package/lib/client/Pickup.js +18 -0
  27. package/lib/client/Raycast.d.ts +49 -0
  28. package/lib/client/Raycast.js +70 -0
  29. package/lib/client/RelationshipGroup.d.ts +49 -0
  30. package/lib/client/RelationshipGroup.js +63 -0
  31. package/lib/client/Rope.d.ts +99 -0
  32. package/lib/client/Rope.js +125 -0
  33. package/lib/client/TaskSequence.d.ts +15 -0
  34. package/lib/client/TaskSequence.js +43 -0
  35. package/lib/client/Tasks.d.ts +66 -0
  36. package/lib/client/Tasks.js +236 -0
  37. package/lib/client/World.d.ts +402 -0
  38. package/lib/client/World.js +726 -0
  39. package/lib/client/cfx/StateBagChangeHandler.d.ts +3 -0
  40. package/lib/client/cfx/StateBagChangeHandler.js +1 -0
  41. package/lib/client/cfx/index.d.ts +7 -0
  42. package/lib/client/cfx/index.js +1 -0
  43. package/lib/client/enums/Alignment.d.ts +5 -0
  44. package/lib/client/enums/Alignment.js +6 -0
  45. package/lib/client/enums/AnimationFlags.d.ts +9 -0
  46. package/lib/client/enums/AnimationFlags.js +10 -0
  47. package/lib/client/enums/AudioFlag.d.ts +37 -0
  48. package/lib/client/enums/AudioFlag.js +38 -0
  49. package/lib/client/enums/BadgeStyle.d.ts +182 -0
  50. package/lib/client/enums/BadgeStyle.js +183 -0
  51. package/lib/client/enums/Blip.d.ts +223 -0
  52. package/lib/client/enums/Blip.js +225 -0
  53. package/lib/client/enums/Bone.d.ts +101 -0
  54. package/lib/client/enums/Bone.js +103 -0
  55. package/lib/client/enums/CameraShake.d.ts +13 -0
  56. package/lib/client/enums/CameraShake.js +14 -0
  57. package/lib/client/enums/CameraTypes.d.ts +7 -0
  58. package/lib/client/enums/CameraTypes.js +8 -0
  59. package/lib/client/enums/CheckboxStyle.d.ts +4 -0
  60. package/lib/client/enums/CheckboxStyle.js +5 -0
  61. package/lib/client/enums/Checkpoint.d.ts +62 -0
  62. package/lib/client/enums/Checkpoint.js +67 -0
  63. package/lib/client/enums/ClassTypes.d.ts +11 -0
  64. package/lib/client/enums/ClassTypes.js +12 -0
  65. package/lib/client/enums/CloudHat.d.ts +26 -0
  66. package/lib/client/enums/CloudHat.js +27 -0
  67. package/lib/client/enums/Control.d.ts +360 -0
  68. package/lib/client/enums/Control.js +361 -0
  69. package/lib/client/enums/CursorSprite.d.ts +14 -0
  70. package/lib/client/enums/CursorSprite.js +15 -0
  71. package/lib/client/enums/Driving.d.ts +32 -0
  72. package/lib/client/enums/Driving.js +34 -0
  73. package/lib/client/enums/ExplosionType.d.ts +44 -0
  74. package/lib/client/enums/ExplosionType.js +45 -0
  75. package/lib/client/enums/FiringPattern.d.ts +19 -0
  76. package/lib/client/enums/FiringPattern.js +20 -0
  77. package/lib/client/enums/Font.d.ts +7 -0
  78. package/lib/client/enums/Font.js +8 -0
  79. package/lib/client/enums/ForceType.d.ts +8 -0
  80. package/lib/client/enums/ForceType.js +9 -0
  81. package/lib/client/enums/Gender.d.ts +4 -0
  82. package/lib/client/enums/Gender.js +5 -0
  83. package/lib/client/enums/HelmetType.d.ts +5 -0
  84. package/lib/client/enums/HelmetType.js +6 -0
  85. package/lib/client/enums/HudColor.d.ts +183 -0
  86. package/lib/client/enums/HudColor.js +184 -0
  87. package/lib/client/enums/HudComponent.d.ts +53 -0
  88. package/lib/client/enums/HudComponent.js +54 -0
  89. package/lib/client/enums/InputMode.d.ts +4 -0
  90. package/lib/client/enums/InputMode.js +5 -0
  91. package/lib/client/enums/IntersectOptions.d.ts +15 -0
  92. package/lib/client/enums/IntersectOptions.js +16 -0
  93. package/lib/client/enums/InvertAxis.d.ts +9 -0
  94. package/lib/client/enums/InvertAxis.js +7 -0
  95. package/lib/client/enums/Language.d.ts +14 -0
  96. package/lib/client/enums/Language.js +15 -0
  97. package/lib/client/enums/LeaveVehicleFlags.d.ts +10 -0
  98. package/lib/client/enums/LeaveVehicleFlags.js +11 -0
  99. package/lib/client/enums/LoadingSpinnerType.d.ts +7 -0
  100. package/lib/client/enums/LoadingSpinnerType.js +8 -0
  101. package/lib/client/enums/MarkerType.d.ts +49 -0
  102. package/lib/client/enums/MarkerType.js +50 -0
  103. package/lib/client/enums/MenuAlignment.d.ts +4 -0
  104. package/lib/client/enums/MenuAlignment.js +5 -0
  105. package/lib/client/enums/NotificationType.d.ts +10 -0
  106. package/lib/client/enums/NotificationType.js +11 -0
  107. package/lib/client/enums/Parachute.d.ts +13 -0
  108. package/lib/client/enums/Parachute.js +15 -0
  109. package/lib/client/enums/PickupType.d.ts +73 -0
  110. package/lib/client/enums/PickupType.js +74 -0
  111. package/lib/client/enums/RadioStation.d.ts +24 -0
  112. package/lib/client/enums/RadioStation.js +25 -0
  113. package/lib/client/enums/RagdollType.d.ts +6 -0
  114. package/lib/client/enums/RagdollType.js +7 -0
  115. package/lib/client/enums/Relationship.d.ts +9 -0
  116. package/lib/client/enums/Relationship.js +10 -0
  117. package/lib/client/enums/RopeType.d.ts +5 -0
  118. package/lib/client/enums/RopeType.js +6 -0
  119. package/lib/client/enums/ScreenEffect.d.ts +83 -0
  120. package/lib/client/enums/ScreenEffect.js +84 -0
  121. package/lib/client/enums/SpeechModifier.d.ts +39 -0
  122. package/lib/client/enums/SpeechModifier.js +40 -0
  123. package/lib/client/enums/Vehicle.d.ts +358 -0
  124. package/lib/client/enums/Vehicle.js +376 -0
  125. package/lib/client/enums/Weather.d.ts +21 -0
  126. package/lib/client/enums/Weather.js +22 -0
  127. package/lib/client/enums/ZoneID.d.ts +94 -0
  128. package/lib/client/enums/ZoneID.js +95 -0
  129. package/lib/client/enums/index.d.ts +42 -0
  130. package/lib/client/enums/index.js +42 -0
  131. package/lib/client/hashes/MaterialHash.d.ts +216 -0
  132. package/lib/client/hashes/MaterialHash.js +217 -0
  133. package/lib/client/hashes/PedHash.d.ts +724 -0
  134. package/lib/client/hashes/PedHash.js +725 -0
  135. package/lib/client/hashes/VehicleHash.d.ts +522 -0
  136. package/lib/client/hashes/VehicleHash.js +523 -0
  137. package/lib/client/hashes/WeaponHash.d.ts +147 -0
  138. package/lib/client/hashes/WeaponHash.js +161 -0
  139. package/lib/client/hashes/WeatherTypeHash.d.ts +21 -0
  140. package/lib/client/hashes/WeatherTypeHash.js +22 -0
  141. package/lib/client/hashes/index.d.ts +5 -0
  142. package/lib/client/hashes/index.js +5 -0
  143. package/lib/client/index.d.ts +24 -0
  144. package/lib/client/index.js +25 -0
  145. package/lib/client/interfaces/Dimensions.d.ts +5 -0
  146. package/lib/client/interfaces/Dimensions.js +1 -0
  147. package/lib/client/models/BaseEntity.d.ts +169 -0
  148. package/lib/client/models/BaseEntity.js +459 -0
  149. package/lib/client/models/Entity.d.ts +9 -0
  150. package/lib/client/models/Entity.js +24 -0
  151. package/lib/client/models/EntityBone.d.ts +12 -0
  152. package/lib/client/models/EntityBone.js +24 -0
  153. package/lib/client/models/EntityBoneCollection.d.ts +11 -0
  154. package/lib/client/models/EntityBoneCollection.js +16 -0
  155. package/lib/client/models/Ped.d.ts +199 -0
  156. package/lib/client/models/Ped.js +685 -0
  157. package/lib/client/models/PedBone.d.ts +6 -0
  158. package/lib/client/models/PedBone.js +9 -0
  159. package/lib/client/models/PedBoneCollection.d.ts +8 -0
  160. package/lib/client/models/PedBoneCollection.js +19 -0
  161. package/lib/client/models/Player.d.ts +63 -0
  162. package/lib/client/models/Player.js +174 -0
  163. package/lib/client/models/Prop.d.ts +11 -0
  164. package/lib/client/models/Prop.js +26 -0
  165. package/lib/client/models/Vehicle.d.ts +171 -0
  166. package/lib/client/models/Vehicle.js +551 -0
  167. package/lib/client/models/VehicleDoor.d.ts +19 -0
  168. package/lib/client/models/VehicleDoor.js +42 -0
  169. package/lib/client/models/VehicleDoorCollection.d.ts +14 -0
  170. package/lib/client/models/VehicleDoorCollection.js +61 -0
  171. package/lib/client/models/VehicleMod.d.ts +16 -0
  172. package/lib/client/models/VehicleMod.js +33 -0
  173. package/lib/client/models/VehicleModCollection.d.ts +61 -0
  174. package/lib/client/models/VehicleModCollection.js +227 -0
  175. package/lib/client/models/VehicleToggleMod.d.ts +14 -0
  176. package/lib/client/models/VehicleToggleMod.js +27 -0
  177. package/lib/client/models/VehicleWheel.d.ts +11 -0
  178. package/lib/client/models/VehicleWheel.js +21 -0
  179. package/lib/client/models/VehicleWheelCollection.d.ts +13 -0
  180. package/lib/client/models/VehicleWheelCollection.js +56 -0
  181. package/lib/client/models/VehicleWindow.d.ts +16 -0
  182. package/lib/client/models/VehicleWindow.js +33 -0
  183. package/lib/client/models/VehicleWindowCollection.d.ts +14 -0
  184. package/lib/client/models/VehicleWindowCollection.js +55 -0
  185. package/lib/client/models/index.d.ts +18 -0
  186. package/lib/client/models/index.js +18 -0
  187. package/lib/client/types/EntityType.d.ts +2 -0
  188. package/lib/client/types/EntityType.js +1 -0
  189. package/lib/client/ui/Container.d.ts +11 -0
  190. package/lib/client/ui/Container.js +28 -0
  191. package/lib/client/ui/Effects.d.ts +8 -0
  192. package/lib/client/ui/Effects.js +106 -0
  193. package/lib/client/ui/Fading.d.ts +41 -0
  194. package/lib/client/ui/Fading.js +69 -0
  195. package/lib/client/ui/Hud.d.ts +16 -0
  196. package/lib/client/ui/Hud.js +39 -0
  197. package/lib/client/ui/InstructionalButtons.d.ts +33 -0
  198. package/lib/client/ui/InstructionalButtons.js +53 -0
  199. package/lib/client/ui/LoadingPrompt.d.ts +27 -0
  200. package/lib/client/ui/LoadingPrompt.js +45 -0
  201. package/lib/client/ui/Notification.d.ts +5 -0
  202. package/lib/client/ui/Notification.js +8 -0
  203. package/lib/client/ui/Rectangle.d.ts +10 -0
  204. package/lib/client/ui/Rectangle.js +37 -0
  205. package/lib/client/ui/Scaleform.d.ts +106 -0
  206. package/lib/client/ui/Scaleform.js +234 -0
  207. package/lib/client/ui/Screen.d.ts +16 -0
  208. package/lib/client/ui/Screen.js +72 -0
  209. package/lib/client/ui/Sprite.d.ts +17 -0
  210. package/lib/client/ui/Sprite.js +53 -0
  211. package/lib/client/ui/Text.d.ts +31 -0
  212. package/lib/client/ui/Text.js +102 -0
  213. package/lib/client/ui/Timerbar.d.ts +44 -0
  214. package/lib/client/ui/Timerbar.js +241 -0
  215. package/lib/client/ui/index.d.ts +15 -0
  216. package/lib/client/ui/index.js +15 -0
  217. package/lib/client/ui/interfaces/IButton.d.ts +5 -0
  218. package/lib/client/ui/interfaces/IButton.js +1 -0
  219. package/lib/client/ui/interfaces/IDrawable.d.ts +7 -0
  220. package/lib/client/ui/interfaces/IDrawable.js +1 -0
  221. package/lib/client/ui/interfaces/index.d.ts +2 -0
  222. package/lib/client/ui/interfaces/index.js +1 -0
  223. package/lib/client/ui/menu/Menu.d.ts +108 -0
  224. package/lib/client/ui/menu/Menu.js +802 -0
  225. package/lib/client/ui/menu/MenuControl.d.ts +6 -0
  226. package/lib/client/ui/menu/MenuControl.js +11 -0
  227. package/lib/client/ui/menu/MenuControls.d.ts +9 -0
  228. package/lib/client/ui/menu/MenuControls.js +11 -0
  229. package/lib/client/ui/menu/MenuSettings.d.ts +20 -0
  230. package/lib/client/ui/menu/MenuSettings.js +51 -0
  231. package/lib/client/ui/menu/index.d.ts +6 -0
  232. package/lib/client/ui/menu/index.js +6 -0
  233. package/lib/client/ui/menu/items/UIMenuCheckboxItem.d.ts +20 -0
  234. package/lib/client/ui/menu/items/UIMenuCheckboxItem.js +57 -0
  235. package/lib/client/ui/menu/items/UIMenuItem.d.ts +78 -0
  236. package/lib/client/ui/menu/items/UIMenuItem.js +1090 -0
  237. package/lib/client/ui/menu/items/UIMenuListItem.d.ts +31 -0
  238. package/lib/client/ui/menu/items/UIMenuListItem.js +110 -0
  239. package/lib/client/ui/menu/items/UIMenuSeparatorItem.d.ts +11 -0
  240. package/lib/client/ui/menu/items/UIMenuSeparatorItem.js +29 -0
  241. package/lib/client/ui/menu/items/UIMenuSliderItem.d.ts +47 -0
  242. package/lib/client/ui/menu/items/UIMenuSliderItem.js +173 -0
  243. package/lib/client/ui/menu/items/index.d.ts +6 -0
  244. package/lib/client/ui/menu/items/index.js +6 -0
  245. package/lib/client/ui/menu/items/panels/AbstractUIMenuPanel.d.ts +17 -0
  246. package/lib/client/ui/menu/items/panels/AbstractUIMenuPanel.js +43 -0
  247. package/lib/client/ui/menu/items/panels/UIMenuColorPanel.d.ts +36 -0
  248. package/lib/client/ui/menu/items/panels/UIMenuColorPanel.js +211 -0
  249. package/lib/client/ui/menu/items/panels/UIMenuGridPanel.d.ts +40 -0
  250. package/lib/client/ui/menu/items/panels/UIMenuGridPanel.js +215 -0
  251. package/lib/client/ui/menu/items/panels/UIMenuPercentagePanel.d.ts +26 -0
  252. package/lib/client/ui/menu/items/panels/UIMenuPercentagePanel.js +115 -0
  253. package/lib/client/ui/menu/items/panels/UIMenuStatisticsPanel.d.ts +16 -0
  254. package/lib/client/ui/menu/items/panels/UIMenuStatisticsPanel.js +77 -0
  255. package/lib/client/ui/menu/items/panels/UIMenuStatisticsPanelItem.d.ts +13 -0
  256. package/lib/client/ui/menu/items/panels/UIMenuStatisticsPanelItem.js +32 -0
  257. package/lib/client/ui/menu/items/panels/index.d.ts +6 -0
  258. package/lib/client/ui/menu/items/panels/index.js +6 -0
  259. package/lib/client/ui/menu/modules/ListItem.d.ts +6 -0
  260. package/lib/client/ui/menu/modules/ListItem.js +8 -0
  261. package/lib/client/ui/menu/modules/index.d.ts +1 -0
  262. package/lib/client/ui/menu/modules/index.js +1 -0
  263. package/lib/client/utils/Animations.d.ts +19 -0
  264. package/lib/client/utils/Animations.js +55 -0
  265. package/lib/client/utils/Color.d.ts +15 -0
  266. package/lib/client/utils/Color.js +22 -0
  267. package/lib/client/utils/Crypto.d.ts +3 -0
  268. package/lib/client/utils/Crypto.js +25 -0
  269. package/lib/client/utils/LiteEvent.d.ts +13 -0
  270. package/lib/client/utils/LiteEvent.js +21 -0
  271. package/lib/client/utils/Maths.d.ts +4 -0
  272. package/lib/client/utils/Maths.js +10 -0
  273. package/lib/client/utils/Point.d.ts +9 -0
  274. package/lib/client/utils/Point.js +28 -0
  275. package/lib/client/utils/PointF.d.ts +12 -0
  276. package/lib/client/utils/PointF.js +11 -0
  277. package/lib/client/utils/Quaternion.d.ts +10 -0
  278. package/lib/client/utils/Quaternion.js +23 -0
  279. package/lib/client/utils/Size.d.ts +5 -0
  280. package/lib/client/utils/Size.js +6 -0
  281. package/lib/client/utils/String.d.ts +6 -0
  282. package/lib/client/utils/String.js +25 -0
  283. package/lib/client/utils/Vector2.d.ts +54 -0
  284. package/lib/client/utils/Vector2.js +106 -0
  285. package/lib/client/utils/Vector3.d.ts +69 -0
  286. package/lib/client/utils/Vector3.js +140 -0
  287. package/lib/client/utils/Vector4.d.ts +62 -0
  288. package/lib/client/utils/Vector4.js +124 -0
  289. package/lib/client/utils/enumValues.d.ts +12 -0
  290. package/lib/client/utils/enumValues.js +14 -0
  291. package/lib/client/utils/getStringFromUInt8Array.d.ts +8 -0
  292. package/lib/client/utils/getStringFromUInt8Array.js +10 -0
  293. package/lib/client/utils/getUInt32FromUint8Array.d.ts +8 -0
  294. package/lib/client/utils/getUInt32FromUint8Array.js +8 -0
  295. package/lib/client/utils/index.d.ts +10 -0
  296. package/lib/client/utils/index.js +10 -0
  297. package/lib/client/weapon/DlcWeaponData.d.ts +43 -0
  298. package/lib/client/weapon/DlcWeaponData.js +44 -0
  299. package/lib/client/weapon/Mk2WeaponHash.d.ts +18 -0
  300. package/lib/client/weapon/Mk2WeaponHash.js +25 -0
  301. package/lib/client/weapon/Weapon.d.ts +169 -0
  302. package/lib/client/weapon/Weapon.js +267 -0
  303. package/lib/client/weapon/WeaponAsset.d.ts +55 -0
  304. package/lib/client/weapon/WeaponAsset.js +83 -0
  305. package/lib/client/weapon/WeaponCollection.d.ts +90 -0
  306. package/lib/client/weapon/WeaponCollection.js +186 -0
  307. package/lib/client/weapon/WeaponDisplayNameByHash.d.ts +6 -0
  308. package/lib/client/weapon/WeaponDisplayNameByHash.js +75 -0
  309. package/lib/client/weapon/WeaponGroup.d.ts +18 -0
  310. package/lib/client/weapon/WeaponGroup.js +19 -0
  311. package/lib/client/weapon/WeaponHudStats.d.ts +27 -0
  312. package/lib/client/weapon/WeaponHudStats.js +38 -0
  313. package/lib/client/weapon/WeaponLivery.d.ts +13 -0
  314. package/lib/client/weapon/WeaponLivery.js +14 -0
  315. package/lib/client/weapon/WeaponLiveryColor.d.ts +34 -0
  316. package/lib/client/weapon/WeaponLiveryColor.js +35 -0
  317. package/lib/client/weapon/WeaponTint.d.ts +42 -0
  318. package/lib/client/weapon/WeaponTint.js +43 -0
  319. package/lib/client/weapon/index.d.ts +8 -0
  320. package/lib/client/weapon/index.js +8 -0
  321. package/lib/client/weaponComponent/ComponentAttachmentPoint.d.ts +18 -0
  322. package/lib/client/weaponComponent/ComponentAttachmentPoint.js +19 -0
  323. package/lib/client/weaponComponent/ComponentAttachmentPointByHash.d.ts +7 -0
  324. package/lib/client/weaponComponent/ComponentAttachmentPointByHash.js +309 -0
  325. package/lib/client/weaponComponent/ComponentDisplayNameByHash.d.ts +6 -0
  326. package/lib/client/weaponComponent/ComponentDisplayNameByHash.js +280 -0
  327. package/lib/client/weaponComponent/DlcWeaponComponentData.d.ts +40 -0
  328. package/lib/client/weaponComponent/DlcWeaponComponentData.js +44 -0
  329. package/lib/client/weaponComponent/InvalidWeaponComponent.d.ts +12 -0
  330. package/lib/client/weaponComponent/InvalidWeaponComponent.js +28 -0
  331. package/lib/client/weaponComponent/WeaponComponent.d.ts +81 -0
  332. package/lib/client/weaponComponent/WeaponComponent.js +119 -0
  333. package/lib/client/weaponComponent/WeaponComponentCollection.d.ts +108 -0
  334. package/lib/client/weaponComponent/WeaponComponentCollection.js +172 -0
  335. package/lib/client/weaponComponent/WeaponComponentHash.d.ts +671 -0
  336. package/lib/client/weaponComponent/WeaponComponentHash.js +887 -0
  337. package/lib/client/weaponComponent/WeaponComponentHashesByWeaponHash.d.ts +8 -0
  338. package/lib/client/weaponComponent/WeaponComponentHashesByWeaponHash.js +823 -0
  339. package/lib/client/weaponComponent/WeaponComponentHudStats.d.ts +27 -0
  340. package/lib/client/weaponComponent/WeaponComponentHudStats.js +34 -0
  341. package/lib/client/weaponComponent/index.d.ts +5 -0
  342. package/lib/client/weaponComponent/index.js +5 -0
  343. package/lib/common/Convar.d.ts +8 -0
  344. package/lib/common/Convar.js +20 -0
  345. package/lib/common/Kvp.d.ts +91 -0
  346. package/lib/common/Kvp.js +161 -0
  347. package/lib/common/Resource.d.ts +14 -0
  348. package/lib/common/Resource.js +35 -0
  349. package/lib/common/index.d.ts +5 -0
  350. package/lib/common/index.js +5 -0
  351. package/lib/common/types.d.ts +6 -0
  352. package/lib/common/types.js +1 -0
  353. package/lib/common/utils/Color.d.ts +10 -0
  354. package/lib/common/utils/Color.js +17 -0
  355. package/lib/common/utils/Maths.d.ts +4 -0
  356. package/lib/common/utils/Maths.js +10 -0
  357. package/lib/common/utils/PointF.d.ts +12 -0
  358. package/lib/common/utils/PointF.js +11 -0
  359. package/lib/common/utils/Quaternion.d.ts +10 -0
  360. package/lib/common/utils/Quaternion.js +23 -0
  361. package/lib/common/utils/Vector2.d.ts +58 -0
  362. package/lib/common/utils/Vector2.js +113 -0
  363. package/lib/common/utils/Vector3.d.ts +73 -0
  364. package/lib/common/utils/Vector3.js +147 -0
  365. package/lib/common/utils/Vector4.d.ts +66 -0
  366. package/lib/common/utils/Vector4.js +131 -0
  367. package/lib/common/utils/cleanPlayerName.d.ts +6 -0
  368. package/lib/common/utils/cleanPlayerName.js +27 -0
  369. package/lib/common/utils/enumValues.d.ts +12 -0
  370. package/lib/common/utils/enumValues.js +14 -0
  371. package/lib/common/utils/getStringFromUInt8Array.d.ts +8 -0
  372. package/lib/common/utils/getStringFromUInt8Array.js +10 -0
  373. package/lib/common/utils/getUInt32FromUint8Array.d.ts +8 -0
  374. package/lib/common/utils/getUInt32FromUint8Array.js +8 -0
  375. package/lib/common/utils/index.d.ts +12 -0
  376. package/lib/common/utils/index.js +12 -0
  377. package/lib/server/Anticheat.d.ts +0 -0
  378. package/lib/server/Anticheat.js +25 -0
  379. package/lib/server/Events.d.ts +35 -0
  380. package/lib/server/Events.js +102 -0
  381. package/lib/server/Game.d.ts +56 -0
  382. package/lib/server/Game.js +86 -0
  383. package/lib/server/cfx/StateBagChangeHandler.d.ts +9 -0
  384. package/lib/server/cfx/StateBagChangeHandler.js +4 -0
  385. package/lib/server/cfx/index.d.ts +7 -0
  386. package/lib/server/cfx/index.js +1 -0
  387. package/lib/server/entities/BaseEntity.d.ts +115 -0
  388. package/lib/server/entities/BaseEntity.js +161 -0
  389. package/lib/server/entities/Entity.d.ts +18 -0
  390. package/lib/server/entities/Entity.js +22 -0
  391. package/lib/server/entities/Ped.d.ts +87 -0
  392. package/lib/server/entities/Ped.js +122 -0
  393. package/lib/server/entities/Player.d.ts +163 -0
  394. package/lib/server/entities/Player.js +235 -0
  395. package/lib/server/entities/Prop.d.ts +32 -0
  396. package/lib/server/entities/Prop.js +42 -0
  397. package/lib/server/entities/Vehicle.d.ts +230 -0
  398. package/lib/server/entities/Vehicle.js +331 -0
  399. package/lib/server/entities/index.d.ts +5 -0
  400. package/lib/server/entities/index.js +5 -0
  401. package/lib/server/enum/ClassTypes.d.ts +11 -0
  402. package/lib/server/enum/ClassTypes.js +12 -0
  403. package/lib/server/enum/PopulationType.d.ts +13 -0
  404. package/lib/server/enum/PopulationType.js +14 -0
  405. package/lib/server/enum/VehicleLockStatus.d.ts +9 -0
  406. package/lib/server/enum/VehicleLockStatus.js +10 -0
  407. package/lib/server/enum/VehicleType.d.ts +10 -0
  408. package/lib/server/enum/VehicleType.js +11 -0
  409. package/lib/server/enum/eEntityType.d.ts +5 -0
  410. package/lib/server/enum/eEntityType.js +6 -0
  411. package/lib/server/enum/index.d.ts +5 -0
  412. package/lib/server/enum/index.js +5 -0
  413. package/lib/server/index.d.ts +7 -0
  414. package/lib/server/index.js +7 -0
  415. package/lib/server/type/Anticheat.d.ts +471 -0
  416. package/lib/server/type/Anticheat.js +160 -0
  417. package/lib/server/type/Hash.d.ts +3 -0
  418. package/lib/server/type/Hash.js +2 -0
  419. package/lib/server/utils/index.d.ts +1 -0
  420. package/lib/server/utils/index.js +1 -0
  421. package/package.json +54 -0
@@ -0,0 +1,724 @@
1
+ export declare enum PedHash {
2
+ Michael = 225514697,
3
+ Franklin = 2602752943,
4
+ Trevor = 2608926626,
5
+ Abigail = 1074457665,
6
+ Agent = 610988552,
7
+ Agent14 = 4227433577,
8
+ AmandaTownley = 1830688247,
9
+ Andreas = 1206185632,
10
+ Ashley = 2129936603,
11
+ AviSchwartzman = 939183526,
12
+ Ballasog = 2802535058,
13
+ Bankman = 2426248831,
14
+ Barry = 797459875,
15
+ Bestmen = 1464257942,
16
+ Beverly = 3181518428,
17
+ Brad = 3183167778,
18
+ Bride = 1633872967,
19
+ Car3Guy1 = 2230970679,
20
+ Car3Guy2 = 1975732938,
21
+ Casey = 3774489940,
22
+ Chef = 1240128502,
23
+ Chef2 = 2240322243,
24
+ Clay = 1825562762,
25
+ Claypain = 2634057640,
26
+ Cletus = 3865252245,
27
+ CrisFormage = 678319271,
28
+ Dale = 1182012905,
29
+ DaveNorton = 365775923,
30
+ Denise = 2181772221,
31
+ Devin = 1952555184,
32
+ DoaMan = 1646160893,
33
+ Dom = 2620240008,
34
+ Dreyfuss = 3666413874,
35
+ DrFriedlander = 3422293493,
36
+ EdToh = 712602007,
37
+ Fabien = 3499148112,
38
+ FbiSuit01 = 988062523,
39
+ Floyd = 2981205682,
40
+ G = 2216405299,
41
+ Groom = 4274948997,
42
+ Hao = 1704428387,
43
+ Hunter = 3457361118,
44
+ Janet = 225287241,
45
+ JayNorris = 2050158196,
46
+ Jewelass = 257763003,
47
+ JimmyBoston = 3986688045,
48
+ JimmyDisanto = 1459905209,
49
+ JoeMinuteman = 3189787803,
50
+ JohnnyKlebitz = 2278195374,
51
+ Josef = 3776618420,
52
+ Josh = 2040438510,
53
+ KarenDaniels = 3948009817,
54
+ KerryMcintosh = 1530648845,
55
+ LamarDavis = 1706635382,
56
+ Lazlow = 3756278757,
57
+ LesterCrest = 1302784073,
58
+ Lifeinvad01 = 1401530684,
59
+ Lifeinvad02 = 666718676,
60
+ Magenta = 4242313482,
61
+ Malc = 4055673113,
62
+ Manuel = 4248931856,
63
+ Marnie = 411185872,
64
+ MaryAnn = 2741999622,
65
+ Maude = 1005070462,
66
+ Michelle = 3214308084,
67
+ Milton = 3408943538,
68
+ Molly = 2936266209,
69
+ MrK = 3990661997,
70
+ MrsPhillips = 946007720,
71
+ MrsThornhill = 503621995,
72
+ Natalia = 3726105915,
73
+ NervousRon = 3170921201,
74
+ Nigel = 3367442045,
75
+ OldMan1a = 1906124788,
76
+ OldMan2 = 4011150407,
77
+ Omega = 1625728984,
78
+ ONeil = 768005095,
79
+ Orleans = 1641334641,
80
+ Ortega = 648372919,
81
+ Paper = 2577072326,
82
+ Patricia = 3312325004,
83
+ Popov = 645279998,
84
+ Paige = 357551935,
85
+ Priest = 1681385341,
86
+ PrologueDriver = 2237544099,
87
+ PrologueSec01 = 1888624839,
88
+ PrologueSec02 = 666086773,
89
+ RampGang = 3845001836,
90
+ RampHic = 1165307954,
91
+ RampHipster = 3740245870,
92
+ RampMex = 3870061732,
93
+ Rashkovsky = 940326374,
94
+ RoccoPelosi = 3585757951,
95
+ RussianDrunk = 1024089777,
96
+ ScreenWriter = 4293277303,
97
+ SiemonYetarian = 1283141381,
98
+ Solomon = 2260598310,
99
+ SteveHains = 941695432,
100
+ Stretch = 915948376,
101
+ Talina = 3885222120,
102
+ Tanisha = 226559113,
103
+ TaoCheng = 3697041061,
104
+ TaosTranslator = 2089096292,
105
+ TennisCoach = 2721800023,
106
+ Terry = 1728056212,
107
+ TomEpsilon = 3447159466,
108
+ Tonya = 3402126148,
109
+ TracyDisanto = 3728026165,
110
+ TrafficWarden = 1461287021,
111
+ TylerDixon = 1382414087,
112
+ VagosSpeak = 4194109068,
113
+ Wade = 2459507570,
114
+ WeiCheng = 2867128955,
115
+ Zimbor = 188012277,
116
+ AbigailCutscene = 2306246977,
117
+ AgentCutscene = 3614493108,
118
+ Agent14Cutscene = 1841036427,
119
+ AmandaTownleyCutscene = 2515474659,
120
+ AndreasCutscene = 3881194279,
121
+ AnitaCutscene = 117698822,
122
+ AntonCutscene = 2781317046,
123
+ AshleyCutscene = 650367097,
124
+ AviSchwartzmanCutscene = 2560490906,
125
+ BallasogCutscene = 2884567044,
126
+ BankmanCutscene = 2539657518,
127
+ BarryCutscene = 1767447799,
128
+ BeverlyCutscene = 3027157846,
129
+ BradCutscene = 4024807398,
130
+ BradCadaverCutscene = 1915268960,
131
+ BrideCutscene = 2193587873,
132
+ BurgerDrugCutscene = 2363277399,
133
+ Car3Guy1Cutscene = 71501447,
134
+ Car3Guy2Cutscene = 327394568,
135
+ CarBuyerCutscene = 2362341647,
136
+ CaseyCutscene = 3935738944,
137
+ ChefCutscene = 2739391114,
138
+ Chef2Cutscene = 2925257274,
139
+ ChinGoonCutscene = 2831296918,
140
+ ClayCutscene = 3687553076,
141
+ CletusCutscene = 3404326357,
142
+ CopCutscene = 2595446627,
143
+ CrisFormageCutscene = 3253960934,
144
+ CustomerCutscene = 2756669323,
145
+ DaleCutscene = 216536661,
146
+ DaveNortonCutscene = 2240226444,
147
+ DebraCutscene = 3973074921,
148
+ DeniseCutscene = 1870669624,
149
+ DeniseFriendCutscene = 3045926185,
150
+ DevinCutscene = 788622594,
151
+ DomCutscene = 1198698306,
152
+ DreyfussCutscene = 1012965715,
153
+ DrFriedlanderCutscene = 2745392175,
154
+ FabienCutscene = 1191403201,
155
+ FbiSuit01Cutscene = 1482427218,
156
+ FloydCutscene = 103106535,
157
+ FosRepCutscene = 466359675,
158
+ GCutscene = 2727244247,
159
+ GroomCutscene = 2058033618,
160
+ GroveStrDlrCutscene = 3898166818,
161
+ GuadalopeCutscene = 261428209,
162
+ GurkCutscene = 3272931111,
163
+ HaoCutscene = 3969814300,
164
+ HughCutscene = 1863555924,
165
+ HunterCutscene = 1531218220,
166
+ ImranCutscene = 3812756443,
167
+ JackHowitzerCutscene = 1153203121,
168
+ JanetCutscene = 808778210,
169
+ JanitorCutscene = 3254803008,
170
+ JewelassCutscene = 1145088004,
171
+ JimmyBostonCutscene = 60192701,
172
+ JimmyDisantoCutscene = 3100414644,
173
+ JoeMinutemanCutscene = 4036845097,
174
+ JohnnyKlebitzCutscene = 4203395201,
175
+ JosefCutscene = 1167549130,
176
+ JoshCutscene = 1158606749,
177
+ KarenDanielsCutscene = 1269774364,
178
+ LamarDavisCutscene = 1162230285,
179
+ LazlowCutscene = 949295643,
180
+ LesterCrestCutscene = 3046438339,
181
+ Lifeinvad01Cutscene = 1918178165,
182
+ MagentaCutscene = 1477887514,
183
+ ManuelCutscene = 4222842058,
184
+ MarnieCutscene = 1464721716,
185
+ MartinMadrazoCutscene = 1129928304,
186
+ MaryannCutscene = 161007533,
187
+ MaudeCutscene = 3166991819,
188
+ MerryWeatherCutscene = 1631478380,
189
+ MichelleCutscene = 1890499016,
190
+ MiltonCutscene = 3077190415,
191
+ MollyCutscene = 1167167044,
192
+ MoviePremFemaleCutscene = 1270514905,
193
+ MoviePremMaleCutscene = 2372398717,
194
+ MrKCutscene = 3284966005,
195
+ MrsPhillipsCutscene = 3422397391,
196
+ MrsThornhillCutscene = 1334976110,
197
+ NataliaCutscene = 1325314544,
198
+ NervousRonCutscene = 2023152276,
199
+ NigelCutscene = 3779566603,
200
+ OldMan1aCutscene = 518814684,
201
+ OldMan2Cutscene = 2566514544,
202
+ OmegaCutscene = 2339419141,
203
+ OrleansCutscene = 2905870170,
204
+ OrtegaCutscene = 3235579087,
205
+ OscarCutscene = 4095687067,
206
+ PaigeCutscene = 1528799427,
207
+ PaperCutscene = 1798879480,
208
+ PopovCutscene = 1635617250,
209
+ PatriciaCutscene = 3750433537,
210
+ PornDudesCutscene = 793443893,
211
+ PriestCutscene = 1299047806,
212
+ PrologueDriverCutscene = 4027271643,
213
+ PrologueSec01Cutscene = 2141384740,
214
+ PrologueSec02Cutscene = 512955554,
215
+ RampGangCutscene = 3263172030,
216
+ RampHicCutscene = 2240582840,
217
+ RampHipsterCutscene = 569740212,
218
+ RampMarineCutscene = 1634506681,
219
+ RampMexCutscene = 4132362192,
220
+ RashkovskyCutscene = 411081129,
221
+ ReporterCutscene = 776079908,
222
+ RoccoPelosiCutscene = 2858686092,
223
+ RussianDrunkCutscene = 1179785778,
224
+ ScreenWriterCutscene = 2346790124,
225
+ SiemonYetarianCutscene = 3230888450,
226
+ SolomonCutscene = 4140949582,
227
+ SteveHainsCutscene = 2766184958,
228
+ StretchCutscene = 2302502917,
229
+ Stripper01Cutscene = 2934601397,
230
+ Stripper02Cutscene = 2168724337,
231
+ TanishaCutscene = 1123963760,
232
+ TaoChengCutscene = 2288257085,
233
+ TaosTranslatorCutscene = 1397974313,
234
+ TennisCoachCutscene = 1545995274,
235
+ TerryCutscene = 978452933,
236
+ TomCutscene = 1776856003,
237
+ TomEpsilonCutscene = 2349847778,
238
+ TonyaCutscene = 1665391897,
239
+ TracyDisantoCutscene = 101298480,
240
+ TrafficWardenCutscene = 3727243251,
241
+ UndercoverCopCutscene = 4017642090,
242
+ VagosSpeakCutscene = 1224690857,
243
+ WadeCutscene = 3529955798,
244
+ WeiChengCutscene = 819699067,
245
+ ZimborCutscene = 3937184496,
246
+ Boar = 3462393972,
247
+ Cat = 1462895032,
248
+ ChickenHawk = 2864127842,
249
+ Chimp = 2825402133,
250
+ Chop = 351016938,
251
+ Cormorant = 1457690978,
252
+ Cow = 4244282910,
253
+ Coyote = 1682622302,
254
+ Crow = 402729631,
255
+ Deer = 3630914197,
256
+ Dolphin = 2344268885,
257
+ Fish = 802685111,
258
+ Hen = 1794449327,
259
+ HammerShark = 1015224100,
260
+ Humpback = 1193010354,
261
+ Husky = 1318032802,
262
+ KillerWhale = 2374682809,
263
+ MountainLion = 307287994,
264
+ Pig = 2971380566,
265
+ Pigeon = 111281960,
266
+ Poodle = 1125994524,
267
+ Pug = 1832265812,
268
+ Rabbit = 3753204865,
269
+ Rat = 3283429734,
270
+ Retriever = 882848737,
271
+ Rhesus = 3268439891,
272
+ Rottweiler = 2506301981,
273
+ Seagull = 3549666813,
274
+ Shepherd = 1126154828,
275
+ Stingray = 2705875277,
276
+ TigerShark = 113504370,
277
+ Westy = 2910340283,
278
+ Abner = 4037813798,
279
+ AlDiNapoli = 4042020578,
280
+ Antonb = 3479321132,
281
+ Armoured01 = 3455013896,
282
+ Babyd = 3658575486,
283
+ Bankman01 = 3272005365,
284
+ Baygor = 1380197501,
285
+ Benny = 3300333010,
286
+ BikeHire01 = 1984382277,
287
+ BikerChic = 4198014287,
288
+ BoatStaff01M = 3361671816,
289
+ BoatStaff01F = 848542878,
290
+ BurgerDrug = 2340239206,
291
+ Chip = 610290475,
292
+ Claude01 = 3237179831,
293
+ ClubHouseBar01 = 1914945105,
294
+ CocaineFemale01 = 1897303236,
295
+ CocaineMale01 = 3455927962,
296
+ ComJane = 3064628686,
297
+ Corpse01 = 773063444,
298
+ Corpse02 = 228356856,
299
+ CounterfeitFemale01 = 1074385436,
300
+ CounterfeitMale01 = 2625926338,
301
+ Cyclist01 = 755956971,
302
+ DeadHooker = 1943971979,
303
+ Drowned = 3623056905,
304
+ ExArmy01 = 1161072059,
305
+ ExecutivePAMale01 = 983887149,
306
+ ExecutivePAFemale01 = 2913175640,
307
+ Famdd01 = 866411749,
308
+ FibArchitect = 874722259,
309
+ FibMugger01 = 2243544680,
310
+ FibSec01 = 1558115333,
311
+ FilmDirector = 728636342,
312
+ FilmNoir = 732742363,
313
+ Finguru01 = 1189322339,
314
+ ForgeryFemale01 = 3691903615,
315
+ ForgeryMale01 = 325317957,
316
+ FreemodeFemale01 = 2627665880,
317
+ FreemodeMale01 = 1885233650,
318
+ Glenstank01 = 1169888870,
319
+ Griff01 = 3293887675,
320
+ Guido01 = 3333724719,
321
+ GunVend01 = 3005388626,
322
+ Hacker = 2579169528,
323
+ HeliStaff01 = 431423238,
324
+ Hippie01 = 4030826507,
325
+ Hotposh01 = 2526768638,
326
+ Imporage = 880829941,
327
+ Jesus01 = 3459037009,
328
+ Jewelass01 = 4040474158,
329
+ JewelSec01 = 2899099062,
330
+ JewelThief = 3872144604,
331
+ Justin = 2109968527,
332
+ Mani = 3367706194,
333
+ Markfost = 479578891,
334
+ Marston01 = 943915367,
335
+ MethFemale01 = 3778572496,
336
+ MethMale01 = 1293671805,
337
+ MilitaryBum = 1191548746,
338
+ Miranda = 1095737979,
339
+ Mistress = 1573528872,
340
+ Misty01 = 3509125021,
341
+ MovieStar = 894928436,
342
+ MPros01 = 1822283721,
343
+ Niko01 = 4007317449,
344
+ Paparazzi = 1346941736,
345
+ Party01 = 921110016,
346
+ PartyTarget = 2180468199,
347
+ PestContDriver = 994527967,
348
+ PestContGunman = 193469166,
349
+ Pogo01 = 3696858125,
350
+ Poppymich = 602513566,
351
+ Princess = 3538133636,
352
+ Prisoner01 = 2073775040,
353
+ PrologueHostage01 = 3306347811,
354
+ PrologueMournFemale01 = 2718472679,
355
+ PrologueMournMale01 = 3465937675,
356
+ RivalPaparazzi = 1624626906,
357
+ ShopKeep01 = 416176080,
358
+ SpyActor = 2886641112,
359
+ SpyActress = 1535236204,
360
+ StripperLite = 695248020,
361
+ Taphillbilly = 2585681490,
362
+ Tramp01 = 1787764635,
363
+ VagosFun01 = 3299219389,
364
+ WillyFist = 2423691919,
365
+ WeedFemale01 = 1596374223,
366
+ WeedMale01 = 2648833641,
367
+ Zombie01 = 2890614022,
368
+ Acult01AMM = 1413662315,
369
+ Acult01AMO = 1430544400,
370
+ Acult01AMY = 3043264555,
371
+ Acult02AMO = 1268862154,
372
+ Acult02AMY = 2162532142,
373
+ AfriAmer01AMM = 3513928062,
374
+ Airhostess01SFY = 1567728751,
375
+ AirworkerSMY = 1644266841,
376
+ Ammucity01SMY = 2651349821,
377
+ AmmuCountrySMM = 233415434,
378
+ ArmBoss01GMM = 4058522530,
379
+ ArmGoon01GMM = 4255728232,
380
+ ArmGoon02GMY = 3310258058,
381
+ ArmLieut01GMM = 3882958867,
382
+ Armoured01SMM = 2512875213,
383
+ Armoured02SMM = 1669696074,
384
+ Armymech01SMY = 1657546978,
385
+ Autopsy01SMY = 2988916046,
386
+ Autoshop01SMM = 68070371,
387
+ Autoshop02SMM = 4033578141,
388
+ Azteca01GMY = 1752208920,
389
+ BallaEast01GMY = 4096714883,
390
+ BallaOrig01GMY = 588969535,
391
+ Ballas01GFY = 361513884,
392
+ BallaSout01GMY = 599294057,
393
+ Barman01SMY = 3852538118,
394
+ Bartender01SFY = 2014052797,
395
+ Baywatch01SFY = 1250841910,
396
+ Baywatch01SMY = 189425762,
397
+ Beach01AFM = 808859815,
398
+ Beach01AFY = 3349113128,
399
+ Beach01AMM = 1077785853,
400
+ Beach01AMO = 2217202584,
401
+ Beach01AMY = 3523131524,
402
+ Beach02AMM = 2021631368,
403
+ Beach02AMY = 600300561,
404
+ Beach03AMY = 3886638041,
405
+ Beachvesp01AMY = 2114544056,
406
+ Beachvesp02AMY = 3394697810,
407
+ Bevhills01AFM = 3188223741,
408
+ Bevhills01AFY = 1146800212,
409
+ Bevhills01AMM = 1423699487,
410
+ Bevhills01AMY = 1982350912,
411
+ Bevhills02AFM = 2688103263,
412
+ Bevhills02AFY = 1546450936,
413
+ Bevhills02AMM = 1068876755,
414
+ Bevhills02AMY = 1720428295,
415
+ Bevhills03AFY = 549978415,
416
+ Bevhills04AFY = 920595805,
417
+ Blackops01SMY = 3019107892,
418
+ Blackops02SMY = 2047212121,
419
+ Blackops03SMY = 1349953339,
420
+ Bodybuild01AFM = 1004114196,
421
+ Bouncer01SMM = 2681481517,
422
+ Breakdance01AMY = 933205398,
423
+ Busboy01SMY = 3640249671,
424
+ Busicas01AMY = 2597531625,
425
+ Business01AFY = 664399832,
426
+ Business01AMM = 2120901815,
427
+ Business01AMY = 3382649284,
428
+ Business02AFM = 532905404,
429
+ Business02AFY = 826475330,
430
+ Business02AMY = 3014915558,
431
+ Business03AFY = 2928082356,
432
+ Business03AMY = 2705543429,
433
+ Business04AFY = 3083210802,
434
+ Busker01SMO = 2912874939,
435
+ CCrew01SMM = 3387290987,
436
+ Chef01SMY = 261586155,
437
+ ChemSec01SMM = 788443093,
438
+ ChemWork01GMM = 4128603535,
439
+ ChiBoss01GMM = 3118269184,
440
+ ChiCold01GMM = 275618457,
441
+ ChiGoon01GMM = 2119136831,
442
+ ChiGoon02GMM = 4285659174,
443
+ CiaSec01SMM = 1650288984,
444
+ Clown01SMY = 71929310,
445
+ Cntrybar01SMM = 436345731,
446
+ Construct01SMY = 3621428889,
447
+ Construct02SMY = 3321821918,
448
+ Cop01SFY = 368603149,
449
+ Cop01SMY = 1581098148,
450
+ Cyclist01AMY = 4257633223,
451
+ Dealer01SMY = 3835149295,
452
+ Devinsec01SMY = 2606068340,
453
+ Dhill01AMY = 4282288299,
454
+ Dockwork01SMM = 349680864,
455
+ Dockwork01SMY = 2255894993,
456
+ Doctor01SMM = 3564307372,
457
+ Doorman01SMY = 579932932,
458
+ Downtown01AFM = 1699403886,
459
+ Downtown01AMY = 766375082,
460
+ DwService01SMY = 1976765073,
461
+ DwService02SMY = 4119890438,
462
+ Eastsa01AFM = 2638072698,
463
+ Eastsa01AFY = 4121954205,
464
+ Eastsa01AMM = 4188468543,
465
+ Eastsa01AMY = 2756120947,
466
+ Eastsa02AFM = 1674107025,
467
+ Eastsa02AFY = 70821038,
468
+ Eastsa02AMM = 131961260,
469
+ Eastsa02AMY = 377976310,
470
+ Eastsa03AFY = 1371553700,
471
+ Epsilon01AFY = 1755064960,
472
+ Epsilon01AMY = 2010389054,
473
+ Epsilon02AMY = 2860711835,
474
+ Factory01SFY = 1777626099,
475
+ Factory01SMY = 1097048408,
476
+ Famca01GMY = 3896218551,
477
+ Famdnf01GMY = 3681718840,
478
+ Famfor01GMY = 2217749257,
479
+ Families01GFY = 1309468115,
480
+ Farmer01AMM = 2488675799,
481
+ FatBla01AFM = 4206136267,
482
+ FatCult01AFM = 3050275044,
483
+ Fatlatin01AMM = 1641152947,
484
+ FatWhite01AFM = 951767867,
485
+ FemBarberSFM = 373000027,
486
+ FibOffice01SMM = 3988550982,
487
+ FibOffice02SMM = 653289389,
488
+ FibSec01SMM = 2072724299,
489
+ Fireman01SMY = 3065114024,
490
+ Fitness01AFY = 1165780219,
491
+ Fitness02AFY = 331645324,
492
+ Gaffer01SMM = 2841034142,
493
+ GarbageSMY = 4000686095,
494
+ Gardener01SMM = 1240094341,
495
+ Gay01AMY = 3519864886,
496
+ Gay02AMY = 2775713665,
497
+ Genfat01AMM = 115168927,
498
+ Genfat02AMM = 330231874,
499
+ Genhot01AFY = 793439294,
500
+ Genstreet01AFO = 1640504453,
501
+ Genstreet01AMO = 2908022696,
502
+ Genstreet01AMY = 2557996913,
503
+ Genstreet02AMY = 891398354,
504
+ GentransportSMM = 411102470,
505
+ Golfer01AFY = 2111372120,
506
+ Golfer01AMM = 2850754114,
507
+ Golfer01AMY = 3609190705,
508
+ Grip01SMY = 815693290,
509
+ Hairdress01SMM = 1099825042,
510
+ Hasjew01AMM = 1809430156,
511
+ Hasjew01AMY = 3782053633,
512
+ Highsec01SMM = 4049719826,
513
+ Highsec02SMM = 691061163,
514
+ Hiker01AFY = 813893651,
515
+ Hiker01AMY = 1358380044,
516
+ Hillbilly01AMM = 1822107721,
517
+ Hillbilly02AMM = 2064532783,
518
+ Hippie01AFY = 343259175,
519
+ Hippy01AMY = 2097407511,
520
+ Hipster01AFY = 2185745201,
521
+ Hipster01AMY = 587703123,
522
+ Hipster02AFY = 2549481101,
523
+ Hipster02AMY = 349505262,
524
+ Hipster03AFY = 2780469782,
525
+ Hipster03AMY = 1312913862,
526
+ Hipster04AFY = 429425116,
527
+ Hooker01SFY = 42647445,
528
+ Hooker02SFY = 348382215,
529
+ Hooker03SFY = 51789996,
530
+ Hwaycop01SMY = 1939545845,
531
+ Indian01AFO = 3134700416,
532
+ Indian01AFY = 153984193,
533
+ Indian01AMM = 3721046572,
534
+ Indian01AMY = 706935758,
535
+ JanitorSMM = 2842417644,
536
+ Jetski01AMY = 767028979,
537
+ Juggalo01AFY = 3675473203,
538
+ Juggalo01AMY = 2445950508,
539
+ KorBoss01GMM = 891945583,
540
+ Korean01GMY = 611648169,
541
+ Korean02GMY = 2414729609,
542
+ KorLieut01GMY = 2093736314,
543
+ Ktown01AFM = 1388848350,
544
+ Ktown01AFO = 1204772502,
545
+ Ktown01AMM = 3512565361,
546
+ Ktown01AMO = 355916122,
547
+ Ktown01AMY = 452351020,
548
+ Ktown02AFM = 1090617681,
549
+ Ktown02AMY = 696250687,
550
+ Lathandy01SMM = 2659242702,
551
+ Latino01AMY = 321657486,
552
+ Lifeinvad01SMM = 3724572669,
553
+ LinecookSMM = 3684436375,
554
+ Lost01GFY = 4250220510,
555
+ Lost01GMY = 1330042375,
556
+ Lost02GMY = 1032073858,
557
+ Lost03GMY = 850468060,
558
+ Lsmetro01SMM = 1985653476,
559
+ Maid01SFM = 3767780806,
560
+ Malibu01AMM = 803106487,
561
+ Mariachi01SMM = 2124742566,
562
+ Marine01SMM = 4074414829,
563
+ Marine01SMY = 1702441027,
564
+ Marine02SMM = 4028996995,
565
+ Marine02SMY = 1490458366,
566
+ Marine03SMY = 1925237458,
567
+ Methhead01AMY = 1768677545,
568
+ MexBoss01GMM = 1466037421,
569
+ MexBoss02GMM = 1226102803,
570
+ MexCntry01AMM = 3716251309,
571
+ MexGang01GMY = 3185399110,
572
+ MexGoon01GMY = 653210662,
573
+ MexGoon02GMY = 832784782,
574
+ MexGoon03GMY = 2521633500,
575
+ MexLabor01AMM = 2992445106,
576
+ MexThug01AMY = 810804565,
577
+ Migrant01SFY = 3579522037,
578
+ Migrant01SMM = 3977045190,
579
+ MimeSMY = 1021093698,
580
+ Motox01AMY = 1694362237,
581
+ Motox02AMY = 2007797722,
582
+ MovAlien01 = 1684083350,
583
+ MovPrem01SFY = 587253782,
584
+ Movprem01SMM = 3630066984,
585
+ Movspace01SMM = 3887273010,
586
+ Musclbeac01AMY = 1264920838,
587
+ Musclbeac02AMY = 3374523516,
588
+ OgBoss01AMM = 1746653202,
589
+ Paparazzi01AMM = 3972697109,
590
+ Paramedic01SMM = 3008586398,
591
+ PestCont01SMY = 1209091352,
592
+ Pilot01SMM = 3881519900,
593
+ Pilot01SMY = 2872052743,
594
+ Pilot02SMM = 4131252449,
595
+ PoloGoon01GMY = 1329576454,
596
+ PoloGoon02GMY = 2733138262,
597
+ Polynesian01AMM = 2849617566,
598
+ Polynesian01AMY = 2206530719,
599
+ Postal01SMM = 1650036788,
600
+ Postal02SMM = 1936142927,
601
+ Prisguard01SMM = 1456041926,
602
+ PrisMuscl01SMY = 1596003233,
603
+ Prisoner01SMY = 2981862233,
604
+ PrologueHostage01AFM = 379310561,
605
+ PrologueHostage01AMM = 2534589327,
606
+ Ranger01SFY = 2680682039,
607
+ Ranger01SMY = 4017173934,
608
+ Roadcyc01AMY = 4116817094,
609
+ Robber01SMY = 3227390873,
610
+ RsRanger01AMO = 1011059922,
611
+ Runner01AFY = 3343476521,
612
+ Runner01AMY = 623927022,
613
+ Runner02AMY = 2218630415,
614
+ Rurmeth01AFY = 1064866854,
615
+ Rurmeth01AMM = 1001210244,
616
+ Salton01AFM = 3725461865,
617
+ Salton01AFO = 3439295882,
618
+ Salton01AMM = 1328415626,
619
+ Salton01AMO = 539004493,
620
+ Salton01AMY = 3613420592,
621
+ Salton02AMM = 1626646295,
622
+ Salton03AMM = 2995538501,
623
+ Salton04AMM = 2521108919,
624
+ SalvaBoss01GMY = 2422005962,
625
+ SalvaGoon01GMY = 663522487,
626
+ SalvaGoon02GMY = 846439045,
627
+ SalvaGoon03GMY = 62440720,
628
+ SbikeAMO = 1794381917,
629
+ Scdressy01AFY = 3680420864,
630
+ Scientist01SMM = 1092080539,
631
+ Scrubs01SFY = 2874755766,
632
+ Security01SMM = 3613962792,
633
+ Sheriff01SFY = 1096929346,
634
+ Sheriff01SMY = 2974087609,
635
+ ShopHighSFM = 2923947184,
636
+ ShopLowSFY = 2842568196,
637
+ ShopMaskSMY = 1846684678,
638
+ ShopMidSFY = 1055701597,
639
+ Skater01AFY = 1767892582,
640
+ Skater01AMM = 3654768780,
641
+ Skater01AMY = 3250873975,
642
+ Skater02AMY = 2952446692,
643
+ Skidrow01AFM = 2962707003,
644
+ Skidrow01AMM = 32417469,
645
+ Snowcop01SMM = 451459928,
646
+ Socenlat01AMM = 193817059,
647
+ Soucent01AFM = 1951946145,
648
+ Soucent01AFO = 1039800368,
649
+ Soucent01AFY = 744758650,
650
+ Soucent01AMM = 1750583735,
651
+ Soucent01AMO = 718836251,
652
+ Soucent01AMY = 3877027275,
653
+ Soucent02AFM = 4079145784,
654
+ Soucent02AFO = 2775443222,
655
+ Soucent02AFY = 1519319503,
656
+ Soucent02AMM = 2674735073,
657
+ Soucent02AMO = 1082572151,
658
+ Soucent02AMY = 2896414922,
659
+ Soucent03AFY = 2276611093,
660
+ Soucent03AMM = 2346291386,
661
+ Soucent03AMO = 238213328,
662
+ Soucent03AMY = 3287349092,
663
+ Soucent04AMM = 3271294718,
664
+ Soucent04AMY = 2318861297,
665
+ Soucentmc01AFM = 3454621138,
666
+ Staggrm01AMO = 2442448387,
667
+ Stbla01AMY = 3482496489,
668
+ Stbla02AMY = 2563194959,
669
+ Stlat01AMY = 2255803900,
670
+ Stlat02AMM = 3265820418,
671
+ Stripper01SFY = 1381498905,
672
+ Stripper02SFY = 1846523796,
673
+ StripperLiteSFY = 1544875514,
674
+ Strperf01SMM = 2035992488,
675
+ Strpreach01SMM = 469792763,
676
+ StrPunk01GMY = 4246489531,
677
+ StrPunk02GMY = 228715206,
678
+ Strvend01SMM = 3465614249,
679
+ Strvend01SMY = 2457805603,
680
+ Stwhi01AMY = 605602864,
681
+ Stwhi02AMY = 919005580,
682
+ Sunbathe01AMY = 3072929548,
683
+ Surfer01AMY = 3938633710,
684
+ Swat01SMY = 2374966032,
685
+ Sweatshop01SFM = 824925120,
686
+ Sweatshop01SFY = 2231547570,
687
+ Tattoo01AMO = 2494442380,
688
+ Tennis01AFY = 1426880966,
689
+ Tennis01AMM = 1416254276,
690
+ Topless01AFY = 2633130371,
691
+ Tourist01AFM = 1347814329,
692
+ Tourist01AFY = 1446741360,
693
+ Tourist01AMM = 3365863812,
694
+ Tourist02AFY = 2435054400,
695
+ Tramp01AFM = 1224306523,
696
+ Tramp01AMM = 516505552,
697
+ Tramp01AMO = 390939205,
698
+ TrampBeac01AFM = 2359345766,
699
+ TrampBeac01AMM = 1404403376,
700
+ Tranvest01AMM = 3773208948,
701
+ Tranvest02AMM = 4144940484,
702
+ Trucker01SMM = 1498487404,
703
+ Ups01SMM = 2680389410,
704
+ Ups02SMM = 3502104854,
705
+ Uscg01SMY = 3389018345,
706
+ Vagos01GFY = 1520708641,
707
+ Valet01SMY = 999748158,
708
+ Vindouche01AMY = 3247667175,
709
+ Vinewood01AFY = 435429221,
710
+ Vinewood01AMY = 1264851357,
711
+ Vinewood02AFY = 3669401835,
712
+ Vinewood02AMY = 1561705728,
713
+ Vinewood03AFY = 933092024,
714
+ Vinewood03AMY = 534725268,
715
+ Vinewood04AFY = 4209271110,
716
+ Vinewood04AMY = 835315305,
717
+ Waiter01SMY = 2907468364,
718
+ WinClean01SMY = 1426951581,
719
+ Xmech01SMY = 1142162924,
720
+ Xmech02SMY = 3189832196,
721
+ Xmech02SMYMP = 1755203590,
722
+ Yoga01AFY = 3290105390,
723
+ Yoga01AMY = 2869588309
724
+ }