@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.
- package/LICENSE +21 -0
- package/README.md +33 -0
- package/lib/client/Audio.d.ts +17 -0
- package/lib/client/Audio.js +92 -0
- package/lib/client/Blip.d.ts +39 -0
- package/lib/client/Blip.js +104 -0
- package/lib/client/Camera.d.ts +46 -0
- package/lib/client/Camera.js +161 -0
- package/lib/client/Checkpoint.d.ts +18 -0
- package/lib/client/Checkpoint.js +42 -0
- package/lib/client/Events.d.ts +11 -0
- package/lib/client/Events.js +73 -0
- package/lib/client/Game.d.ts +283 -0
- package/lib/client/Game.js +451 -0
- package/lib/client/GameplayCamera.d.ts +102 -0
- package/lib/client/GameplayCamera.js +141 -0
- package/lib/client/Model.d.ts +134 -0
- package/lib/client/Model.js +198 -0
- package/lib/client/NetworkedScene.d.ts +10 -0
- package/lib/client/NetworkedScene.js +17 -0
- package/lib/client/ParticleEffect.d.ts +80 -0
- package/lib/client/ParticleEffect.js +120 -0
- package/lib/client/ParticleEffectAsset.d.ts +54 -0
- package/lib/client/ParticleEffectAsset.js +104 -0
- package/lib/client/Pickup.d.ts +9 -0
- package/lib/client/Pickup.js +18 -0
- package/lib/client/Raycast.d.ts +49 -0
- package/lib/client/Raycast.js +70 -0
- package/lib/client/RelationshipGroup.d.ts +49 -0
- package/lib/client/RelationshipGroup.js +63 -0
- package/lib/client/Rope.d.ts +99 -0
- package/lib/client/Rope.js +125 -0
- package/lib/client/TaskSequence.d.ts +15 -0
- package/lib/client/TaskSequence.js +43 -0
- package/lib/client/Tasks.d.ts +66 -0
- package/lib/client/Tasks.js +236 -0
- package/lib/client/World.d.ts +402 -0
- package/lib/client/World.js +726 -0
- package/lib/client/cfx/StateBagChangeHandler.d.ts +3 -0
- package/lib/client/cfx/StateBagChangeHandler.js +1 -0
- package/lib/client/cfx/index.d.ts +7 -0
- package/lib/client/cfx/index.js +1 -0
- package/lib/client/enums/Alignment.d.ts +5 -0
- package/lib/client/enums/Alignment.js +6 -0
- package/lib/client/enums/AnimationFlags.d.ts +9 -0
- package/lib/client/enums/AnimationFlags.js +10 -0
- package/lib/client/enums/AudioFlag.d.ts +37 -0
- package/lib/client/enums/AudioFlag.js +38 -0
- package/lib/client/enums/BadgeStyle.d.ts +182 -0
- package/lib/client/enums/BadgeStyle.js +183 -0
- package/lib/client/enums/Blip.d.ts +223 -0
- package/lib/client/enums/Blip.js +225 -0
- package/lib/client/enums/Bone.d.ts +101 -0
- package/lib/client/enums/Bone.js +103 -0
- package/lib/client/enums/CameraShake.d.ts +13 -0
- package/lib/client/enums/CameraShake.js +14 -0
- package/lib/client/enums/CameraTypes.d.ts +7 -0
- package/lib/client/enums/CameraTypes.js +8 -0
- package/lib/client/enums/CheckboxStyle.d.ts +4 -0
- package/lib/client/enums/CheckboxStyle.js +5 -0
- package/lib/client/enums/Checkpoint.d.ts +62 -0
- package/lib/client/enums/Checkpoint.js +67 -0
- package/lib/client/enums/ClassTypes.d.ts +11 -0
- package/lib/client/enums/ClassTypes.js +12 -0
- package/lib/client/enums/CloudHat.d.ts +26 -0
- package/lib/client/enums/CloudHat.js +27 -0
- package/lib/client/enums/Control.d.ts +360 -0
- package/lib/client/enums/Control.js +361 -0
- package/lib/client/enums/CursorSprite.d.ts +14 -0
- package/lib/client/enums/CursorSprite.js +15 -0
- package/lib/client/enums/Driving.d.ts +32 -0
- package/lib/client/enums/Driving.js +34 -0
- package/lib/client/enums/ExplosionType.d.ts +44 -0
- package/lib/client/enums/ExplosionType.js +45 -0
- package/lib/client/enums/FiringPattern.d.ts +19 -0
- package/lib/client/enums/FiringPattern.js +20 -0
- package/lib/client/enums/Font.d.ts +7 -0
- package/lib/client/enums/Font.js +8 -0
- package/lib/client/enums/ForceType.d.ts +8 -0
- package/lib/client/enums/ForceType.js +9 -0
- package/lib/client/enums/Gender.d.ts +4 -0
- package/lib/client/enums/Gender.js +5 -0
- package/lib/client/enums/HelmetType.d.ts +5 -0
- package/lib/client/enums/HelmetType.js +6 -0
- package/lib/client/enums/HudColor.d.ts +183 -0
- package/lib/client/enums/HudColor.js +184 -0
- package/lib/client/enums/HudComponent.d.ts +53 -0
- package/lib/client/enums/HudComponent.js +54 -0
- package/lib/client/enums/InputMode.d.ts +4 -0
- package/lib/client/enums/InputMode.js +5 -0
- package/lib/client/enums/IntersectOptions.d.ts +15 -0
- package/lib/client/enums/IntersectOptions.js +16 -0
- package/lib/client/enums/InvertAxis.d.ts +9 -0
- package/lib/client/enums/InvertAxis.js +7 -0
- package/lib/client/enums/Language.d.ts +14 -0
- package/lib/client/enums/Language.js +15 -0
- package/lib/client/enums/LeaveVehicleFlags.d.ts +10 -0
- package/lib/client/enums/LeaveVehicleFlags.js +11 -0
- package/lib/client/enums/LoadingSpinnerType.d.ts +7 -0
- package/lib/client/enums/LoadingSpinnerType.js +8 -0
- package/lib/client/enums/MarkerType.d.ts +49 -0
- package/lib/client/enums/MarkerType.js +50 -0
- package/lib/client/enums/MenuAlignment.d.ts +4 -0
- package/lib/client/enums/MenuAlignment.js +5 -0
- package/lib/client/enums/NotificationType.d.ts +10 -0
- package/lib/client/enums/NotificationType.js +11 -0
- package/lib/client/enums/Parachute.d.ts +13 -0
- package/lib/client/enums/Parachute.js +15 -0
- package/lib/client/enums/PickupType.d.ts +73 -0
- package/lib/client/enums/PickupType.js +74 -0
- package/lib/client/enums/RadioStation.d.ts +24 -0
- package/lib/client/enums/RadioStation.js +25 -0
- package/lib/client/enums/RagdollType.d.ts +6 -0
- package/lib/client/enums/RagdollType.js +7 -0
- package/lib/client/enums/Relationship.d.ts +9 -0
- package/lib/client/enums/Relationship.js +10 -0
- package/lib/client/enums/RopeType.d.ts +5 -0
- package/lib/client/enums/RopeType.js +6 -0
- package/lib/client/enums/ScreenEffect.d.ts +83 -0
- package/lib/client/enums/ScreenEffect.js +84 -0
- package/lib/client/enums/SpeechModifier.d.ts +39 -0
- package/lib/client/enums/SpeechModifier.js +40 -0
- package/lib/client/enums/Vehicle.d.ts +358 -0
- package/lib/client/enums/Vehicle.js +376 -0
- package/lib/client/enums/Weather.d.ts +21 -0
- package/lib/client/enums/Weather.js +22 -0
- package/lib/client/enums/ZoneID.d.ts +94 -0
- package/lib/client/enums/ZoneID.js +95 -0
- package/lib/client/enums/index.d.ts +42 -0
- package/lib/client/enums/index.js +42 -0
- package/lib/client/hashes/MaterialHash.d.ts +216 -0
- package/lib/client/hashes/MaterialHash.js +217 -0
- package/lib/client/hashes/PedHash.d.ts +724 -0
- package/lib/client/hashes/PedHash.js +725 -0
- package/lib/client/hashes/VehicleHash.d.ts +522 -0
- package/lib/client/hashes/VehicleHash.js +523 -0
- package/lib/client/hashes/WeaponHash.d.ts +147 -0
- package/lib/client/hashes/WeaponHash.js +161 -0
- package/lib/client/hashes/WeatherTypeHash.d.ts +21 -0
- package/lib/client/hashes/WeatherTypeHash.js +22 -0
- package/lib/client/hashes/index.d.ts +5 -0
- package/lib/client/hashes/index.js +5 -0
- package/lib/client/index.d.ts +24 -0
- package/lib/client/index.js +25 -0
- package/lib/client/interfaces/Dimensions.d.ts +5 -0
- package/lib/client/interfaces/Dimensions.js +1 -0
- package/lib/client/models/BaseEntity.d.ts +169 -0
- package/lib/client/models/BaseEntity.js +459 -0
- package/lib/client/models/Entity.d.ts +9 -0
- package/lib/client/models/Entity.js +24 -0
- package/lib/client/models/EntityBone.d.ts +12 -0
- package/lib/client/models/EntityBone.js +24 -0
- package/lib/client/models/EntityBoneCollection.d.ts +11 -0
- package/lib/client/models/EntityBoneCollection.js +16 -0
- package/lib/client/models/Ped.d.ts +199 -0
- package/lib/client/models/Ped.js +685 -0
- package/lib/client/models/PedBone.d.ts +6 -0
- package/lib/client/models/PedBone.js +9 -0
- package/lib/client/models/PedBoneCollection.d.ts +8 -0
- package/lib/client/models/PedBoneCollection.js +19 -0
- package/lib/client/models/Player.d.ts +63 -0
- package/lib/client/models/Player.js +174 -0
- package/lib/client/models/Prop.d.ts +11 -0
- package/lib/client/models/Prop.js +26 -0
- package/lib/client/models/Vehicle.d.ts +171 -0
- package/lib/client/models/Vehicle.js +551 -0
- package/lib/client/models/VehicleDoor.d.ts +19 -0
- package/lib/client/models/VehicleDoor.js +42 -0
- package/lib/client/models/VehicleDoorCollection.d.ts +14 -0
- package/lib/client/models/VehicleDoorCollection.js +61 -0
- package/lib/client/models/VehicleMod.d.ts +16 -0
- package/lib/client/models/VehicleMod.js +33 -0
- package/lib/client/models/VehicleModCollection.d.ts +61 -0
- package/lib/client/models/VehicleModCollection.js +227 -0
- package/lib/client/models/VehicleToggleMod.d.ts +14 -0
- package/lib/client/models/VehicleToggleMod.js +27 -0
- package/lib/client/models/VehicleWheel.d.ts +11 -0
- package/lib/client/models/VehicleWheel.js +21 -0
- package/lib/client/models/VehicleWheelCollection.d.ts +13 -0
- package/lib/client/models/VehicleWheelCollection.js +56 -0
- package/lib/client/models/VehicleWindow.d.ts +16 -0
- package/lib/client/models/VehicleWindow.js +33 -0
- package/lib/client/models/VehicleWindowCollection.d.ts +14 -0
- package/lib/client/models/VehicleWindowCollection.js +55 -0
- package/lib/client/models/index.d.ts +18 -0
- package/lib/client/models/index.js +18 -0
- package/lib/client/types/EntityType.d.ts +2 -0
- package/lib/client/types/EntityType.js +1 -0
- package/lib/client/ui/Container.d.ts +11 -0
- package/lib/client/ui/Container.js +28 -0
- package/lib/client/ui/Effects.d.ts +8 -0
- package/lib/client/ui/Effects.js +106 -0
- package/lib/client/ui/Fading.d.ts +41 -0
- package/lib/client/ui/Fading.js +69 -0
- package/lib/client/ui/Hud.d.ts +16 -0
- package/lib/client/ui/Hud.js +39 -0
- package/lib/client/ui/InstructionalButtons.d.ts +33 -0
- package/lib/client/ui/InstructionalButtons.js +53 -0
- package/lib/client/ui/LoadingPrompt.d.ts +27 -0
- package/lib/client/ui/LoadingPrompt.js +45 -0
- package/lib/client/ui/Notification.d.ts +5 -0
- package/lib/client/ui/Notification.js +8 -0
- package/lib/client/ui/Rectangle.d.ts +10 -0
- package/lib/client/ui/Rectangle.js +37 -0
- package/lib/client/ui/Scaleform.d.ts +106 -0
- package/lib/client/ui/Scaleform.js +234 -0
- package/lib/client/ui/Screen.d.ts +16 -0
- package/lib/client/ui/Screen.js +72 -0
- package/lib/client/ui/Sprite.d.ts +17 -0
- package/lib/client/ui/Sprite.js +53 -0
- package/lib/client/ui/Text.d.ts +31 -0
- package/lib/client/ui/Text.js +102 -0
- package/lib/client/ui/Timerbar.d.ts +44 -0
- package/lib/client/ui/Timerbar.js +241 -0
- package/lib/client/ui/index.d.ts +15 -0
- package/lib/client/ui/index.js +15 -0
- package/lib/client/ui/interfaces/IButton.d.ts +5 -0
- package/lib/client/ui/interfaces/IButton.js +1 -0
- package/lib/client/ui/interfaces/IDrawable.d.ts +7 -0
- package/lib/client/ui/interfaces/IDrawable.js +1 -0
- package/lib/client/ui/interfaces/index.d.ts +2 -0
- package/lib/client/ui/interfaces/index.js +1 -0
- package/lib/client/ui/menu/Menu.d.ts +108 -0
- package/lib/client/ui/menu/Menu.js +802 -0
- package/lib/client/ui/menu/MenuControl.d.ts +6 -0
- package/lib/client/ui/menu/MenuControl.js +11 -0
- package/lib/client/ui/menu/MenuControls.d.ts +9 -0
- package/lib/client/ui/menu/MenuControls.js +11 -0
- package/lib/client/ui/menu/MenuSettings.d.ts +20 -0
- package/lib/client/ui/menu/MenuSettings.js +51 -0
- package/lib/client/ui/menu/index.d.ts +6 -0
- package/lib/client/ui/menu/index.js +6 -0
- package/lib/client/ui/menu/items/UIMenuCheckboxItem.d.ts +20 -0
- package/lib/client/ui/menu/items/UIMenuCheckboxItem.js +57 -0
- package/lib/client/ui/menu/items/UIMenuItem.d.ts +78 -0
- package/lib/client/ui/menu/items/UIMenuItem.js +1090 -0
- package/lib/client/ui/menu/items/UIMenuListItem.d.ts +31 -0
- package/lib/client/ui/menu/items/UIMenuListItem.js +110 -0
- package/lib/client/ui/menu/items/UIMenuSeparatorItem.d.ts +11 -0
- package/lib/client/ui/menu/items/UIMenuSeparatorItem.js +29 -0
- package/lib/client/ui/menu/items/UIMenuSliderItem.d.ts +47 -0
- package/lib/client/ui/menu/items/UIMenuSliderItem.js +173 -0
- package/lib/client/ui/menu/items/index.d.ts +6 -0
- package/lib/client/ui/menu/items/index.js +6 -0
- package/lib/client/ui/menu/items/panels/AbstractUIMenuPanel.d.ts +17 -0
- package/lib/client/ui/menu/items/panels/AbstractUIMenuPanel.js +43 -0
- package/lib/client/ui/menu/items/panels/UIMenuColorPanel.d.ts +36 -0
- package/lib/client/ui/menu/items/panels/UIMenuColorPanel.js +211 -0
- package/lib/client/ui/menu/items/panels/UIMenuGridPanel.d.ts +40 -0
- package/lib/client/ui/menu/items/panels/UIMenuGridPanel.js +215 -0
- package/lib/client/ui/menu/items/panels/UIMenuPercentagePanel.d.ts +26 -0
- package/lib/client/ui/menu/items/panels/UIMenuPercentagePanel.js +115 -0
- package/lib/client/ui/menu/items/panels/UIMenuStatisticsPanel.d.ts +16 -0
- package/lib/client/ui/menu/items/panels/UIMenuStatisticsPanel.js +77 -0
- package/lib/client/ui/menu/items/panels/UIMenuStatisticsPanelItem.d.ts +13 -0
- package/lib/client/ui/menu/items/panels/UIMenuStatisticsPanelItem.js +32 -0
- package/lib/client/ui/menu/items/panels/index.d.ts +6 -0
- package/lib/client/ui/menu/items/panels/index.js +6 -0
- package/lib/client/ui/menu/modules/ListItem.d.ts +6 -0
- package/lib/client/ui/menu/modules/ListItem.js +8 -0
- package/lib/client/ui/menu/modules/index.d.ts +1 -0
- package/lib/client/ui/menu/modules/index.js +1 -0
- package/lib/client/utils/Animations.d.ts +19 -0
- package/lib/client/utils/Animations.js +55 -0
- package/lib/client/utils/Color.d.ts +15 -0
- package/lib/client/utils/Color.js +22 -0
- package/lib/client/utils/Crypto.d.ts +3 -0
- package/lib/client/utils/Crypto.js +25 -0
- package/lib/client/utils/LiteEvent.d.ts +13 -0
- package/lib/client/utils/LiteEvent.js +21 -0
- package/lib/client/utils/Maths.d.ts +4 -0
- package/lib/client/utils/Maths.js +10 -0
- package/lib/client/utils/Point.d.ts +9 -0
- package/lib/client/utils/Point.js +28 -0
- package/lib/client/utils/PointF.d.ts +12 -0
- package/lib/client/utils/PointF.js +11 -0
- package/lib/client/utils/Quaternion.d.ts +10 -0
- package/lib/client/utils/Quaternion.js +23 -0
- package/lib/client/utils/Size.d.ts +5 -0
- package/lib/client/utils/Size.js +6 -0
- package/lib/client/utils/String.d.ts +6 -0
- package/lib/client/utils/String.js +25 -0
- package/lib/client/utils/Vector2.d.ts +54 -0
- package/lib/client/utils/Vector2.js +106 -0
- package/lib/client/utils/Vector3.d.ts +69 -0
- package/lib/client/utils/Vector3.js +140 -0
- package/lib/client/utils/Vector4.d.ts +62 -0
- package/lib/client/utils/Vector4.js +124 -0
- package/lib/client/utils/enumValues.d.ts +12 -0
- package/lib/client/utils/enumValues.js +14 -0
- package/lib/client/utils/getStringFromUInt8Array.d.ts +8 -0
- package/lib/client/utils/getStringFromUInt8Array.js +10 -0
- package/lib/client/utils/getUInt32FromUint8Array.d.ts +8 -0
- package/lib/client/utils/getUInt32FromUint8Array.js +8 -0
- package/lib/client/utils/index.d.ts +10 -0
- package/lib/client/utils/index.js +10 -0
- package/lib/client/weapon/DlcWeaponData.d.ts +43 -0
- package/lib/client/weapon/DlcWeaponData.js +44 -0
- package/lib/client/weapon/Mk2WeaponHash.d.ts +18 -0
- package/lib/client/weapon/Mk2WeaponHash.js +25 -0
- package/lib/client/weapon/Weapon.d.ts +169 -0
- package/lib/client/weapon/Weapon.js +267 -0
- package/lib/client/weapon/WeaponAsset.d.ts +55 -0
- package/lib/client/weapon/WeaponAsset.js +83 -0
- package/lib/client/weapon/WeaponCollection.d.ts +90 -0
- package/lib/client/weapon/WeaponCollection.js +186 -0
- package/lib/client/weapon/WeaponDisplayNameByHash.d.ts +6 -0
- package/lib/client/weapon/WeaponDisplayNameByHash.js +75 -0
- package/lib/client/weapon/WeaponGroup.d.ts +18 -0
- package/lib/client/weapon/WeaponGroup.js +19 -0
- package/lib/client/weapon/WeaponHudStats.d.ts +27 -0
- package/lib/client/weapon/WeaponHudStats.js +38 -0
- package/lib/client/weapon/WeaponLivery.d.ts +13 -0
- package/lib/client/weapon/WeaponLivery.js +14 -0
- package/lib/client/weapon/WeaponLiveryColor.d.ts +34 -0
- package/lib/client/weapon/WeaponLiveryColor.js +35 -0
- package/lib/client/weapon/WeaponTint.d.ts +42 -0
- package/lib/client/weapon/WeaponTint.js +43 -0
- package/lib/client/weapon/index.d.ts +8 -0
- package/lib/client/weapon/index.js +8 -0
- package/lib/client/weaponComponent/ComponentAttachmentPoint.d.ts +18 -0
- package/lib/client/weaponComponent/ComponentAttachmentPoint.js +19 -0
- package/lib/client/weaponComponent/ComponentAttachmentPointByHash.d.ts +7 -0
- package/lib/client/weaponComponent/ComponentAttachmentPointByHash.js +309 -0
- package/lib/client/weaponComponent/ComponentDisplayNameByHash.d.ts +6 -0
- package/lib/client/weaponComponent/ComponentDisplayNameByHash.js +280 -0
- package/lib/client/weaponComponent/DlcWeaponComponentData.d.ts +40 -0
- package/lib/client/weaponComponent/DlcWeaponComponentData.js +44 -0
- package/lib/client/weaponComponent/InvalidWeaponComponent.d.ts +12 -0
- package/lib/client/weaponComponent/InvalidWeaponComponent.js +28 -0
- package/lib/client/weaponComponent/WeaponComponent.d.ts +81 -0
- package/lib/client/weaponComponent/WeaponComponent.js +119 -0
- package/lib/client/weaponComponent/WeaponComponentCollection.d.ts +108 -0
- package/lib/client/weaponComponent/WeaponComponentCollection.js +172 -0
- package/lib/client/weaponComponent/WeaponComponentHash.d.ts +671 -0
- package/lib/client/weaponComponent/WeaponComponentHash.js +887 -0
- package/lib/client/weaponComponent/WeaponComponentHashesByWeaponHash.d.ts +8 -0
- package/lib/client/weaponComponent/WeaponComponentHashesByWeaponHash.js +823 -0
- package/lib/client/weaponComponent/WeaponComponentHudStats.d.ts +27 -0
- package/lib/client/weaponComponent/WeaponComponentHudStats.js +34 -0
- package/lib/client/weaponComponent/index.d.ts +5 -0
- package/lib/client/weaponComponent/index.js +5 -0
- package/lib/common/Convar.d.ts +8 -0
- package/lib/common/Convar.js +20 -0
- package/lib/common/Kvp.d.ts +91 -0
- package/lib/common/Kvp.js +161 -0
- package/lib/common/Resource.d.ts +14 -0
- package/lib/common/Resource.js +35 -0
- package/lib/common/index.d.ts +5 -0
- package/lib/common/index.js +5 -0
- package/lib/common/types.d.ts +6 -0
- package/lib/common/types.js +1 -0
- package/lib/common/utils/Color.d.ts +10 -0
- package/lib/common/utils/Color.js +17 -0
- package/lib/common/utils/Maths.d.ts +4 -0
- package/lib/common/utils/Maths.js +10 -0
- package/lib/common/utils/PointF.d.ts +12 -0
- package/lib/common/utils/PointF.js +11 -0
- package/lib/common/utils/Quaternion.d.ts +10 -0
- package/lib/common/utils/Quaternion.js +23 -0
- package/lib/common/utils/Vector2.d.ts +58 -0
- package/lib/common/utils/Vector2.js +113 -0
- package/lib/common/utils/Vector3.d.ts +73 -0
- package/lib/common/utils/Vector3.js +147 -0
- package/lib/common/utils/Vector4.d.ts +66 -0
- package/lib/common/utils/Vector4.js +131 -0
- package/lib/common/utils/cleanPlayerName.d.ts +6 -0
- package/lib/common/utils/cleanPlayerName.js +27 -0
- package/lib/common/utils/enumValues.d.ts +12 -0
- package/lib/common/utils/enumValues.js +14 -0
- package/lib/common/utils/getStringFromUInt8Array.d.ts +8 -0
- package/lib/common/utils/getStringFromUInt8Array.js +10 -0
- package/lib/common/utils/getUInt32FromUint8Array.d.ts +8 -0
- package/lib/common/utils/getUInt32FromUint8Array.js +8 -0
- package/lib/common/utils/index.d.ts +12 -0
- package/lib/common/utils/index.js +12 -0
- package/lib/server/Anticheat.d.ts +0 -0
- package/lib/server/Anticheat.js +25 -0
- package/lib/server/Events.d.ts +35 -0
- package/lib/server/Events.js +102 -0
- package/lib/server/Game.d.ts +56 -0
- package/lib/server/Game.js +86 -0
- package/lib/server/cfx/StateBagChangeHandler.d.ts +9 -0
- package/lib/server/cfx/StateBagChangeHandler.js +4 -0
- package/lib/server/cfx/index.d.ts +7 -0
- package/lib/server/cfx/index.js +1 -0
- package/lib/server/entities/BaseEntity.d.ts +115 -0
- package/lib/server/entities/BaseEntity.js +161 -0
- package/lib/server/entities/Entity.d.ts +18 -0
- package/lib/server/entities/Entity.js +22 -0
- package/lib/server/entities/Ped.d.ts +87 -0
- package/lib/server/entities/Ped.js +122 -0
- package/lib/server/entities/Player.d.ts +163 -0
- package/lib/server/entities/Player.js +235 -0
- package/lib/server/entities/Prop.d.ts +32 -0
- package/lib/server/entities/Prop.js +42 -0
- package/lib/server/entities/Vehicle.d.ts +230 -0
- package/lib/server/entities/Vehicle.js +331 -0
- package/lib/server/entities/index.d.ts +5 -0
- package/lib/server/entities/index.js +5 -0
- package/lib/server/enum/ClassTypes.d.ts +11 -0
- package/lib/server/enum/ClassTypes.js +12 -0
- package/lib/server/enum/PopulationType.d.ts +13 -0
- package/lib/server/enum/PopulationType.js +14 -0
- package/lib/server/enum/VehicleLockStatus.d.ts +9 -0
- package/lib/server/enum/VehicleLockStatus.js +10 -0
- package/lib/server/enum/VehicleType.d.ts +10 -0
- package/lib/server/enum/VehicleType.js +11 -0
- package/lib/server/enum/eEntityType.d.ts +5 -0
- package/lib/server/enum/eEntityType.js +6 -0
- package/lib/server/enum/index.d.ts +5 -0
- package/lib/server/enum/index.js +5 -0
- package/lib/server/index.d.ts +7 -0
- package/lib/server/index.js +7 -0
- package/lib/server/type/Anticheat.d.ts +471 -0
- package/lib/server/type/Anticheat.js +160 -0
- package/lib/server/type/Hash.d.ts +3 -0
- package/lib/server/type/Hash.js +2 -0
- package/lib/server/utils/index.d.ts +1 -0
- package/lib/server/utils/index.js +1 -0
- package/package.json +54 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export { Alignment } from './Alignment';
|
|
2
|
+
export { AnimationFlags } from './AnimationFlags';
|
|
3
|
+
export { AudioFlag } from './AudioFlag';
|
|
4
|
+
export { BadgeStyle } from './BadgeStyle';
|
|
5
|
+
export { BlipColor, BlipSprite } from './Blip';
|
|
6
|
+
export { Bone } from './Bone';
|
|
7
|
+
export { CameraShake } from './CameraShake';
|
|
8
|
+
export { CheckboxStyle } from './CheckboxStyle';
|
|
9
|
+
export { CheckpointCustomIconStyle, CheckpointIcon } from './Checkpoint';
|
|
10
|
+
export { CloudHat } from './CloudHat';
|
|
11
|
+
export { Control } from './Control';
|
|
12
|
+
export { CursorSprite } from './CursorSprite';
|
|
13
|
+
export { DrivingStyle, VehicleDrivingFlags } from './Driving';
|
|
14
|
+
export { ExplosionType } from './ExplosionType';
|
|
15
|
+
export { FiringPattern } from './FiringPattern';
|
|
16
|
+
export { Font } from './Font';
|
|
17
|
+
export { ForceType } from './ForceType';
|
|
18
|
+
export { Gender } from './Gender';
|
|
19
|
+
export { HelmetType } from './HelmetType';
|
|
20
|
+
export { HudColor } from './HudColor';
|
|
21
|
+
export { HudComponent } from './HudComponent';
|
|
22
|
+
export { InputMode } from './InputMode';
|
|
23
|
+
export { IntersectOptions } from './IntersectOptions';
|
|
24
|
+
export { InvertAxis, InvertAxisFlags } from './InvertAxis';
|
|
25
|
+
export { Language } from './Language';
|
|
26
|
+
export { LeaveVehicleFlags } from './LeaveVehicleFlags';
|
|
27
|
+
export { LoadingSpinnerType } from './LoadingSpinnerType';
|
|
28
|
+
export { MarkerType } from './MarkerType';
|
|
29
|
+
export { MenuAlignment } from './MenuAlignment';
|
|
30
|
+
export { NotificationType } from './NotificationType';
|
|
31
|
+
export { ParachuteLandingType, ParachuteState } from './Parachute';
|
|
32
|
+
export { RadioStation } from './RadioStation';
|
|
33
|
+
export { RagdollType } from './RagdollType';
|
|
34
|
+
export { Relationship } from './Relationship';
|
|
35
|
+
export { RopeType } from './RopeType';
|
|
36
|
+
export { ScreenEffect } from './ScreenEffect';
|
|
37
|
+
export { SpeechModifier } from './SpeechModifier';
|
|
38
|
+
export * from './Vehicle';
|
|
39
|
+
export { Weather } from './Weather';
|
|
40
|
+
export { ZoneID } from './ZoneID';
|
|
41
|
+
export { PickupType } from './PickupType';
|
|
42
|
+
export { CameraTypes } from './CameraTypes';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export { Alignment } from './Alignment';
|
|
2
|
+
export { AnimationFlags } from './AnimationFlags';
|
|
3
|
+
export { AudioFlag } from './AudioFlag';
|
|
4
|
+
export { BadgeStyle } from './BadgeStyle';
|
|
5
|
+
export { BlipColor, BlipSprite } from './Blip';
|
|
6
|
+
export { Bone } from './Bone';
|
|
7
|
+
export { CameraShake } from './CameraShake';
|
|
8
|
+
export { CheckboxStyle } from './CheckboxStyle';
|
|
9
|
+
export { CheckpointCustomIconStyle, CheckpointIcon } from './Checkpoint';
|
|
10
|
+
export { CloudHat } from './CloudHat';
|
|
11
|
+
export { Control } from './Control';
|
|
12
|
+
export { CursorSprite } from './CursorSprite';
|
|
13
|
+
export { DrivingStyle, VehicleDrivingFlags } from './Driving';
|
|
14
|
+
export { ExplosionType } from './ExplosionType';
|
|
15
|
+
export { FiringPattern } from './FiringPattern';
|
|
16
|
+
export { Font } from './Font';
|
|
17
|
+
export { ForceType } from './ForceType';
|
|
18
|
+
export { Gender } from './Gender';
|
|
19
|
+
export { HelmetType } from './HelmetType';
|
|
20
|
+
export { HudColor } from './HudColor';
|
|
21
|
+
export { HudComponent } from './HudComponent';
|
|
22
|
+
export { InputMode } from './InputMode';
|
|
23
|
+
export { IntersectOptions } from './IntersectOptions';
|
|
24
|
+
export { InvertAxisFlags } from './InvertAxis';
|
|
25
|
+
export { Language } from './Language';
|
|
26
|
+
export { LeaveVehicleFlags } from './LeaveVehicleFlags';
|
|
27
|
+
export { LoadingSpinnerType } from './LoadingSpinnerType';
|
|
28
|
+
export { MarkerType } from './MarkerType';
|
|
29
|
+
export { MenuAlignment } from './MenuAlignment';
|
|
30
|
+
export { NotificationType } from './NotificationType';
|
|
31
|
+
export { ParachuteLandingType, ParachuteState } from './Parachute';
|
|
32
|
+
export { RadioStation } from './RadioStation';
|
|
33
|
+
export { RagdollType } from './RagdollType';
|
|
34
|
+
export { Relationship } from './Relationship';
|
|
35
|
+
export { RopeType } from './RopeType';
|
|
36
|
+
export { ScreenEffect } from './ScreenEffect';
|
|
37
|
+
export { SpeechModifier } from './SpeechModifier';
|
|
38
|
+
export * from './Vehicle';
|
|
39
|
+
export { Weather } from './Weather';
|
|
40
|
+
export { ZoneID } from './ZoneID';
|
|
41
|
+
export { PickupType } from './PickupType';
|
|
42
|
+
export { CameraTypes } from './CameraTypes';
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
export declare enum MaterialHash {
|
|
2
|
+
None = 0,
|
|
3
|
+
Unk = 2519482235,
|
|
4
|
+
Concrete = 1187676648,
|
|
5
|
+
ConcretePothole = 359120722,
|
|
6
|
+
ConcreteDusty = 3210327185,
|
|
7
|
+
Tarmac = 282940568,
|
|
8
|
+
TarmacPainted = 2993614768,
|
|
9
|
+
TarmacPothole = 1886546517,
|
|
10
|
+
RumbleStrip = 4044799021,
|
|
11
|
+
BreezeBlock = 3340854742,
|
|
12
|
+
Rock = 3454750755,
|
|
13
|
+
RockMossy = 4170197704,
|
|
14
|
+
Stone = 765206029,
|
|
15
|
+
Cobblestone = 576169331,
|
|
16
|
+
Brick = 1639053622,
|
|
17
|
+
Marble = 1945073303,
|
|
18
|
+
PavingSlab = 1907048430,
|
|
19
|
+
SandstoneSolid = 592446772,
|
|
20
|
+
SandstoneBrittle = 1913209870,
|
|
21
|
+
SandLoose = 2699818980,
|
|
22
|
+
SandCompact = 510490462,
|
|
23
|
+
SandWet = 909950165,
|
|
24
|
+
SandTrack = 2387446527,
|
|
25
|
+
SandUnderwater = 3158909604,
|
|
26
|
+
SandDryDeep = 509508168,
|
|
27
|
+
SandWetDeep = 1288448767,
|
|
28
|
+
Ice = 3508906581,
|
|
29
|
+
IceTarmac = 2363942873,
|
|
30
|
+
SnowLoose = 2357397706,
|
|
31
|
+
SnowCompact = 3416406407,
|
|
32
|
+
SnowDeep = 1619704960,
|
|
33
|
+
SnowTarmac = 1550304810,
|
|
34
|
+
GravelSmall = 951832588,
|
|
35
|
+
GravelLarge = 2128369009,
|
|
36
|
+
GravelDeep = 3938260814,
|
|
37
|
+
GravelTrainTrack = 1925605558,
|
|
38
|
+
DirtTrack = 2409420175,
|
|
39
|
+
MudHard = 2352068586,
|
|
40
|
+
MudPothole = 312396330,
|
|
41
|
+
MudSoft = 1635937914,
|
|
42
|
+
MudUnderwater = 4021477129,
|
|
43
|
+
MudDeep = 1109728704,
|
|
44
|
+
Marsh = 223086562,
|
|
45
|
+
MarshDeep = 1584636462,
|
|
46
|
+
Soil = 3594309083,
|
|
47
|
+
ClayHard = 1144315879,
|
|
48
|
+
ClaySoft = 560985072,
|
|
49
|
+
GrassLong = 3833216577,
|
|
50
|
+
Grass = 1333033863,
|
|
51
|
+
GrassShort = 3008270349,
|
|
52
|
+
Hay = 2461440131,
|
|
53
|
+
Bushes = 581794674,
|
|
54
|
+
Twigs = 3381615457,
|
|
55
|
+
Leaves = 2253637325,
|
|
56
|
+
Woodchips = 3985845843,
|
|
57
|
+
TreeBark = 2379541433,
|
|
58
|
+
MetalSolidSmall = 2847687191,
|
|
59
|
+
MetalSolidMedium = 3929336056,
|
|
60
|
+
MetalSolidLarge = 752131025,
|
|
61
|
+
MetalHollowSmall = 15972667,
|
|
62
|
+
MetalHollowMedium = 1849540536,
|
|
63
|
+
MetalHollowLarge = 3711753465,
|
|
64
|
+
MetalChainlinkSmall = 762193613,
|
|
65
|
+
MetalChainlinkLarge = 125958708,
|
|
66
|
+
MetalCorrugatedIron = 834144982,
|
|
67
|
+
MetalGrille = 3868849285,
|
|
68
|
+
MetalRailing = 2100727187,
|
|
69
|
+
MetalDuct = 1761524221,
|
|
70
|
+
MetalGarageDoor = 4063706601,
|
|
71
|
+
MetalManhole = 3539969597,
|
|
72
|
+
WoodSolidSmall = 3895095068,
|
|
73
|
+
WoodSolidMedium = 555004797,
|
|
74
|
+
WoodSolidLarge = 815762359,
|
|
75
|
+
WoodSolidPolished = 126470059,
|
|
76
|
+
WoodFloorDusty = 3545514974,
|
|
77
|
+
WoodHollowSmall = 1993976879,
|
|
78
|
+
WoodHollowMedium = 3929491133,
|
|
79
|
+
WoodHollowLarge = 3369548007,
|
|
80
|
+
WoodChipboard = 1176309403,
|
|
81
|
+
WoodOldCreaky = 722686013,
|
|
82
|
+
WoodHighDensity = 2552123904,
|
|
83
|
+
WoodLattice = 2011204130,
|
|
84
|
+
Ceramic = 3108646581,
|
|
85
|
+
RoofTile = 1755188853,
|
|
86
|
+
RoofFelt = 2877802565,
|
|
87
|
+
Fibreglass = 1354180827,
|
|
88
|
+
Tarpaulin = 3652308448,
|
|
89
|
+
Plastic = 2221655295,
|
|
90
|
+
PlasticHollow = 627123000,
|
|
91
|
+
PlasticHighDensity = 2668971817,
|
|
92
|
+
PlasticClear = 2435246283,
|
|
93
|
+
PlasticHollowClear = 772722531,
|
|
94
|
+
PlasticHighDensityClear = 2956494126,
|
|
95
|
+
FibreglassHollow = 3528912198,
|
|
96
|
+
Rubber = 4149231379,
|
|
97
|
+
RubberHollow = 3511032624,
|
|
98
|
+
Linoleum = 289630530,
|
|
99
|
+
Laminate = 1845676458,
|
|
100
|
+
CarpetSolid = 669292054,
|
|
101
|
+
CarpetSolidDusty = 158576196,
|
|
102
|
+
CarpetFloorboard = 2898482353,
|
|
103
|
+
Cloth = 122789469,
|
|
104
|
+
PlasterSolid = 3720844863,
|
|
105
|
+
PlasterBrittle = 4043078398,
|
|
106
|
+
CardboardSheet = 236511221,
|
|
107
|
+
CardboardBox = 2885912856,
|
|
108
|
+
Paper = 474149820,
|
|
109
|
+
Foam = 808719444,
|
|
110
|
+
FeatherPillow = 1341866303,
|
|
111
|
+
Polystyrene = 2538039965,
|
|
112
|
+
Leather = 3724496396,
|
|
113
|
+
Tvscreen = 1429989756,
|
|
114
|
+
SlattedBlinds = 673696729,
|
|
115
|
+
GlassShootThrough = 937503243,
|
|
116
|
+
GlassBulletproof = 244521486,
|
|
117
|
+
GlassOpaque = 1500272081,
|
|
118
|
+
Perspex = 2675173228,
|
|
119
|
+
CarMetal = 4201905313,
|
|
120
|
+
CarPlastic = 2137197282,
|
|
121
|
+
CarSofttop = 3315319434,
|
|
122
|
+
CarSofttopClear = 2130571536,
|
|
123
|
+
CarGlassWeak = 1247281098,
|
|
124
|
+
CarGlassMedium = 602884284,
|
|
125
|
+
CarGlassStrong = 1070994698,
|
|
126
|
+
CarGlassBulletproof = 2573051366,
|
|
127
|
+
CarGlassOpaque = 513061559,
|
|
128
|
+
Water = 435688960,
|
|
129
|
+
Blood = 5236042,
|
|
130
|
+
Oil = 3660485991,
|
|
131
|
+
Petrol = 2660782956,
|
|
132
|
+
FreshMeat = 868733839,
|
|
133
|
+
DriedMeat = 2849806867,
|
|
134
|
+
EmissiveGlass = 1501078253,
|
|
135
|
+
EmissivePlastic = 1059629996,
|
|
136
|
+
VfxMetalElectrified = 3985833031,
|
|
137
|
+
VfxMetalWaterTower = 611561919,
|
|
138
|
+
VfxMetalSteam = 3603690002,
|
|
139
|
+
VfxMetalFlame = 332778253,
|
|
140
|
+
PhysNoFriction = 1666473731,
|
|
141
|
+
PhysGolfBall = 2601153738,
|
|
142
|
+
PhysTennisBall = 4038262533,
|
|
143
|
+
PhysCaster = 4059664613,
|
|
144
|
+
PhysCasterRusty = 2016463089,
|
|
145
|
+
PhysCarVoid = 1345867677,
|
|
146
|
+
PhysPedCapsule = 4003336261,
|
|
147
|
+
PhysElectricFence = 3124923563,
|
|
148
|
+
PhysElectricMetal = 2281206151,
|
|
149
|
+
PhysBarbedWire = 2751643840,
|
|
150
|
+
PhysPooltableSurface = 605776921,
|
|
151
|
+
PhysPooltableCushion = 972939963,
|
|
152
|
+
PhysPooltableBall = 3546625734,
|
|
153
|
+
Buttocks = 483400232,
|
|
154
|
+
ThighLeft = 3834431425,
|
|
155
|
+
ShinLeft = 652772852,
|
|
156
|
+
FootLeft = 1926285543,
|
|
157
|
+
ThighRight = 4057986041,
|
|
158
|
+
ShinRight = 3848931141,
|
|
159
|
+
FootRight = 2925830612,
|
|
160
|
+
Spine0 = 2372680412,
|
|
161
|
+
Spine1 = 3154854427,
|
|
162
|
+
Spine2 = 1457572381,
|
|
163
|
+
Spine3 = 32752644,
|
|
164
|
+
ClavicleLeft = 2825350831,
|
|
165
|
+
UpperArmLeft = 3784624938,
|
|
166
|
+
LowerArmLeft = 1045062756,
|
|
167
|
+
HandLeft = 113101985,
|
|
168
|
+
ClavicleRight = 2737678298,
|
|
169
|
+
UpperArmRight = 1501153539,
|
|
170
|
+
LowerArmRight = 1777921590,
|
|
171
|
+
HandRight = 2000961972,
|
|
172
|
+
Neck = 1718294164,
|
|
173
|
+
Head = 3559574543,
|
|
174
|
+
AnimalDefault = 286224918,
|
|
175
|
+
CarEngine = 2378027672,
|
|
176
|
+
Puddle = 999829011,
|
|
177
|
+
ConcretePavement = 2015599386,
|
|
178
|
+
BrickPavement = 3147605720,
|
|
179
|
+
PhysDynamicCoverBound = 2247498441,
|
|
180
|
+
VfxWoodBeerBarrel = 998201806,
|
|
181
|
+
WoodHighFriction = 2154880249,
|
|
182
|
+
RockNoinst = 127813971,
|
|
183
|
+
BushesNoinst = 1441114862,
|
|
184
|
+
MetalSolidRoadSurface = 3565854962,
|
|
185
|
+
StuntRampSurface = 2206792300,
|
|
186
|
+
Temp01 = 746881105,
|
|
187
|
+
Temp02 = 2316997185,
|
|
188
|
+
Temp03 = 1911121241,
|
|
189
|
+
Temp04 = 1923995104,
|
|
190
|
+
Temp05 = 2901304848,
|
|
191
|
+
Temp06 = 1061250033,
|
|
192
|
+
Temp07 = 2529443614,
|
|
193
|
+
Temp08 = 1343679702,
|
|
194
|
+
Temp09 = 1026054937,
|
|
195
|
+
Temp10 = 63305994,
|
|
196
|
+
Temp11 = 47470226,
|
|
197
|
+
Temp12 = 702596674,
|
|
198
|
+
Temp13 = 2657481383,
|
|
199
|
+
Temp14 = 3649011722,
|
|
200
|
+
Temp15 = 2710969365,
|
|
201
|
+
Temp16 = 2782232023,
|
|
202
|
+
Temp17 = 1011960114,
|
|
203
|
+
Temp18 = 1354993138,
|
|
204
|
+
Temp19 = 3493162850,
|
|
205
|
+
Temp20 = 2242086891,
|
|
206
|
+
Temp21 = 3257211236,
|
|
207
|
+
Temp22 = 3674578943,
|
|
208
|
+
Temp23 = 465002639,
|
|
209
|
+
Temp24 = 1963820161,
|
|
210
|
+
Temp25 = 1952288305,
|
|
211
|
+
Temp26 = 3178714198,
|
|
212
|
+
Temp27 = 889255498,
|
|
213
|
+
Temp28 = 3115293198,
|
|
214
|
+
Temp29 = 1078418101,
|
|
215
|
+
Temp30 = 13626292
|
|
216
|
+
}
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
export var MaterialHash;
|
|
2
|
+
(function (MaterialHash) {
|
|
3
|
+
MaterialHash[MaterialHash["None"] = 0] = "None";
|
|
4
|
+
MaterialHash[MaterialHash["Unk"] = 2519482235] = "Unk";
|
|
5
|
+
MaterialHash[MaterialHash["Concrete"] = 1187676648] = "Concrete";
|
|
6
|
+
MaterialHash[MaterialHash["ConcretePothole"] = 359120722] = "ConcretePothole";
|
|
7
|
+
MaterialHash[MaterialHash["ConcreteDusty"] = 3210327185] = "ConcreteDusty";
|
|
8
|
+
MaterialHash[MaterialHash["Tarmac"] = 282940568] = "Tarmac";
|
|
9
|
+
MaterialHash[MaterialHash["TarmacPainted"] = 2993614768] = "TarmacPainted";
|
|
10
|
+
MaterialHash[MaterialHash["TarmacPothole"] = 1886546517] = "TarmacPothole";
|
|
11
|
+
MaterialHash[MaterialHash["RumbleStrip"] = 4044799021] = "RumbleStrip";
|
|
12
|
+
MaterialHash[MaterialHash["BreezeBlock"] = 3340854742] = "BreezeBlock";
|
|
13
|
+
MaterialHash[MaterialHash["Rock"] = 3454750755] = "Rock";
|
|
14
|
+
MaterialHash[MaterialHash["RockMossy"] = 4170197704] = "RockMossy";
|
|
15
|
+
MaterialHash[MaterialHash["Stone"] = 765206029] = "Stone";
|
|
16
|
+
MaterialHash[MaterialHash["Cobblestone"] = 576169331] = "Cobblestone";
|
|
17
|
+
MaterialHash[MaterialHash["Brick"] = 1639053622] = "Brick";
|
|
18
|
+
MaterialHash[MaterialHash["Marble"] = 1945073303] = "Marble";
|
|
19
|
+
MaterialHash[MaterialHash["PavingSlab"] = 1907048430] = "PavingSlab";
|
|
20
|
+
MaterialHash[MaterialHash["SandstoneSolid"] = 592446772] = "SandstoneSolid";
|
|
21
|
+
MaterialHash[MaterialHash["SandstoneBrittle"] = 1913209870] = "SandstoneBrittle";
|
|
22
|
+
MaterialHash[MaterialHash["SandLoose"] = 2699818980] = "SandLoose";
|
|
23
|
+
MaterialHash[MaterialHash["SandCompact"] = 510490462] = "SandCompact";
|
|
24
|
+
MaterialHash[MaterialHash["SandWet"] = 909950165] = "SandWet";
|
|
25
|
+
MaterialHash[MaterialHash["SandTrack"] = 2387446527] = "SandTrack";
|
|
26
|
+
MaterialHash[MaterialHash["SandUnderwater"] = 3158909604] = "SandUnderwater";
|
|
27
|
+
MaterialHash[MaterialHash["SandDryDeep"] = 509508168] = "SandDryDeep";
|
|
28
|
+
MaterialHash[MaterialHash["SandWetDeep"] = 1288448767] = "SandWetDeep";
|
|
29
|
+
MaterialHash[MaterialHash["Ice"] = 3508906581] = "Ice";
|
|
30
|
+
MaterialHash[MaterialHash["IceTarmac"] = 2363942873] = "IceTarmac";
|
|
31
|
+
MaterialHash[MaterialHash["SnowLoose"] = 2357397706] = "SnowLoose";
|
|
32
|
+
MaterialHash[MaterialHash["SnowCompact"] = 3416406407] = "SnowCompact";
|
|
33
|
+
MaterialHash[MaterialHash["SnowDeep"] = 1619704960] = "SnowDeep";
|
|
34
|
+
MaterialHash[MaterialHash["SnowTarmac"] = 1550304810] = "SnowTarmac";
|
|
35
|
+
MaterialHash[MaterialHash["GravelSmall"] = 951832588] = "GravelSmall";
|
|
36
|
+
MaterialHash[MaterialHash["GravelLarge"] = 2128369009] = "GravelLarge";
|
|
37
|
+
MaterialHash[MaterialHash["GravelDeep"] = 3938260814] = "GravelDeep";
|
|
38
|
+
MaterialHash[MaterialHash["GravelTrainTrack"] = 1925605558] = "GravelTrainTrack";
|
|
39
|
+
MaterialHash[MaterialHash["DirtTrack"] = 2409420175] = "DirtTrack";
|
|
40
|
+
MaterialHash[MaterialHash["MudHard"] = 2352068586] = "MudHard";
|
|
41
|
+
MaterialHash[MaterialHash["MudPothole"] = 312396330] = "MudPothole";
|
|
42
|
+
MaterialHash[MaterialHash["MudSoft"] = 1635937914] = "MudSoft";
|
|
43
|
+
MaterialHash[MaterialHash["MudUnderwater"] = 4021477129] = "MudUnderwater";
|
|
44
|
+
MaterialHash[MaterialHash["MudDeep"] = 1109728704] = "MudDeep";
|
|
45
|
+
MaterialHash[MaterialHash["Marsh"] = 223086562] = "Marsh";
|
|
46
|
+
MaterialHash[MaterialHash["MarshDeep"] = 1584636462] = "MarshDeep";
|
|
47
|
+
MaterialHash[MaterialHash["Soil"] = 3594309083] = "Soil";
|
|
48
|
+
MaterialHash[MaterialHash["ClayHard"] = 1144315879] = "ClayHard";
|
|
49
|
+
MaterialHash[MaterialHash["ClaySoft"] = 560985072] = "ClaySoft";
|
|
50
|
+
MaterialHash[MaterialHash["GrassLong"] = 3833216577] = "GrassLong";
|
|
51
|
+
MaterialHash[MaterialHash["Grass"] = 1333033863] = "Grass";
|
|
52
|
+
MaterialHash[MaterialHash["GrassShort"] = 3008270349] = "GrassShort";
|
|
53
|
+
MaterialHash[MaterialHash["Hay"] = 2461440131] = "Hay";
|
|
54
|
+
MaterialHash[MaterialHash["Bushes"] = 581794674] = "Bushes";
|
|
55
|
+
MaterialHash[MaterialHash["Twigs"] = 3381615457] = "Twigs";
|
|
56
|
+
MaterialHash[MaterialHash["Leaves"] = 2253637325] = "Leaves";
|
|
57
|
+
MaterialHash[MaterialHash["Woodchips"] = 3985845843] = "Woodchips";
|
|
58
|
+
MaterialHash[MaterialHash["TreeBark"] = 2379541433] = "TreeBark";
|
|
59
|
+
MaterialHash[MaterialHash["MetalSolidSmall"] = 2847687191] = "MetalSolidSmall";
|
|
60
|
+
MaterialHash[MaterialHash["MetalSolidMedium"] = 3929336056] = "MetalSolidMedium";
|
|
61
|
+
MaterialHash[MaterialHash["MetalSolidLarge"] = 752131025] = "MetalSolidLarge";
|
|
62
|
+
MaterialHash[MaterialHash["MetalHollowSmall"] = 15972667] = "MetalHollowSmall";
|
|
63
|
+
MaterialHash[MaterialHash["MetalHollowMedium"] = 1849540536] = "MetalHollowMedium";
|
|
64
|
+
MaterialHash[MaterialHash["MetalHollowLarge"] = 3711753465] = "MetalHollowLarge";
|
|
65
|
+
MaterialHash[MaterialHash["MetalChainlinkSmall"] = 762193613] = "MetalChainlinkSmall";
|
|
66
|
+
MaterialHash[MaterialHash["MetalChainlinkLarge"] = 125958708] = "MetalChainlinkLarge";
|
|
67
|
+
MaterialHash[MaterialHash["MetalCorrugatedIron"] = 834144982] = "MetalCorrugatedIron";
|
|
68
|
+
MaterialHash[MaterialHash["MetalGrille"] = 3868849285] = "MetalGrille";
|
|
69
|
+
MaterialHash[MaterialHash["MetalRailing"] = 2100727187] = "MetalRailing";
|
|
70
|
+
MaterialHash[MaterialHash["MetalDuct"] = 1761524221] = "MetalDuct";
|
|
71
|
+
MaterialHash[MaterialHash["MetalGarageDoor"] = 4063706601] = "MetalGarageDoor";
|
|
72
|
+
MaterialHash[MaterialHash["MetalManhole"] = 3539969597] = "MetalManhole";
|
|
73
|
+
MaterialHash[MaterialHash["WoodSolidSmall"] = 3895095068] = "WoodSolidSmall";
|
|
74
|
+
MaterialHash[MaterialHash["WoodSolidMedium"] = 555004797] = "WoodSolidMedium";
|
|
75
|
+
MaterialHash[MaterialHash["WoodSolidLarge"] = 815762359] = "WoodSolidLarge";
|
|
76
|
+
MaterialHash[MaterialHash["WoodSolidPolished"] = 126470059] = "WoodSolidPolished";
|
|
77
|
+
MaterialHash[MaterialHash["WoodFloorDusty"] = 3545514974] = "WoodFloorDusty";
|
|
78
|
+
MaterialHash[MaterialHash["WoodHollowSmall"] = 1993976879] = "WoodHollowSmall";
|
|
79
|
+
MaterialHash[MaterialHash["WoodHollowMedium"] = 3929491133] = "WoodHollowMedium";
|
|
80
|
+
MaterialHash[MaterialHash["WoodHollowLarge"] = 3369548007] = "WoodHollowLarge";
|
|
81
|
+
MaterialHash[MaterialHash["WoodChipboard"] = 1176309403] = "WoodChipboard";
|
|
82
|
+
MaterialHash[MaterialHash["WoodOldCreaky"] = 722686013] = "WoodOldCreaky";
|
|
83
|
+
MaterialHash[MaterialHash["WoodHighDensity"] = 2552123904] = "WoodHighDensity";
|
|
84
|
+
MaterialHash[MaterialHash["WoodLattice"] = 2011204130] = "WoodLattice";
|
|
85
|
+
MaterialHash[MaterialHash["Ceramic"] = 3108646581] = "Ceramic";
|
|
86
|
+
MaterialHash[MaterialHash["RoofTile"] = 1755188853] = "RoofTile";
|
|
87
|
+
MaterialHash[MaterialHash["RoofFelt"] = 2877802565] = "RoofFelt";
|
|
88
|
+
MaterialHash[MaterialHash["Fibreglass"] = 1354180827] = "Fibreglass";
|
|
89
|
+
MaterialHash[MaterialHash["Tarpaulin"] = 3652308448] = "Tarpaulin";
|
|
90
|
+
MaterialHash[MaterialHash["Plastic"] = 2221655295] = "Plastic";
|
|
91
|
+
MaterialHash[MaterialHash["PlasticHollow"] = 627123000] = "PlasticHollow";
|
|
92
|
+
MaterialHash[MaterialHash["PlasticHighDensity"] = 2668971817] = "PlasticHighDensity";
|
|
93
|
+
MaterialHash[MaterialHash["PlasticClear"] = 2435246283] = "PlasticClear";
|
|
94
|
+
MaterialHash[MaterialHash["PlasticHollowClear"] = 772722531] = "PlasticHollowClear";
|
|
95
|
+
MaterialHash[MaterialHash["PlasticHighDensityClear"] = 2956494126] = "PlasticHighDensityClear";
|
|
96
|
+
MaterialHash[MaterialHash["FibreglassHollow"] = 3528912198] = "FibreglassHollow";
|
|
97
|
+
MaterialHash[MaterialHash["Rubber"] = 4149231379] = "Rubber";
|
|
98
|
+
MaterialHash[MaterialHash["RubberHollow"] = 3511032624] = "RubberHollow";
|
|
99
|
+
MaterialHash[MaterialHash["Linoleum"] = 289630530] = "Linoleum";
|
|
100
|
+
MaterialHash[MaterialHash["Laminate"] = 1845676458] = "Laminate";
|
|
101
|
+
MaterialHash[MaterialHash["CarpetSolid"] = 669292054] = "CarpetSolid";
|
|
102
|
+
MaterialHash[MaterialHash["CarpetSolidDusty"] = 158576196] = "CarpetSolidDusty";
|
|
103
|
+
MaterialHash[MaterialHash["CarpetFloorboard"] = 2898482353] = "CarpetFloorboard";
|
|
104
|
+
MaterialHash[MaterialHash["Cloth"] = 122789469] = "Cloth";
|
|
105
|
+
MaterialHash[MaterialHash["PlasterSolid"] = 3720844863] = "PlasterSolid";
|
|
106
|
+
MaterialHash[MaterialHash["PlasterBrittle"] = 4043078398] = "PlasterBrittle";
|
|
107
|
+
MaterialHash[MaterialHash["CardboardSheet"] = 236511221] = "CardboardSheet";
|
|
108
|
+
MaterialHash[MaterialHash["CardboardBox"] = 2885912856] = "CardboardBox";
|
|
109
|
+
MaterialHash[MaterialHash["Paper"] = 474149820] = "Paper";
|
|
110
|
+
MaterialHash[MaterialHash["Foam"] = 808719444] = "Foam";
|
|
111
|
+
MaterialHash[MaterialHash["FeatherPillow"] = 1341866303] = "FeatherPillow";
|
|
112
|
+
MaterialHash[MaterialHash["Polystyrene"] = 2538039965] = "Polystyrene";
|
|
113
|
+
MaterialHash[MaterialHash["Leather"] = 3724496396] = "Leather";
|
|
114
|
+
MaterialHash[MaterialHash["Tvscreen"] = 1429989756] = "Tvscreen";
|
|
115
|
+
MaterialHash[MaterialHash["SlattedBlinds"] = 673696729] = "SlattedBlinds";
|
|
116
|
+
MaterialHash[MaterialHash["GlassShootThrough"] = 937503243] = "GlassShootThrough";
|
|
117
|
+
MaterialHash[MaterialHash["GlassBulletproof"] = 244521486] = "GlassBulletproof";
|
|
118
|
+
MaterialHash[MaterialHash["GlassOpaque"] = 1500272081] = "GlassOpaque";
|
|
119
|
+
MaterialHash[MaterialHash["Perspex"] = 2675173228] = "Perspex";
|
|
120
|
+
MaterialHash[MaterialHash["CarMetal"] = 4201905313] = "CarMetal";
|
|
121
|
+
MaterialHash[MaterialHash["CarPlastic"] = 2137197282] = "CarPlastic";
|
|
122
|
+
MaterialHash[MaterialHash["CarSofttop"] = 3315319434] = "CarSofttop";
|
|
123
|
+
MaterialHash[MaterialHash["CarSofttopClear"] = 2130571536] = "CarSofttopClear";
|
|
124
|
+
MaterialHash[MaterialHash["CarGlassWeak"] = 1247281098] = "CarGlassWeak";
|
|
125
|
+
MaterialHash[MaterialHash["CarGlassMedium"] = 602884284] = "CarGlassMedium";
|
|
126
|
+
MaterialHash[MaterialHash["CarGlassStrong"] = 1070994698] = "CarGlassStrong";
|
|
127
|
+
MaterialHash[MaterialHash["CarGlassBulletproof"] = 2573051366] = "CarGlassBulletproof";
|
|
128
|
+
MaterialHash[MaterialHash["CarGlassOpaque"] = 513061559] = "CarGlassOpaque";
|
|
129
|
+
MaterialHash[MaterialHash["Water"] = 435688960] = "Water";
|
|
130
|
+
MaterialHash[MaterialHash["Blood"] = 5236042] = "Blood";
|
|
131
|
+
MaterialHash[MaterialHash["Oil"] = 3660485991] = "Oil";
|
|
132
|
+
MaterialHash[MaterialHash["Petrol"] = 2660782956] = "Petrol";
|
|
133
|
+
MaterialHash[MaterialHash["FreshMeat"] = 868733839] = "FreshMeat";
|
|
134
|
+
MaterialHash[MaterialHash["DriedMeat"] = 2849806867] = "DriedMeat";
|
|
135
|
+
MaterialHash[MaterialHash["EmissiveGlass"] = 1501078253] = "EmissiveGlass";
|
|
136
|
+
MaterialHash[MaterialHash["EmissivePlastic"] = 1059629996] = "EmissivePlastic";
|
|
137
|
+
MaterialHash[MaterialHash["VfxMetalElectrified"] = 3985833031] = "VfxMetalElectrified";
|
|
138
|
+
MaterialHash[MaterialHash["VfxMetalWaterTower"] = 611561919] = "VfxMetalWaterTower";
|
|
139
|
+
MaterialHash[MaterialHash["VfxMetalSteam"] = 3603690002] = "VfxMetalSteam";
|
|
140
|
+
MaterialHash[MaterialHash["VfxMetalFlame"] = 332778253] = "VfxMetalFlame";
|
|
141
|
+
MaterialHash[MaterialHash["PhysNoFriction"] = 1666473731] = "PhysNoFriction";
|
|
142
|
+
MaterialHash[MaterialHash["PhysGolfBall"] = 2601153738] = "PhysGolfBall";
|
|
143
|
+
MaterialHash[MaterialHash["PhysTennisBall"] = 4038262533] = "PhysTennisBall";
|
|
144
|
+
MaterialHash[MaterialHash["PhysCaster"] = 4059664613] = "PhysCaster";
|
|
145
|
+
MaterialHash[MaterialHash["PhysCasterRusty"] = 2016463089] = "PhysCasterRusty";
|
|
146
|
+
MaterialHash[MaterialHash["PhysCarVoid"] = 1345867677] = "PhysCarVoid";
|
|
147
|
+
MaterialHash[MaterialHash["PhysPedCapsule"] = 4003336261] = "PhysPedCapsule";
|
|
148
|
+
MaterialHash[MaterialHash["PhysElectricFence"] = 3124923563] = "PhysElectricFence";
|
|
149
|
+
MaterialHash[MaterialHash["PhysElectricMetal"] = 2281206151] = "PhysElectricMetal";
|
|
150
|
+
MaterialHash[MaterialHash["PhysBarbedWire"] = 2751643840] = "PhysBarbedWire";
|
|
151
|
+
MaterialHash[MaterialHash["PhysPooltableSurface"] = 605776921] = "PhysPooltableSurface";
|
|
152
|
+
MaterialHash[MaterialHash["PhysPooltableCushion"] = 972939963] = "PhysPooltableCushion";
|
|
153
|
+
MaterialHash[MaterialHash["PhysPooltableBall"] = 3546625734] = "PhysPooltableBall";
|
|
154
|
+
MaterialHash[MaterialHash["Buttocks"] = 483400232] = "Buttocks";
|
|
155
|
+
MaterialHash[MaterialHash["ThighLeft"] = 3834431425] = "ThighLeft";
|
|
156
|
+
MaterialHash[MaterialHash["ShinLeft"] = 652772852] = "ShinLeft";
|
|
157
|
+
MaterialHash[MaterialHash["FootLeft"] = 1926285543] = "FootLeft";
|
|
158
|
+
MaterialHash[MaterialHash["ThighRight"] = 4057986041] = "ThighRight";
|
|
159
|
+
MaterialHash[MaterialHash["ShinRight"] = 3848931141] = "ShinRight";
|
|
160
|
+
MaterialHash[MaterialHash["FootRight"] = 2925830612] = "FootRight";
|
|
161
|
+
MaterialHash[MaterialHash["Spine0"] = 2372680412] = "Spine0";
|
|
162
|
+
MaterialHash[MaterialHash["Spine1"] = 3154854427] = "Spine1";
|
|
163
|
+
MaterialHash[MaterialHash["Spine2"] = 1457572381] = "Spine2";
|
|
164
|
+
MaterialHash[MaterialHash["Spine3"] = 32752644] = "Spine3";
|
|
165
|
+
MaterialHash[MaterialHash["ClavicleLeft"] = 2825350831] = "ClavicleLeft";
|
|
166
|
+
MaterialHash[MaterialHash["UpperArmLeft"] = 3784624938] = "UpperArmLeft";
|
|
167
|
+
MaterialHash[MaterialHash["LowerArmLeft"] = 1045062756] = "LowerArmLeft";
|
|
168
|
+
MaterialHash[MaterialHash["HandLeft"] = 113101985] = "HandLeft";
|
|
169
|
+
MaterialHash[MaterialHash["ClavicleRight"] = 2737678298] = "ClavicleRight";
|
|
170
|
+
MaterialHash[MaterialHash["UpperArmRight"] = 1501153539] = "UpperArmRight";
|
|
171
|
+
MaterialHash[MaterialHash["LowerArmRight"] = 1777921590] = "LowerArmRight";
|
|
172
|
+
MaterialHash[MaterialHash["HandRight"] = 2000961972] = "HandRight";
|
|
173
|
+
MaterialHash[MaterialHash["Neck"] = 1718294164] = "Neck";
|
|
174
|
+
MaterialHash[MaterialHash["Head"] = 3559574543] = "Head";
|
|
175
|
+
MaterialHash[MaterialHash["AnimalDefault"] = 286224918] = "AnimalDefault";
|
|
176
|
+
MaterialHash[MaterialHash["CarEngine"] = 2378027672] = "CarEngine";
|
|
177
|
+
MaterialHash[MaterialHash["Puddle"] = 999829011] = "Puddle";
|
|
178
|
+
MaterialHash[MaterialHash["ConcretePavement"] = 2015599386] = "ConcretePavement";
|
|
179
|
+
MaterialHash[MaterialHash["BrickPavement"] = 3147605720] = "BrickPavement";
|
|
180
|
+
MaterialHash[MaterialHash["PhysDynamicCoverBound"] = 2247498441] = "PhysDynamicCoverBound";
|
|
181
|
+
MaterialHash[MaterialHash["VfxWoodBeerBarrel"] = 998201806] = "VfxWoodBeerBarrel";
|
|
182
|
+
MaterialHash[MaterialHash["WoodHighFriction"] = 2154880249] = "WoodHighFriction";
|
|
183
|
+
MaterialHash[MaterialHash["RockNoinst"] = 127813971] = "RockNoinst";
|
|
184
|
+
MaterialHash[MaterialHash["BushesNoinst"] = 1441114862] = "BushesNoinst";
|
|
185
|
+
MaterialHash[MaterialHash["MetalSolidRoadSurface"] = 3565854962] = "MetalSolidRoadSurface";
|
|
186
|
+
MaterialHash[MaterialHash["StuntRampSurface"] = 2206792300] = "StuntRampSurface";
|
|
187
|
+
MaterialHash[MaterialHash["Temp01"] = 746881105] = "Temp01";
|
|
188
|
+
MaterialHash[MaterialHash["Temp02"] = 2316997185] = "Temp02";
|
|
189
|
+
MaterialHash[MaterialHash["Temp03"] = 1911121241] = "Temp03";
|
|
190
|
+
MaterialHash[MaterialHash["Temp04"] = 1923995104] = "Temp04";
|
|
191
|
+
MaterialHash[MaterialHash["Temp05"] = 2901304848] = "Temp05";
|
|
192
|
+
MaterialHash[MaterialHash["Temp06"] = 1061250033] = "Temp06";
|
|
193
|
+
MaterialHash[MaterialHash["Temp07"] = 2529443614] = "Temp07";
|
|
194
|
+
MaterialHash[MaterialHash["Temp08"] = 1343679702] = "Temp08";
|
|
195
|
+
MaterialHash[MaterialHash["Temp09"] = 1026054937] = "Temp09";
|
|
196
|
+
MaterialHash[MaterialHash["Temp10"] = 63305994] = "Temp10";
|
|
197
|
+
MaterialHash[MaterialHash["Temp11"] = 47470226] = "Temp11";
|
|
198
|
+
MaterialHash[MaterialHash["Temp12"] = 702596674] = "Temp12";
|
|
199
|
+
MaterialHash[MaterialHash["Temp13"] = 2657481383] = "Temp13";
|
|
200
|
+
MaterialHash[MaterialHash["Temp14"] = 3649011722] = "Temp14";
|
|
201
|
+
MaterialHash[MaterialHash["Temp15"] = 2710969365] = "Temp15";
|
|
202
|
+
MaterialHash[MaterialHash["Temp16"] = 2782232023] = "Temp16";
|
|
203
|
+
MaterialHash[MaterialHash["Temp17"] = 1011960114] = "Temp17";
|
|
204
|
+
MaterialHash[MaterialHash["Temp18"] = 1354993138] = "Temp18";
|
|
205
|
+
MaterialHash[MaterialHash["Temp19"] = 3493162850] = "Temp19";
|
|
206
|
+
MaterialHash[MaterialHash["Temp20"] = 2242086891] = "Temp20";
|
|
207
|
+
MaterialHash[MaterialHash["Temp21"] = 3257211236] = "Temp21";
|
|
208
|
+
MaterialHash[MaterialHash["Temp22"] = 3674578943] = "Temp22";
|
|
209
|
+
MaterialHash[MaterialHash["Temp23"] = 465002639] = "Temp23";
|
|
210
|
+
MaterialHash[MaterialHash["Temp24"] = 1963820161] = "Temp24";
|
|
211
|
+
MaterialHash[MaterialHash["Temp25"] = 1952288305] = "Temp25";
|
|
212
|
+
MaterialHash[MaterialHash["Temp26"] = 3178714198] = "Temp26";
|
|
213
|
+
MaterialHash[MaterialHash["Temp27"] = 889255498] = "Temp27";
|
|
214
|
+
MaterialHash[MaterialHash["Temp28"] = 3115293198] = "Temp28";
|
|
215
|
+
MaterialHash[MaterialHash["Temp29"] = 1078418101] = "Temp29";
|
|
216
|
+
MaterialHash[MaterialHash["Temp30"] = 13626292] = "Temp30";
|
|
217
|
+
})(MaterialHash || (MaterialHash = {}));
|