@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,522 @@
|
|
|
1
|
+
export declare enum VehicleHash {
|
|
2
|
+
Adder = 3078201489,
|
|
3
|
+
Airbus = 1283517198,
|
|
4
|
+
Airtug = 1560980623,
|
|
5
|
+
Akuma = 1672195559,
|
|
6
|
+
Alpha = 767087018,
|
|
7
|
+
Ambulance = 1171614426,
|
|
8
|
+
Annihilator = 837858166,
|
|
9
|
+
Apc = 562680400,
|
|
10
|
+
Ardent = 159274291,
|
|
11
|
+
ArmyTanker = 3087536137,
|
|
12
|
+
ArmyTrailer = 2818520053,
|
|
13
|
+
ArmyTrailer2 = 2657817814,
|
|
14
|
+
Asea = 2485144969,
|
|
15
|
+
Asea2 = 2487343317,
|
|
16
|
+
Asterope = 2391954683,
|
|
17
|
+
Avarus = 2179174271,
|
|
18
|
+
Bagger = 2154536131,
|
|
19
|
+
BaleTrailer = 3895125590,
|
|
20
|
+
Baller = 3486135912,
|
|
21
|
+
Baller2 = 142944341,
|
|
22
|
+
Baller3 = 1878062887,
|
|
23
|
+
Baller4 = 634118882,
|
|
24
|
+
Baller5 = 470404958,
|
|
25
|
+
Baller6 = 666166960,
|
|
26
|
+
Banshee = 3253274834,
|
|
27
|
+
Banshee2 = 633712403,
|
|
28
|
+
Barracks = 3471458123,
|
|
29
|
+
Barracks2 = 1074326203,
|
|
30
|
+
Barracks3 = 630371791,
|
|
31
|
+
Bati = 4180675781,
|
|
32
|
+
Bati2 = 3403504941,
|
|
33
|
+
Benson = 2053223216,
|
|
34
|
+
Besra = 1824333165,
|
|
35
|
+
BestiaGTS = 1274868363,
|
|
36
|
+
BF400 = 86520421,
|
|
37
|
+
BfInjection = 1126868326,
|
|
38
|
+
Biff = 850991848,
|
|
39
|
+
Bifta = 3945366167,
|
|
40
|
+
Bison = 4278019151,
|
|
41
|
+
Bison2 = 2072156101,
|
|
42
|
+
Bison3 = 1739845664,
|
|
43
|
+
BJXL = 850565707,
|
|
44
|
+
Blade = 3089165662,
|
|
45
|
+
Blazer = 2166734073,
|
|
46
|
+
Blazer2 = 4246935337,
|
|
47
|
+
Blazer3 = 3025077634,
|
|
48
|
+
Blazer4 = 3854198872,
|
|
49
|
+
Blazer5 = 2704629607,
|
|
50
|
+
Blimp = 4143991942,
|
|
51
|
+
Blimp2 = 3681241380,
|
|
52
|
+
Blista = 3950024287,
|
|
53
|
+
Blista2 = 1039032026,
|
|
54
|
+
Blista3 = 3703315515,
|
|
55
|
+
Bmx = 1131912276,
|
|
56
|
+
BoatTrailer = 524108981,
|
|
57
|
+
BobcatXL = 1069929536,
|
|
58
|
+
Bodhi2 = 2859047862,
|
|
59
|
+
Boxville = 2307837162,
|
|
60
|
+
Boxville2 = 4061868990,
|
|
61
|
+
Boxville3 = 121658888,
|
|
62
|
+
Boxville4 = 444171386,
|
|
63
|
+
Boxville5 = 682434785,
|
|
64
|
+
Brawler = 2815302597,
|
|
65
|
+
Brickade = 3989239879,
|
|
66
|
+
Brioso = 1549126457,
|
|
67
|
+
BType = 117401876,
|
|
68
|
+
BType2 = 3463132580,
|
|
69
|
+
BType3 = 3692679425,
|
|
70
|
+
Buccaneer = 3612755468,
|
|
71
|
+
Buccaneer2 = 3281516360,
|
|
72
|
+
Buffalo = 3990165190,
|
|
73
|
+
Buffalo2 = 736902334,
|
|
74
|
+
Buffalo3 = 237764926,
|
|
75
|
+
Bulldozer = 1886712733,
|
|
76
|
+
Bullet = 2598821281,
|
|
77
|
+
Burrito = 2948279460,
|
|
78
|
+
Burrito2 = 3387490166,
|
|
79
|
+
Burrito3 = 2551651283,
|
|
80
|
+
Burrito4 = 893081117,
|
|
81
|
+
Burrito5 = 1132262048,
|
|
82
|
+
Bus = 3581397346,
|
|
83
|
+
Buzzard = 788747387,
|
|
84
|
+
Buzzard2 = 745926877,
|
|
85
|
+
CableCar = 3334677549,
|
|
86
|
+
Caddy = 1147287684,
|
|
87
|
+
Caddy2 = 3757070668,
|
|
88
|
+
Caddy3 = 3525819835,
|
|
89
|
+
Camper = 1876516712,
|
|
90
|
+
Carbonizzare = 2072687711,
|
|
91
|
+
CarbonRS = 11251904,
|
|
92
|
+
Cargobob = 4244420235,
|
|
93
|
+
Cargobob2 = 1621617168,
|
|
94
|
+
Cargobob3 = 1394036463,
|
|
95
|
+
Cargobob4 = 2025593404,
|
|
96
|
+
CargoPlane = 368211810,
|
|
97
|
+
Casco = 941800958,
|
|
98
|
+
Cavalcade = 2006918058,
|
|
99
|
+
Cavalcade2 = 3505073125,
|
|
100
|
+
Cheetah = 2983812512,
|
|
101
|
+
Cheetah2 = 223240013,
|
|
102
|
+
Chimera = 6774487,
|
|
103
|
+
Chino = 349605904,
|
|
104
|
+
Chino2 = 2933279331,
|
|
105
|
+
Cliffhanger = 390201602,
|
|
106
|
+
Coach = 2222034228,
|
|
107
|
+
Cog55 = 906642318,
|
|
108
|
+
Cog552 = 704435172,
|
|
109
|
+
CogCabrio = 330661258,
|
|
110
|
+
Cognoscenti = 2264796000,
|
|
111
|
+
Cognoscenti2 = 3690124666,
|
|
112
|
+
Comet2 = 3249425686,
|
|
113
|
+
Comet3 = 2272483501,
|
|
114
|
+
Contender = 683047626,
|
|
115
|
+
Coquette = 108773431,
|
|
116
|
+
Coquette2 = 1011753235,
|
|
117
|
+
Coquette3 = 784565758,
|
|
118
|
+
Cruiser = 448402357,
|
|
119
|
+
Crusader = 321739290,
|
|
120
|
+
Cuban800 = 3650256867,
|
|
121
|
+
Cutter = 3288047904,
|
|
122
|
+
Daemon = 2006142190,
|
|
123
|
+
Daemon2 = 2890830793,
|
|
124
|
+
Defiler = 822018448,
|
|
125
|
+
Diablous = 4055125828,
|
|
126
|
+
Diablous2 = 1790834270,
|
|
127
|
+
Dilettante = 3164157193,
|
|
128
|
+
Dilettante2 = 1682114128,
|
|
129
|
+
Dinghy = 1033245328,
|
|
130
|
+
Dinghy2 = 276773164,
|
|
131
|
+
Dinghy3 = 509498602,
|
|
132
|
+
Dinghy4 = 867467158,
|
|
133
|
+
DLoader = 1770332643,
|
|
134
|
+
DockTrailer = 2154757102,
|
|
135
|
+
Docktug = 3410276810,
|
|
136
|
+
Dodo = 3393804037,
|
|
137
|
+
Dominator = 80636076,
|
|
138
|
+
Dominator2 = 3379262425,
|
|
139
|
+
Double = 2623969160,
|
|
140
|
+
Dubsta = 1177543287,
|
|
141
|
+
Dubsta2 = 3900892662,
|
|
142
|
+
Dubsta3 = 3057713523,
|
|
143
|
+
Dukes = 723973206,
|
|
144
|
+
Dukes2 = 3968823444,
|
|
145
|
+
Dump = 2164484578,
|
|
146
|
+
Dune = 2633113103,
|
|
147
|
+
Dune2 = 534258863,
|
|
148
|
+
Dune3 = 1897744184,
|
|
149
|
+
Dune4 = 3467805257,
|
|
150
|
+
Dune5 = 3982671785,
|
|
151
|
+
Duster = 970356638,
|
|
152
|
+
Elegy = 196747873,
|
|
153
|
+
Elegy2 = 3728579874,
|
|
154
|
+
Emperor = 3609690755,
|
|
155
|
+
Emperor2 = 2411965148,
|
|
156
|
+
Emperor3 = 3053254478,
|
|
157
|
+
Enduro = 1753414259,
|
|
158
|
+
EntityXF = 3003014393,
|
|
159
|
+
Esskey = 2035069708,
|
|
160
|
+
Exemplar = 4289813342,
|
|
161
|
+
F620 = 3703357000,
|
|
162
|
+
Faction = 2175389151,
|
|
163
|
+
Faction2 = 2504420315,
|
|
164
|
+
Faction3 = 2255212070,
|
|
165
|
+
Faggio = 2452219115,
|
|
166
|
+
Faggio2 = 55628203,
|
|
167
|
+
Faggio3 = 3005788552,
|
|
168
|
+
FBI = 1127131465,
|
|
169
|
+
FBI2 = 2647026068,
|
|
170
|
+
FCR = 627535535,
|
|
171
|
+
FCR2 = 3537231886,
|
|
172
|
+
Felon = 3903372712,
|
|
173
|
+
Felon2 = 4205676014,
|
|
174
|
+
Feltzer2 = 2299640309,
|
|
175
|
+
Feltzer3 = 2728226064,
|
|
176
|
+
FireTruk = 1938952078,
|
|
177
|
+
Fixter = 3458454463,
|
|
178
|
+
Flatbed = 1353720154,
|
|
179
|
+
Forklift = 1491375716,
|
|
180
|
+
FMJ = 1426219628,
|
|
181
|
+
FQ2 = 3157435195,
|
|
182
|
+
Freight = 1030400667,
|
|
183
|
+
FreightCar = 184361638,
|
|
184
|
+
FreightCont1 = 920453016,
|
|
185
|
+
FreightCont2 = 240201337,
|
|
186
|
+
FreightGrain = 642617954,
|
|
187
|
+
FreightTrailer = 3517691494,
|
|
188
|
+
Frogger = 744705981,
|
|
189
|
+
Frogger2 = 1949211328,
|
|
190
|
+
Fugitive = 1909141499,
|
|
191
|
+
Furoregt = 3205927392,
|
|
192
|
+
Fusilade = 499169875,
|
|
193
|
+
Futo = 2016857647,
|
|
194
|
+
Gargoyle = 741090084,
|
|
195
|
+
Gauntlet = 2494797253,
|
|
196
|
+
Gauntlet2 = 349315417,
|
|
197
|
+
GBurrito = 2549763894,
|
|
198
|
+
GBurrito2 = 296357396,
|
|
199
|
+
Glendale = 75131841,
|
|
200
|
+
GP1 = 1234311532,
|
|
201
|
+
GrainTrailer = 1019737494,
|
|
202
|
+
Granger = 2519238556,
|
|
203
|
+
Gresley = 2751205197,
|
|
204
|
+
Guardian = 2186977100,
|
|
205
|
+
Habanero = 884422927,
|
|
206
|
+
Hakuchou = 1265391242,
|
|
207
|
+
Hakuchou2 = 4039289119,
|
|
208
|
+
HalfTrack = 4262731174,
|
|
209
|
+
Handler = 444583674,
|
|
210
|
+
Hauler = 1518533038,
|
|
211
|
+
Hauler2 = 387748548,
|
|
212
|
+
Hexer = 301427732,
|
|
213
|
+
Hotknife = 37348240,
|
|
214
|
+
Huntley = 486987393,
|
|
215
|
+
Hydra = 970385471,
|
|
216
|
+
Infernus = 418536135,
|
|
217
|
+
Infernus2 = 2889029532,
|
|
218
|
+
Ingot = 3005245074,
|
|
219
|
+
Innovation = 4135840458,
|
|
220
|
+
Insurgent = 2434067162,
|
|
221
|
+
Insurgent2 = 2071877360,
|
|
222
|
+
Insurgent3 = 2370534026,
|
|
223
|
+
Intruder = 886934177,
|
|
224
|
+
Issi2 = 3117103977,
|
|
225
|
+
ItaliGTB = 2246633323,
|
|
226
|
+
ItaliGTB2 = 3812247419,
|
|
227
|
+
Jackal = 3670438162,
|
|
228
|
+
JB700 = 1051415893,
|
|
229
|
+
Jester = 2997294755,
|
|
230
|
+
Jester2 = 3188613414,
|
|
231
|
+
Jet = 1058115860,
|
|
232
|
+
Jetmax = 861409633,
|
|
233
|
+
Journey = 4174679674,
|
|
234
|
+
Kalahari = 92612664,
|
|
235
|
+
Khamelion = 544021352,
|
|
236
|
+
Kuruma = 2922118804,
|
|
237
|
+
Kuruma2 = 410882957,
|
|
238
|
+
Landstalker = 1269098716,
|
|
239
|
+
Lazer = 3013282534,
|
|
240
|
+
LE7B = 3062131285,
|
|
241
|
+
Lectro = 640818791,
|
|
242
|
+
Lguard = 469291905,
|
|
243
|
+
Limo2 = 4180339789,
|
|
244
|
+
Lurcher = 2068293287,
|
|
245
|
+
Luxor = 621481054,
|
|
246
|
+
Luxor2 = 3080673438,
|
|
247
|
+
Lynx = 482197771,
|
|
248
|
+
Mamba = 2634021974,
|
|
249
|
+
Mammatus = 2548391185,
|
|
250
|
+
Manana = 2170765704,
|
|
251
|
+
Manchez = 2771538552,
|
|
252
|
+
Marquis = 3251507587,
|
|
253
|
+
Marshall = 1233534620,
|
|
254
|
+
Massacro = 4152024626,
|
|
255
|
+
Massacro2 = 3663206819,
|
|
256
|
+
Maverick = 2634305738,
|
|
257
|
+
Mesa = 914654722,
|
|
258
|
+
Mesa2 = 3546958660,
|
|
259
|
+
Mesa3 = 2230595153,
|
|
260
|
+
MetroTrain = 868868440,
|
|
261
|
+
Miljet = 165154707,
|
|
262
|
+
Minivan = 3984502180,
|
|
263
|
+
Minivan2 = 3168702960,
|
|
264
|
+
Mixer = 3510150843,
|
|
265
|
+
Mixer2 = 475220373,
|
|
266
|
+
Monroe = 3861591579,
|
|
267
|
+
Monster = 3449006043,
|
|
268
|
+
Moonbeam = 525509695,
|
|
269
|
+
Moonbeam2 = 1896491931,
|
|
270
|
+
Mower = 1783355638,
|
|
271
|
+
Mule = 904750859,
|
|
272
|
+
Mule2 = 3244501995,
|
|
273
|
+
Mule3 = 2242229361,
|
|
274
|
+
Nemesis = 3660088182,
|
|
275
|
+
Nero = 1034187331,
|
|
276
|
+
Nero2 = 1093792632,
|
|
277
|
+
Nightblade = 2688780135,
|
|
278
|
+
Nightshade = 2351681756,
|
|
279
|
+
NightShark = 433954513,
|
|
280
|
+
Nimbus = 2999939664,
|
|
281
|
+
Ninef = 1032823388,
|
|
282
|
+
Ninef2 = 2833484545,
|
|
283
|
+
Omnis = 3517794615,
|
|
284
|
+
Oppressor = 884483972,
|
|
285
|
+
Oracle = 1348744438,
|
|
286
|
+
Oracle2 = 3783366066,
|
|
287
|
+
Osiris = 1987142870,
|
|
288
|
+
Packer = 569305213,
|
|
289
|
+
Panto = 3863274624,
|
|
290
|
+
Paradise = 1488164764,
|
|
291
|
+
Patriot = 3486509883,
|
|
292
|
+
PBus = 2287941233,
|
|
293
|
+
PCJ = 3385765638,
|
|
294
|
+
Penetrator = 2536829930,
|
|
295
|
+
Penumbra = 3917501776,
|
|
296
|
+
Peyote = 1830407356,
|
|
297
|
+
Pfister811 = 2465164804,
|
|
298
|
+
Phantom = 2157618379,
|
|
299
|
+
Phantom2 = 2645431192,
|
|
300
|
+
Phantom3 = 177270108,
|
|
301
|
+
Phoenix = 2199527893,
|
|
302
|
+
Picador = 1507916787,
|
|
303
|
+
Pigalle = 1078682497,
|
|
304
|
+
Police = 2046537925,
|
|
305
|
+
Police2 = 2667966721,
|
|
306
|
+
Police3 = 1912215274,
|
|
307
|
+
Police4 = 2321795001,
|
|
308
|
+
Policeb = 4260343491,
|
|
309
|
+
PoliceOld1 = 2758042359,
|
|
310
|
+
PoliceOld2 = 2515846680,
|
|
311
|
+
PoliceT = 456714581,
|
|
312
|
+
Polmav = 353883353,
|
|
313
|
+
Pony = 4175309224,
|
|
314
|
+
Pony2 = 943752001,
|
|
315
|
+
Pounder = 2112052861,
|
|
316
|
+
Prairie = 2844316578,
|
|
317
|
+
Pranger = 741586030,
|
|
318
|
+
Predator = 3806844075,
|
|
319
|
+
Premier = 2411098011,
|
|
320
|
+
Primo = 3144368207,
|
|
321
|
+
Primo2 = 2254540506,
|
|
322
|
+
PropTrailer = 356391690,
|
|
323
|
+
Prototipo = 2123327359,
|
|
324
|
+
Radi = 2643899483,
|
|
325
|
+
RakeTrailer = 390902130,
|
|
326
|
+
RancherXL = 1645267888,
|
|
327
|
+
RancherXL2 = 1933662059,
|
|
328
|
+
RallyTruck = 2191146052,
|
|
329
|
+
RapidGT = 2360515092,
|
|
330
|
+
RapidGT2 = 1737773231,
|
|
331
|
+
Raptor = 3620039993,
|
|
332
|
+
RatBike = 1873600305,
|
|
333
|
+
RatLoader = 3627815886,
|
|
334
|
+
RatLoader2 = 3705788919,
|
|
335
|
+
Reaper = 234062309,
|
|
336
|
+
Rebel = 3087195462,
|
|
337
|
+
Rebel2 = 2249373259,
|
|
338
|
+
Regina = 4280472072,
|
|
339
|
+
RentalBus = 3196165219,
|
|
340
|
+
Rhapsody = 841808271,
|
|
341
|
+
Rhino = 782665360,
|
|
342
|
+
Riot = 3089277354,
|
|
343
|
+
Ripley = 3448987385,
|
|
344
|
+
Rocoto = 2136773105,
|
|
345
|
+
Romero = 627094268,
|
|
346
|
+
Rubble = 2589662668,
|
|
347
|
+
Ruffian = 3401388520,
|
|
348
|
+
Ruiner = 4067225593,
|
|
349
|
+
Ruiner2 = 941494461,
|
|
350
|
+
Ruiner3 = 777714999,
|
|
351
|
+
Rumpo = 1162065741,
|
|
352
|
+
Rumpo2 = 2518351607,
|
|
353
|
+
Rumpo3 = 1475773103,
|
|
354
|
+
Ruston = 719660200,
|
|
355
|
+
SabreGT = 2609945748,
|
|
356
|
+
SabreGT2 = 223258115,
|
|
357
|
+
Sadler = 3695398481,
|
|
358
|
+
Sadler2 = 734217681,
|
|
359
|
+
Sanchez = 788045382,
|
|
360
|
+
Sanchez2 = 2841686334,
|
|
361
|
+
Sanctus = 1491277511,
|
|
362
|
+
Sandking = 3105951696,
|
|
363
|
+
Sandking2 = 989381445,
|
|
364
|
+
Savage = 4212341271,
|
|
365
|
+
Schafter2 = 3039514899,
|
|
366
|
+
Schafter3 = 2809443750,
|
|
367
|
+
Schafter4 = 1489967196,
|
|
368
|
+
Schafter5 = 3406724313,
|
|
369
|
+
Schafter6 = 1922255844,
|
|
370
|
+
Schwarzer = 3548084598,
|
|
371
|
+
Scorcher = 4108429845,
|
|
372
|
+
Scrap = 2594165727,
|
|
373
|
+
Seashark = 3264692260,
|
|
374
|
+
Seashark2 = 3678636260,
|
|
375
|
+
Seashark3 = 3983945033,
|
|
376
|
+
Seminole = 1221512915,
|
|
377
|
+
Sentinel = 1349725314,
|
|
378
|
+
Sentinel2 = 873639469,
|
|
379
|
+
Serrano = 1337041428,
|
|
380
|
+
Seven70 = 2537130571,
|
|
381
|
+
Shamal = 3080461301,
|
|
382
|
+
Sheava = 819197656,
|
|
383
|
+
Sheriff = 2611638396,
|
|
384
|
+
Sheriff2 = 1922257928,
|
|
385
|
+
Shotaro = 3889340782,
|
|
386
|
+
Skylift = 1044954915,
|
|
387
|
+
SlamVan = 729783779,
|
|
388
|
+
SlamVan2 = 833469436,
|
|
389
|
+
SlamVan3 = 1119641113,
|
|
390
|
+
Sovereign = 743478836,
|
|
391
|
+
Specter = 1886268224,
|
|
392
|
+
Specter2 = 1074745671,
|
|
393
|
+
Speeder = 231083307,
|
|
394
|
+
Speeder2 = 437538602,
|
|
395
|
+
Speedo = 3484649228,
|
|
396
|
+
Speedo2 = 728614474,
|
|
397
|
+
Squalo = 400514754,
|
|
398
|
+
Stalion = 1923400478,
|
|
399
|
+
Stalion2 = 3893323758,
|
|
400
|
+
Stanier = 2817386317,
|
|
401
|
+
Stinger = 1545842587,
|
|
402
|
+
StingerGT = 2196019706,
|
|
403
|
+
Stockade = 1747439474,
|
|
404
|
+
Stockade3 = 4080511798,
|
|
405
|
+
Stratum = 1723137093,
|
|
406
|
+
Stretch = 2333339779,
|
|
407
|
+
Stunt = 2172210288,
|
|
408
|
+
Submersible = 771711535,
|
|
409
|
+
Submersible2 = 3228633070,
|
|
410
|
+
Sultan = 970598228,
|
|
411
|
+
SultanRS = 3999278268,
|
|
412
|
+
Suntrap = 4012021193,
|
|
413
|
+
Superd = 1123216662,
|
|
414
|
+
Supervolito = 710198397,
|
|
415
|
+
Supervolito2 = 2623428164,
|
|
416
|
+
Surano = 384071873,
|
|
417
|
+
Surfer = 699456151,
|
|
418
|
+
Surfer2 = 2983726598,
|
|
419
|
+
Surge = 2400073108,
|
|
420
|
+
Swift2 = 1075432268,
|
|
421
|
+
Swift = 3955379698,
|
|
422
|
+
T20 = 1663218586,
|
|
423
|
+
Taco = 1951180813,
|
|
424
|
+
Tailgater = 3286105550,
|
|
425
|
+
Tampa = 972671128,
|
|
426
|
+
Tampa2 = 3223586949,
|
|
427
|
+
Tampa3 = 3084515313,
|
|
428
|
+
Tanker = 3564062519,
|
|
429
|
+
Tanker2 = 1956216962,
|
|
430
|
+
TankerCar = 586013744,
|
|
431
|
+
Taxi = 3338918751,
|
|
432
|
+
Technical = 2198148358,
|
|
433
|
+
Technical2 = 1180875963,
|
|
434
|
+
Technical3 = 1356124575,
|
|
435
|
+
Tempesta = 272929391,
|
|
436
|
+
Thrust = 1836027715,
|
|
437
|
+
TipTruck = 48339065,
|
|
438
|
+
TipTruck2 = 3347205726,
|
|
439
|
+
Titan = 1981688531,
|
|
440
|
+
Torero = 1504306544,
|
|
441
|
+
Tornado = 464687292,
|
|
442
|
+
Tornado2 = 1531094468,
|
|
443
|
+
Tornado3 = 1762279763,
|
|
444
|
+
Tornado4 = 2261744861,
|
|
445
|
+
Tornado5 = 2497353967,
|
|
446
|
+
Tornado6 = 2736567667,
|
|
447
|
+
Toro = 1070967343,
|
|
448
|
+
Toro2 = 908897389,
|
|
449
|
+
Tourbus = 1941029835,
|
|
450
|
+
TowTruck = 2971866336,
|
|
451
|
+
TowTruck2 = 3852654278,
|
|
452
|
+
TR2 = 2078290630,
|
|
453
|
+
TR3 = 1784254509,
|
|
454
|
+
TR4 = 2091594960,
|
|
455
|
+
Tractor = 1641462412,
|
|
456
|
+
Tractor2 = 2218488798,
|
|
457
|
+
Tractor3 = 1445631933,
|
|
458
|
+
TrailerLogs = 2016027501,
|
|
459
|
+
TrailerLarge = 1502869817,
|
|
460
|
+
Trailers = 3417488910,
|
|
461
|
+
Trailers2 = 2715434129,
|
|
462
|
+
Trailers3 = 2236089197,
|
|
463
|
+
Trailers4 = 3194418602,
|
|
464
|
+
TrailerSmall = 712162987,
|
|
465
|
+
TrailerSmall2 = 2413121211,
|
|
466
|
+
Trash = 1917016601,
|
|
467
|
+
Trash2 = 3039269212,
|
|
468
|
+
TRFlat = 2942498482,
|
|
469
|
+
TriBike = 1127861609,
|
|
470
|
+
TriBike2 = 3061159916,
|
|
471
|
+
TriBike3 = 3894672200,
|
|
472
|
+
TrophyTruck = 101905590,
|
|
473
|
+
TrophyTruck2 = 3631668194,
|
|
474
|
+
Tropic = 290013743,
|
|
475
|
+
Tropic2 = 1448677353,
|
|
476
|
+
Tropos = 1887331236,
|
|
477
|
+
Tug = 2194326579,
|
|
478
|
+
Turismor = 408192225,
|
|
479
|
+
Turismo2 = 3312836369,
|
|
480
|
+
TVTrailer = 2524324030,
|
|
481
|
+
Tyrus = 2067820283,
|
|
482
|
+
UtilliTruck = 516990260,
|
|
483
|
+
UtilliTruck2 = 887537515,
|
|
484
|
+
UtilliTruck3 = 2132890591,
|
|
485
|
+
Vacca = 338562499,
|
|
486
|
+
Vader = 4154065143,
|
|
487
|
+
Vagner = 1939284556,
|
|
488
|
+
Valkyrie = 2694714877,
|
|
489
|
+
Valkyrie2 = 1543134283,
|
|
490
|
+
Velum = 2621610858,
|
|
491
|
+
Velum2 = 1077420264,
|
|
492
|
+
Verlierer2 = 1102544804,
|
|
493
|
+
Vestra = 1341619767,
|
|
494
|
+
Vigero = 3469130167,
|
|
495
|
+
Vindicator = 2941886209,
|
|
496
|
+
Virgo = 3796912450,
|
|
497
|
+
Virgo2 = 3395457658,
|
|
498
|
+
Virgo3 = 16646064,
|
|
499
|
+
Volatus = 2449479409,
|
|
500
|
+
Voltic = 2672523198,
|
|
501
|
+
Voltic2 = 989294410,
|
|
502
|
+
Voodoo = 2006667053,
|
|
503
|
+
Voodoo2 = 523724515,
|
|
504
|
+
Vortex = 3685342204,
|
|
505
|
+
Warrener = 1373123368,
|
|
506
|
+
Washington = 1777363799,
|
|
507
|
+
Wastelander = 2382949506,
|
|
508
|
+
Windsor = 1581459400,
|
|
509
|
+
Windsor2 = 2364918497,
|
|
510
|
+
Wolfsbane = 3676349299,
|
|
511
|
+
XA21 = 917809321,
|
|
512
|
+
XLS = 1203490606,
|
|
513
|
+
XLS2 = 3862958888,
|
|
514
|
+
Youga = 65402552,
|
|
515
|
+
Youga2 = 1026149675,
|
|
516
|
+
Zentorno = 2891838741,
|
|
517
|
+
Zion = 3172678083,
|
|
518
|
+
Zion2 = 3101863448,
|
|
519
|
+
ZombieA = 3285698347,
|
|
520
|
+
ZombieB = 3724934023,
|
|
521
|
+
ZType = 758895617
|
|
522
|
+
}
|