@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,376 @@
|
|
|
1
|
+
export var CargobobHook;
|
|
2
|
+
(function (CargobobHook) {
|
|
3
|
+
CargobobHook[CargobobHook["Hook"] = 0] = "Hook";
|
|
4
|
+
CargobobHook[CargobobHook["Magnet"] = 1] = "Magnet";
|
|
5
|
+
})(CargobobHook || (CargobobHook = {}));
|
|
6
|
+
export var LicensePlateStyle;
|
|
7
|
+
(function (LicensePlateStyle) {
|
|
8
|
+
LicensePlateStyle[LicensePlateStyle["BlueOnWhite1"] = 3] = "BlueOnWhite1";
|
|
9
|
+
LicensePlateStyle[LicensePlateStyle["BlueOnWhite2"] = 0] = "BlueOnWhite2";
|
|
10
|
+
LicensePlateStyle[LicensePlateStyle["BlueOnWhite3"] = 4] = "BlueOnWhite3";
|
|
11
|
+
LicensePlateStyle[LicensePlateStyle["YellowOnBlack"] = 1] = "YellowOnBlack";
|
|
12
|
+
LicensePlateStyle[LicensePlateStyle["YellowOnBlue"] = 2] = "YellowOnBlue";
|
|
13
|
+
LicensePlateStyle[LicensePlateStyle["NorthYankton"] = 5] = "NorthYankton";
|
|
14
|
+
})(LicensePlateStyle || (LicensePlateStyle = {}));
|
|
15
|
+
export var LicensePlateType;
|
|
16
|
+
(function (LicensePlateType) {
|
|
17
|
+
LicensePlateType[LicensePlateType["FrontAndRearPlates"] = 0] = "FrontAndRearPlates";
|
|
18
|
+
LicensePlateType[LicensePlateType["FrontPlate"] = 1] = "FrontPlate";
|
|
19
|
+
LicensePlateType[LicensePlateType["RearPlate"] = 2] = "RearPlate";
|
|
20
|
+
LicensePlateType[LicensePlateType["None"] = 3] = "None";
|
|
21
|
+
})(LicensePlateType || (LicensePlateType = {}));
|
|
22
|
+
export var VehicleClass;
|
|
23
|
+
(function (VehicleClass) {
|
|
24
|
+
VehicleClass[VehicleClass["Compacts"] = 0] = "Compacts";
|
|
25
|
+
VehicleClass[VehicleClass["Sedans"] = 1] = "Sedans";
|
|
26
|
+
VehicleClass[VehicleClass["SUVs"] = 2] = "SUVs";
|
|
27
|
+
VehicleClass[VehicleClass["Coupes"] = 3] = "Coupes";
|
|
28
|
+
VehicleClass[VehicleClass["Muscle"] = 4] = "Muscle";
|
|
29
|
+
VehicleClass[VehicleClass["SportsClassics"] = 5] = "SportsClassics";
|
|
30
|
+
VehicleClass[VehicleClass["Sports"] = 6] = "Sports";
|
|
31
|
+
VehicleClass[VehicleClass["Super"] = 7] = "Super";
|
|
32
|
+
VehicleClass[VehicleClass["Motorcycles"] = 8] = "Motorcycles";
|
|
33
|
+
VehicleClass[VehicleClass["OffRoad"] = 9] = "OffRoad";
|
|
34
|
+
VehicleClass[VehicleClass["Industrial"] = 10] = "Industrial";
|
|
35
|
+
VehicleClass[VehicleClass["Utility"] = 11] = "Utility";
|
|
36
|
+
VehicleClass[VehicleClass["Vans"] = 12] = "Vans";
|
|
37
|
+
VehicleClass[VehicleClass["Cycles"] = 13] = "Cycles";
|
|
38
|
+
VehicleClass[VehicleClass["Boats"] = 14] = "Boats";
|
|
39
|
+
VehicleClass[VehicleClass["Helicopters"] = 15] = "Helicopters";
|
|
40
|
+
VehicleClass[VehicleClass["Planes"] = 16] = "Planes";
|
|
41
|
+
VehicleClass[VehicleClass["Service"] = 17] = "Service";
|
|
42
|
+
VehicleClass[VehicleClass["Emergency"] = 18] = "Emergency";
|
|
43
|
+
VehicleClass[VehicleClass["Military"] = 19] = "Military";
|
|
44
|
+
VehicleClass[VehicleClass["Commercial"] = 20] = "Commercial";
|
|
45
|
+
VehicleClass[VehicleClass["Trains"] = 21] = "Trains";
|
|
46
|
+
})(VehicleClass || (VehicleClass = {}));
|
|
47
|
+
export var VehicleColor;
|
|
48
|
+
(function (VehicleColor) {
|
|
49
|
+
VehicleColor[VehicleColor["MetallicBlack"] = 0] = "MetallicBlack";
|
|
50
|
+
VehicleColor[VehicleColor["MetallicGraphiteBlack"] = 1] = "MetallicGraphiteBlack";
|
|
51
|
+
VehicleColor[VehicleColor["MetallicBlackSteel"] = 2] = "MetallicBlackSteel";
|
|
52
|
+
VehicleColor[VehicleColor["MetallicDarkSilver"] = 3] = "MetallicDarkSilver";
|
|
53
|
+
VehicleColor[VehicleColor["MetallicSilver"] = 4] = "MetallicSilver";
|
|
54
|
+
VehicleColor[VehicleColor["MetallicBlueSilver"] = 5] = "MetallicBlueSilver";
|
|
55
|
+
VehicleColor[VehicleColor["MetallicSteelGray"] = 6] = "MetallicSteelGray";
|
|
56
|
+
VehicleColor[VehicleColor["MetallicShadowSilver"] = 7] = "MetallicShadowSilver";
|
|
57
|
+
VehicleColor[VehicleColor["MetallicStoneSilver"] = 8] = "MetallicStoneSilver";
|
|
58
|
+
VehicleColor[VehicleColor["MetallicMidnightSilver"] = 9] = "MetallicMidnightSilver";
|
|
59
|
+
VehicleColor[VehicleColor["MetallicGunMetal"] = 10] = "MetallicGunMetal";
|
|
60
|
+
VehicleColor[VehicleColor["MetallicAnthraciteGray"] = 11] = "MetallicAnthraciteGray";
|
|
61
|
+
VehicleColor[VehicleColor["MatteBlack"] = 12] = "MatteBlack";
|
|
62
|
+
VehicleColor[VehicleColor["MatteGray"] = 13] = "MatteGray";
|
|
63
|
+
VehicleColor[VehicleColor["MatteLightGray"] = 14] = "MatteLightGray";
|
|
64
|
+
VehicleColor[VehicleColor["UtilBlack"] = 15] = "UtilBlack";
|
|
65
|
+
VehicleColor[VehicleColor["UtilBlackPoly"] = 16] = "UtilBlackPoly";
|
|
66
|
+
VehicleColor[VehicleColor["UtilDarksilver"] = 17] = "UtilDarksilver";
|
|
67
|
+
VehicleColor[VehicleColor["UtilSilver"] = 18] = "UtilSilver";
|
|
68
|
+
VehicleColor[VehicleColor["UtilGunMetal"] = 19] = "UtilGunMetal";
|
|
69
|
+
VehicleColor[VehicleColor["UtilShadowSilver"] = 20] = "UtilShadowSilver";
|
|
70
|
+
VehicleColor[VehicleColor["WornBlack"] = 21] = "WornBlack";
|
|
71
|
+
VehicleColor[VehicleColor["WornGraphite"] = 22] = "WornGraphite";
|
|
72
|
+
VehicleColor[VehicleColor["WornSilverGray"] = 23] = "WornSilverGray";
|
|
73
|
+
VehicleColor[VehicleColor["WornSilver"] = 24] = "WornSilver";
|
|
74
|
+
VehicleColor[VehicleColor["WornBlueSilver"] = 25] = "WornBlueSilver";
|
|
75
|
+
VehicleColor[VehicleColor["WornShadowSilver"] = 26] = "WornShadowSilver";
|
|
76
|
+
VehicleColor[VehicleColor["MetallicRed"] = 27] = "MetallicRed";
|
|
77
|
+
VehicleColor[VehicleColor["MetallicTorinoRed"] = 28] = "MetallicTorinoRed";
|
|
78
|
+
VehicleColor[VehicleColor["MetallicFormulaRed"] = 29] = "MetallicFormulaRed";
|
|
79
|
+
VehicleColor[VehicleColor["MetallicBlazeRed"] = 30] = "MetallicBlazeRed";
|
|
80
|
+
VehicleColor[VehicleColor["MetallicGracefulRed"] = 31] = "MetallicGracefulRed";
|
|
81
|
+
VehicleColor[VehicleColor["MetallicGarnetRed"] = 32] = "MetallicGarnetRed";
|
|
82
|
+
VehicleColor[VehicleColor["MetallicDesertRed"] = 33] = "MetallicDesertRed";
|
|
83
|
+
VehicleColor[VehicleColor["MetallicCabernetRed"] = 34] = "MetallicCabernetRed";
|
|
84
|
+
VehicleColor[VehicleColor["MetallicCandyRed"] = 35] = "MetallicCandyRed";
|
|
85
|
+
VehicleColor[VehicleColor["MetallicSunriseOrange"] = 36] = "MetallicSunriseOrange";
|
|
86
|
+
VehicleColor[VehicleColor["MetallicClassicGold"] = 37] = "MetallicClassicGold";
|
|
87
|
+
VehicleColor[VehicleColor["MetallicOrange"] = 38] = "MetallicOrange";
|
|
88
|
+
VehicleColor[VehicleColor["MatteRed"] = 39] = "MatteRed";
|
|
89
|
+
VehicleColor[VehicleColor["MatteDarkRed"] = 40] = "MatteDarkRed";
|
|
90
|
+
VehicleColor[VehicleColor["MatteOrange"] = 41] = "MatteOrange";
|
|
91
|
+
VehicleColor[VehicleColor["MatteYellow"] = 42] = "MatteYellow";
|
|
92
|
+
VehicleColor[VehicleColor["UtilRed"] = 43] = "UtilRed";
|
|
93
|
+
VehicleColor[VehicleColor["UtilBrightRed"] = 44] = "UtilBrightRed";
|
|
94
|
+
VehicleColor[VehicleColor["UtilGarnetRed"] = 45] = "UtilGarnetRed";
|
|
95
|
+
VehicleColor[VehicleColor["WornRed"] = 46] = "WornRed";
|
|
96
|
+
VehicleColor[VehicleColor["WornGoldenRed"] = 47] = "WornGoldenRed";
|
|
97
|
+
VehicleColor[VehicleColor["WornDarkRed"] = 48] = "WornDarkRed";
|
|
98
|
+
VehicleColor[VehicleColor["MetallicDarkGreen"] = 49] = "MetallicDarkGreen";
|
|
99
|
+
VehicleColor[VehicleColor["MetallicRacingGreen"] = 50] = "MetallicRacingGreen";
|
|
100
|
+
VehicleColor[VehicleColor["MetallicSeaGreen"] = 51] = "MetallicSeaGreen";
|
|
101
|
+
VehicleColor[VehicleColor["MetallicOliveGreen"] = 52] = "MetallicOliveGreen";
|
|
102
|
+
VehicleColor[VehicleColor["MetallicGreen"] = 53] = "MetallicGreen";
|
|
103
|
+
VehicleColor[VehicleColor["MetallicGasolineBlueGreen"] = 54] = "MetallicGasolineBlueGreen";
|
|
104
|
+
VehicleColor[VehicleColor["MatteLimeGreen"] = 55] = "MatteLimeGreen";
|
|
105
|
+
VehicleColor[VehicleColor["UtilDarkGreen"] = 56] = "UtilDarkGreen";
|
|
106
|
+
VehicleColor[VehicleColor["UtilGreen"] = 57] = "UtilGreen";
|
|
107
|
+
VehicleColor[VehicleColor["WornDarkGreen"] = 58] = "WornDarkGreen";
|
|
108
|
+
VehicleColor[VehicleColor["WornGreen"] = 59] = "WornGreen";
|
|
109
|
+
VehicleColor[VehicleColor["WornSeaWash"] = 60] = "WornSeaWash";
|
|
110
|
+
VehicleColor[VehicleColor["MetallicMidnightBlue"] = 61] = "MetallicMidnightBlue";
|
|
111
|
+
VehicleColor[VehicleColor["MetallicDarkBlue"] = 62] = "MetallicDarkBlue";
|
|
112
|
+
VehicleColor[VehicleColor["MetallicSaxonyBlue"] = 63] = "MetallicSaxonyBlue";
|
|
113
|
+
VehicleColor[VehicleColor["MetallicBlue"] = 64] = "MetallicBlue";
|
|
114
|
+
VehicleColor[VehicleColor["MetallicMarinerBlue"] = 65] = "MetallicMarinerBlue";
|
|
115
|
+
VehicleColor[VehicleColor["MetallicHarborBlue"] = 66] = "MetallicHarborBlue";
|
|
116
|
+
VehicleColor[VehicleColor["MetallicDiamondBlue"] = 67] = "MetallicDiamondBlue";
|
|
117
|
+
VehicleColor[VehicleColor["MetallicSurfBlue"] = 68] = "MetallicSurfBlue";
|
|
118
|
+
VehicleColor[VehicleColor["MetallicNauticalBlue"] = 69] = "MetallicNauticalBlue";
|
|
119
|
+
VehicleColor[VehicleColor["MetallicBrightBlue"] = 70] = "MetallicBrightBlue";
|
|
120
|
+
VehicleColor[VehicleColor["MetallicPurpleBlue"] = 71] = "MetallicPurpleBlue";
|
|
121
|
+
VehicleColor[VehicleColor["MetallicSpinnakerBlue"] = 72] = "MetallicSpinnakerBlue";
|
|
122
|
+
VehicleColor[VehicleColor["MetallicUltraBlue"] = 73] = "MetallicUltraBlue";
|
|
123
|
+
VehicleColor[VehicleColor["UtilDarkBlue"] = 75] = "UtilDarkBlue";
|
|
124
|
+
VehicleColor[VehicleColor["UtilMidnightBlue"] = 76] = "UtilMidnightBlue";
|
|
125
|
+
VehicleColor[VehicleColor["UtilBlue"] = 77] = "UtilBlue";
|
|
126
|
+
VehicleColor[VehicleColor["UtilSeaFoamBlue"] = 78] = "UtilSeaFoamBlue";
|
|
127
|
+
VehicleColor[VehicleColor["UtilLightningBlue"] = 79] = "UtilLightningBlue";
|
|
128
|
+
VehicleColor[VehicleColor["UtilMauiBluePoly"] = 80] = "UtilMauiBluePoly";
|
|
129
|
+
VehicleColor[VehicleColor["UtilBrightBlue"] = 81] = "UtilBrightBlue";
|
|
130
|
+
VehicleColor[VehicleColor["MatteDarkBlue"] = 82] = "MatteDarkBlue";
|
|
131
|
+
VehicleColor[VehicleColor["MatteBlue"] = 83] = "MatteBlue";
|
|
132
|
+
VehicleColor[VehicleColor["MatteMidnightBlue"] = 84] = "MatteMidnightBlue";
|
|
133
|
+
VehicleColor[VehicleColor["WornDarkBlue"] = 85] = "WornDarkBlue";
|
|
134
|
+
VehicleColor[VehicleColor["WornBlue"] = 86] = "WornBlue";
|
|
135
|
+
VehicleColor[VehicleColor["WornLightBlue"] = 87] = "WornLightBlue";
|
|
136
|
+
VehicleColor[VehicleColor["MetallicTaxiYellow"] = 88] = "MetallicTaxiYellow";
|
|
137
|
+
VehicleColor[VehicleColor["MetallicRaceYellow"] = 89] = "MetallicRaceYellow";
|
|
138
|
+
VehicleColor[VehicleColor["MetallicBronze"] = 90] = "MetallicBronze";
|
|
139
|
+
VehicleColor[VehicleColor["MetallicYellowBird"] = 91] = "MetallicYellowBird";
|
|
140
|
+
VehicleColor[VehicleColor["MetallicLime"] = 92] = "MetallicLime";
|
|
141
|
+
VehicleColor[VehicleColor["MetallicChampagne"] = 93] = "MetallicChampagne";
|
|
142
|
+
VehicleColor[VehicleColor["MetallicPuebloBeige"] = 94] = "MetallicPuebloBeige";
|
|
143
|
+
VehicleColor[VehicleColor["MetallicDarkIvory"] = 95] = "MetallicDarkIvory";
|
|
144
|
+
VehicleColor[VehicleColor["MetallicChocoBrown"] = 96] = "MetallicChocoBrown";
|
|
145
|
+
VehicleColor[VehicleColor["MetallicGoldenBrown"] = 97] = "MetallicGoldenBrown";
|
|
146
|
+
VehicleColor[VehicleColor["MetallicLightBrown"] = 98] = "MetallicLightBrown";
|
|
147
|
+
VehicleColor[VehicleColor["MetallicStrawBeige"] = 99] = "MetallicStrawBeige";
|
|
148
|
+
VehicleColor[VehicleColor["MetallicMossBrown"] = 100] = "MetallicMossBrown";
|
|
149
|
+
VehicleColor[VehicleColor["MetallicBistonBrown"] = 101] = "MetallicBistonBrown";
|
|
150
|
+
VehicleColor[VehicleColor["MetallicBeechwood"] = 102] = "MetallicBeechwood";
|
|
151
|
+
VehicleColor[VehicleColor["MetallicDarkBeechwood"] = 103] = "MetallicDarkBeechwood";
|
|
152
|
+
VehicleColor[VehicleColor["MetallicChocoOrange"] = 104] = "MetallicChocoOrange";
|
|
153
|
+
VehicleColor[VehicleColor["MetallicBeachSand"] = 105] = "MetallicBeachSand";
|
|
154
|
+
VehicleColor[VehicleColor["MetallicSunBleechedSand"] = 106] = "MetallicSunBleechedSand";
|
|
155
|
+
VehicleColor[VehicleColor["MetallicCream"] = 107] = "MetallicCream";
|
|
156
|
+
VehicleColor[VehicleColor["UtilBrown"] = 108] = "UtilBrown";
|
|
157
|
+
VehicleColor[VehicleColor["UtilMediumBrown"] = 109] = "UtilMediumBrown";
|
|
158
|
+
VehicleColor[VehicleColor["UtilLightBrown"] = 110] = "UtilLightBrown";
|
|
159
|
+
VehicleColor[VehicleColor["MetallicWhite"] = 111] = "MetallicWhite";
|
|
160
|
+
VehicleColor[VehicleColor["MetallicFrostWhite"] = 112] = "MetallicFrostWhite";
|
|
161
|
+
VehicleColor[VehicleColor["WornHoneyBeige"] = 113] = "WornHoneyBeige";
|
|
162
|
+
VehicleColor[VehicleColor["WornBrown"] = 114] = "WornBrown";
|
|
163
|
+
VehicleColor[VehicleColor["WornDarkBrown"] = 115] = "WornDarkBrown";
|
|
164
|
+
VehicleColor[VehicleColor["WornStrawBeige"] = 116] = "WornStrawBeige";
|
|
165
|
+
VehicleColor[VehicleColor["BrushedSteel"] = 117] = "BrushedSteel";
|
|
166
|
+
VehicleColor[VehicleColor["BrushedBlackSteel"] = 118] = "BrushedBlackSteel";
|
|
167
|
+
VehicleColor[VehicleColor["BrushedAluminium"] = 119] = "BrushedAluminium";
|
|
168
|
+
VehicleColor[VehicleColor["Chrome"] = 120] = "Chrome";
|
|
169
|
+
VehicleColor[VehicleColor["WornOffWhite"] = 121] = "WornOffWhite";
|
|
170
|
+
VehicleColor[VehicleColor["UtilOffWhite"] = 122] = "UtilOffWhite";
|
|
171
|
+
VehicleColor[VehicleColor["WornOrange"] = 123] = "WornOrange";
|
|
172
|
+
VehicleColor[VehicleColor["WornLightOrange"] = 124] = "WornLightOrange";
|
|
173
|
+
VehicleColor[VehicleColor["MetallicSecuricorGreen"] = 125] = "MetallicSecuricorGreen";
|
|
174
|
+
VehicleColor[VehicleColor["WornTaxiYellow"] = 126] = "WornTaxiYellow";
|
|
175
|
+
VehicleColor[VehicleColor["PoliceCarBlue"] = 127] = "PoliceCarBlue";
|
|
176
|
+
VehicleColor[VehicleColor["MatteGreen"] = 128] = "MatteGreen";
|
|
177
|
+
VehicleColor[VehicleColor["MatteBrown"] = 129] = "MatteBrown";
|
|
178
|
+
VehicleColor[VehicleColor["MatteWhite"] = 131] = "MatteWhite";
|
|
179
|
+
VehicleColor[VehicleColor["WornWhite"] = 132] = "WornWhite";
|
|
180
|
+
VehicleColor[VehicleColor["WornOliveArmyGreen"] = 133] = "WornOliveArmyGreen";
|
|
181
|
+
VehicleColor[VehicleColor["PureWhite"] = 134] = "PureWhite";
|
|
182
|
+
VehicleColor[VehicleColor["HotPink"] = 135] = "HotPink";
|
|
183
|
+
VehicleColor[VehicleColor["Salmonpink"] = 136] = "Salmonpink";
|
|
184
|
+
VehicleColor[VehicleColor["MetallicVermillionPink"] = 137] = "MetallicVermillionPink";
|
|
185
|
+
VehicleColor[VehicleColor["Orange"] = 138] = "Orange";
|
|
186
|
+
VehicleColor[VehicleColor["Green"] = 139] = "Green";
|
|
187
|
+
VehicleColor[VehicleColor["Blue"] = 140] = "Blue";
|
|
188
|
+
VehicleColor[VehicleColor["MettalicBlackBlue"] = 141] = "MettalicBlackBlue";
|
|
189
|
+
VehicleColor[VehicleColor["MetallicBlackPurple"] = 142] = "MetallicBlackPurple";
|
|
190
|
+
VehicleColor[VehicleColor["MetallicBlackRed"] = 143] = "MetallicBlackRed";
|
|
191
|
+
VehicleColor[VehicleColor["HunterGreen"] = 144] = "HunterGreen";
|
|
192
|
+
VehicleColor[VehicleColor["MetallicPurple"] = 145] = "MetallicPurple";
|
|
193
|
+
VehicleColor[VehicleColor["MetaillicVDarkBlue"] = 146] = "MetaillicVDarkBlue";
|
|
194
|
+
VehicleColor[VehicleColor["ModshopBlack1"] = 147] = "ModshopBlack1";
|
|
195
|
+
VehicleColor[VehicleColor["MattePurple"] = 148] = "MattePurple";
|
|
196
|
+
VehicleColor[VehicleColor["MatteDarkPurple"] = 149] = "MatteDarkPurple";
|
|
197
|
+
VehicleColor[VehicleColor["MetallicLavaRed"] = 150] = "MetallicLavaRed";
|
|
198
|
+
VehicleColor[VehicleColor["MatteForestGreen"] = 151] = "MatteForestGreen";
|
|
199
|
+
VehicleColor[VehicleColor["MatteOliveDrab"] = 152] = "MatteOliveDrab";
|
|
200
|
+
VehicleColor[VehicleColor["MatteDesertBrown"] = 153] = "MatteDesertBrown";
|
|
201
|
+
VehicleColor[VehicleColor["MatteDesertTan"] = 154] = "MatteDesertTan";
|
|
202
|
+
VehicleColor[VehicleColor["MatteFoliageGreen"] = 155] = "MatteFoliageGreen";
|
|
203
|
+
VehicleColor[VehicleColor["DefaultAlloyColor"] = 156] = "DefaultAlloyColor";
|
|
204
|
+
VehicleColor[VehicleColor["EpsilonBlue"] = 157] = "EpsilonBlue";
|
|
205
|
+
VehicleColor[VehicleColor["PureGold"] = 158] = "PureGold";
|
|
206
|
+
VehicleColor[VehicleColor["BrushedGold"] = 159] = "BrushedGold";
|
|
207
|
+
})(VehicleColor || (VehicleColor = {}));
|
|
208
|
+
export var VehicleLandingGearState;
|
|
209
|
+
(function (VehicleLandingGearState) {
|
|
210
|
+
VehicleLandingGearState[VehicleLandingGearState["Deployed"] = 0] = "Deployed";
|
|
211
|
+
VehicleLandingGearState[VehicleLandingGearState["Closing"] = 1] = "Closing";
|
|
212
|
+
VehicleLandingGearState[VehicleLandingGearState["Opening"] = 2] = "Opening";
|
|
213
|
+
VehicleLandingGearState[VehicleLandingGearState["Retracted"] = 3] = "Retracted";
|
|
214
|
+
})(VehicleLandingGearState || (VehicleLandingGearState = {}));
|
|
215
|
+
export var VehicleLockStatus;
|
|
216
|
+
(function (VehicleLockStatus) {
|
|
217
|
+
VehicleLockStatus[VehicleLockStatus["None"] = 0] = "None";
|
|
218
|
+
VehicleLockStatus[VehicleLockStatus["Unlocked"] = 1] = "Unlocked";
|
|
219
|
+
VehicleLockStatus[VehicleLockStatus["Locked"] = 2] = "Locked";
|
|
220
|
+
VehicleLockStatus[VehicleLockStatus["LockedForPlayer"] = 3] = "LockedForPlayer";
|
|
221
|
+
VehicleLockStatus[VehicleLockStatus["StickPlayerInside"] = 4] = "StickPlayerInside";
|
|
222
|
+
VehicleLockStatus[VehicleLockStatus["CanBeBrokenInto"] = 7] = "CanBeBrokenInto";
|
|
223
|
+
VehicleLockStatus[VehicleLockStatus["CanBeBrokenIntoPersist"] = 8] = "CanBeBrokenIntoPersist";
|
|
224
|
+
VehicleLockStatus[VehicleLockStatus["CannotBeTriedToEnter"] = 10] = "CannotBeTriedToEnter";
|
|
225
|
+
})(VehicleLockStatus || (VehicleLockStatus = {}));
|
|
226
|
+
export var VehicleNeonLight;
|
|
227
|
+
(function (VehicleNeonLight) {
|
|
228
|
+
VehicleNeonLight[VehicleNeonLight["Left"] = 0] = "Left";
|
|
229
|
+
VehicleNeonLight[VehicleNeonLight["Right"] = 1] = "Right";
|
|
230
|
+
VehicleNeonLight[VehicleNeonLight["Front"] = 2] = "Front";
|
|
231
|
+
VehicleNeonLight[VehicleNeonLight["Back"] = 3] = "Back";
|
|
232
|
+
})(VehicleNeonLight || (VehicleNeonLight = {}));
|
|
233
|
+
export var VehicleRoofState;
|
|
234
|
+
(function (VehicleRoofState) {
|
|
235
|
+
VehicleRoofState[VehicleRoofState["Closed"] = 0] = "Closed";
|
|
236
|
+
VehicleRoofState[VehicleRoofState["Opening"] = 1] = "Opening";
|
|
237
|
+
VehicleRoofState[VehicleRoofState["Opened"] = 2] = "Opened";
|
|
238
|
+
VehicleRoofState[VehicleRoofState["Closing"] = 3] = "Closing";
|
|
239
|
+
})(VehicleRoofState || (VehicleRoofState = {}));
|
|
240
|
+
export var VehicleSeat;
|
|
241
|
+
(function (VehicleSeat) {
|
|
242
|
+
VehicleSeat[VehicleSeat["None"] = -3] = "None";
|
|
243
|
+
VehicleSeat[VehicleSeat["Any"] = -2] = "Any";
|
|
244
|
+
VehicleSeat[VehicleSeat["Driver"] = -1] = "Driver";
|
|
245
|
+
VehicleSeat[VehicleSeat["Passenger"] = 0] = "Passenger";
|
|
246
|
+
VehicleSeat[VehicleSeat["LeftFront"] = -1] = "LeftFront";
|
|
247
|
+
VehicleSeat[VehicleSeat["RightFront"] = 0] = "RightFront";
|
|
248
|
+
VehicleSeat[VehicleSeat["LeftRear"] = 1] = "LeftRear";
|
|
249
|
+
VehicleSeat[VehicleSeat["RightRear"] = 2] = "RightRear";
|
|
250
|
+
VehicleSeat[VehicleSeat["ExtraSeat1"] = 3] = "ExtraSeat1";
|
|
251
|
+
VehicleSeat[VehicleSeat["ExtraSeat2"] = 4] = "ExtraSeat2";
|
|
252
|
+
VehicleSeat[VehicleSeat["ExtraSeat3"] = 5] = "ExtraSeat3";
|
|
253
|
+
VehicleSeat[VehicleSeat["ExtraSeat4"] = 6] = "ExtraSeat4";
|
|
254
|
+
VehicleSeat[VehicleSeat["ExtraSeat5"] = 7] = "ExtraSeat5";
|
|
255
|
+
VehicleSeat[VehicleSeat["ExtraSeat6"] = 8] = "ExtraSeat6";
|
|
256
|
+
VehicleSeat[VehicleSeat["ExtraSeat7"] = 9] = "ExtraSeat7";
|
|
257
|
+
VehicleSeat[VehicleSeat["ExtraSeat8"] = 10] = "ExtraSeat8";
|
|
258
|
+
VehicleSeat[VehicleSeat["ExtraSeat9"] = 11] = "ExtraSeat9";
|
|
259
|
+
VehicleSeat[VehicleSeat["ExtraSeat10"] = 12] = "ExtraSeat10";
|
|
260
|
+
VehicleSeat[VehicleSeat["ExtraSeat11"] = 13] = "ExtraSeat11";
|
|
261
|
+
VehicleSeat[VehicleSeat["ExtraSeat12"] = 14] = "ExtraSeat12";
|
|
262
|
+
})(VehicleSeat || (VehicleSeat = {}));
|
|
263
|
+
export var VehicleWindowTint;
|
|
264
|
+
(function (VehicleWindowTint) {
|
|
265
|
+
VehicleWindowTint[VehicleWindowTint["None"] = 0] = "None";
|
|
266
|
+
VehicleWindowTint[VehicleWindowTint["PureBlack"] = 1] = "PureBlack";
|
|
267
|
+
VehicleWindowTint[VehicleWindowTint["DarkSmoke"] = 2] = "DarkSmoke";
|
|
268
|
+
VehicleWindowTint[VehicleWindowTint["LightSmoke"] = 3] = "LightSmoke";
|
|
269
|
+
VehicleWindowTint[VehicleWindowTint["Stock"] = 4] = "Stock";
|
|
270
|
+
VehicleWindowTint[VehicleWindowTint["Limo"] = 5] = "Limo";
|
|
271
|
+
VehicleWindowTint[VehicleWindowTint["Green"] = 6] = "Green";
|
|
272
|
+
})(VehicleWindowTint || (VehicleWindowTint = {}));
|
|
273
|
+
export var VehicleWindowIndex;
|
|
274
|
+
(function (VehicleWindowIndex) {
|
|
275
|
+
VehicleWindowIndex[VehicleWindowIndex["FrontRightWindow"] = 1] = "FrontRightWindow";
|
|
276
|
+
VehicleWindowIndex[VehicleWindowIndex["FrontLeftWindow"] = 0] = "FrontLeftWindow";
|
|
277
|
+
VehicleWindowIndex[VehicleWindowIndex["BackRightWindow"] = 3] = "BackRightWindow";
|
|
278
|
+
VehicleWindowIndex[VehicleWindowIndex["BackLeftWindow"] = 2] = "BackLeftWindow";
|
|
279
|
+
VehicleWindowIndex[VehicleWindowIndex["ExtraWindow1"] = 4] = "ExtraWindow1";
|
|
280
|
+
VehicleWindowIndex[VehicleWindowIndex["ExtraWindow2"] = 5] = "ExtraWindow2";
|
|
281
|
+
VehicleWindowIndex[VehicleWindowIndex["ExtraWindow3"] = 6] = "ExtraWindow3";
|
|
282
|
+
VehicleWindowIndex[VehicleWindowIndex["ExtraWindow4"] = 7] = "ExtraWindow4";
|
|
283
|
+
})(VehicleWindowIndex || (VehicleWindowIndex = {}));
|
|
284
|
+
export var VehicleModType;
|
|
285
|
+
(function (VehicleModType) {
|
|
286
|
+
VehicleModType[VehicleModType["Spoilers"] = 0] = "Spoilers";
|
|
287
|
+
VehicleModType[VehicleModType["FrontBumper"] = 1] = "FrontBumper";
|
|
288
|
+
VehicleModType[VehicleModType["RearBumper"] = 2] = "RearBumper";
|
|
289
|
+
VehicleModType[VehicleModType["SideSkirt"] = 3] = "SideSkirt";
|
|
290
|
+
VehicleModType[VehicleModType["Exhaust"] = 4] = "Exhaust";
|
|
291
|
+
VehicleModType[VehicleModType["Frame"] = 5] = "Frame";
|
|
292
|
+
VehicleModType[VehicleModType["Grille"] = 6] = "Grille";
|
|
293
|
+
VehicleModType[VehicleModType["Hood"] = 7] = "Hood";
|
|
294
|
+
VehicleModType[VehicleModType["Fender"] = 8] = "Fender";
|
|
295
|
+
VehicleModType[VehicleModType["RightFender"] = 9] = "RightFender";
|
|
296
|
+
VehicleModType[VehicleModType["Roof"] = 10] = "Roof";
|
|
297
|
+
VehicleModType[VehicleModType["Engine"] = 11] = "Engine";
|
|
298
|
+
VehicleModType[VehicleModType["Brakes"] = 12] = "Brakes";
|
|
299
|
+
VehicleModType[VehicleModType["Transmission"] = 13] = "Transmission";
|
|
300
|
+
VehicleModType[VehicleModType["Horns"] = 14] = "Horns";
|
|
301
|
+
VehicleModType[VehicleModType["Suspension"] = 15] = "Suspension";
|
|
302
|
+
VehicleModType[VehicleModType["Armor"] = 16] = "Armor";
|
|
303
|
+
VehicleModType[VehicleModType["FrontWheel"] = 23] = "FrontWheel";
|
|
304
|
+
VehicleModType[VehicleModType["RearWheel"] = 24] = "RearWheel";
|
|
305
|
+
VehicleModType[VehicleModType["PlateHolder"] = 25] = "PlateHolder";
|
|
306
|
+
VehicleModType[VehicleModType["VanityPlates"] = 26] = "VanityPlates";
|
|
307
|
+
VehicleModType[VehicleModType["TrimDesign"] = 27] = "TrimDesign";
|
|
308
|
+
VehicleModType[VehicleModType["Ornaments"] = 28] = "Ornaments";
|
|
309
|
+
VehicleModType[VehicleModType["Dashboard"] = 29] = "Dashboard";
|
|
310
|
+
VehicleModType[VehicleModType["DialDesign"] = 30] = "DialDesign";
|
|
311
|
+
VehicleModType[VehicleModType["DoorSpeakers"] = 31] = "DoorSpeakers";
|
|
312
|
+
VehicleModType[VehicleModType["Seats"] = 32] = "Seats";
|
|
313
|
+
VehicleModType[VehicleModType["SteeringWheels"] = 33] = "SteeringWheels";
|
|
314
|
+
VehicleModType[VehicleModType["ColumnShifterLevers"] = 34] = "ColumnShifterLevers";
|
|
315
|
+
VehicleModType[VehicleModType["Plaques"] = 35] = "Plaques";
|
|
316
|
+
VehicleModType[VehicleModType["Speakers"] = 36] = "Speakers";
|
|
317
|
+
VehicleModType[VehicleModType["Trunk"] = 37] = "Trunk";
|
|
318
|
+
VehicleModType[VehicleModType["Hydraulics"] = 38] = "Hydraulics";
|
|
319
|
+
VehicleModType[VehicleModType["EngineBlock"] = 39] = "EngineBlock";
|
|
320
|
+
VehicleModType[VehicleModType["AirFilter"] = 40] = "AirFilter";
|
|
321
|
+
VehicleModType[VehicleModType["Struts"] = 41] = "Struts";
|
|
322
|
+
VehicleModType[VehicleModType["ArchCover"] = 42] = "ArchCover";
|
|
323
|
+
VehicleModType[VehicleModType["Aerials"] = 43] = "Aerials";
|
|
324
|
+
VehicleModType[VehicleModType["Trim"] = 44] = "Trim";
|
|
325
|
+
VehicleModType[VehicleModType["Tank"] = 45] = "Tank";
|
|
326
|
+
VehicleModType[VehicleModType["Windows"] = 46] = "Windows";
|
|
327
|
+
VehicleModType[VehicleModType["Livery"] = 48] = "Livery";
|
|
328
|
+
})(VehicleModType || (VehicleModType = {}));
|
|
329
|
+
export var VehicleToggleModType;
|
|
330
|
+
(function (VehicleToggleModType) {
|
|
331
|
+
VehicleToggleModType[VehicleToggleModType["Turbo"] = 18] = "Turbo";
|
|
332
|
+
VehicleToggleModType[VehicleToggleModType["TireSmoke"] = 20] = "TireSmoke";
|
|
333
|
+
VehicleToggleModType[VehicleToggleModType["XenonHeadlights"] = 22] = "XenonHeadlights";
|
|
334
|
+
})(VehicleToggleModType || (VehicleToggleModType = {}));
|
|
335
|
+
export var VehiclePaintType;
|
|
336
|
+
(function (VehiclePaintType) {
|
|
337
|
+
VehiclePaintType[VehiclePaintType["Normal"] = 0] = "Normal";
|
|
338
|
+
VehiclePaintType[VehiclePaintType["Metallic"] = 1] = "Metallic";
|
|
339
|
+
VehiclePaintType[VehiclePaintType["Pearl"] = 2] = "Pearl";
|
|
340
|
+
VehiclePaintType[VehiclePaintType["Matte"] = 3] = "Matte";
|
|
341
|
+
VehiclePaintType[VehiclePaintType["Metal"] = 4] = "Metal";
|
|
342
|
+
VehiclePaintType[VehiclePaintType["Chrome"] = 5] = "Chrome";
|
|
343
|
+
})(VehiclePaintType || (VehiclePaintType = {}));
|
|
344
|
+
export var VehicleDoorIndex;
|
|
345
|
+
(function (VehicleDoorIndex) {
|
|
346
|
+
VehicleDoorIndex[VehicleDoorIndex["FrontRightDoor"] = 1] = "FrontRightDoor";
|
|
347
|
+
VehicleDoorIndex[VehicleDoorIndex["FrontLeftDoor"] = 0] = "FrontLeftDoor";
|
|
348
|
+
VehicleDoorIndex[VehicleDoorIndex["BackRightDoor"] = 3] = "BackRightDoor";
|
|
349
|
+
VehicleDoorIndex[VehicleDoorIndex["BackLeftDoor"] = 2] = "BackLeftDoor";
|
|
350
|
+
VehicleDoorIndex[VehicleDoorIndex["Hood"] = 4] = "Hood";
|
|
351
|
+
VehicleDoorIndex[VehicleDoorIndex["Trunk"] = 5] = "Trunk";
|
|
352
|
+
})(VehicleDoorIndex || (VehicleDoorIndex = {}));
|
|
353
|
+
export var VehicleWheelType;
|
|
354
|
+
(function (VehicleWheelType) {
|
|
355
|
+
VehicleWheelType[VehicleWheelType["Sport"] = 0] = "Sport";
|
|
356
|
+
VehicleWheelType[VehicleWheelType["Muscle"] = 1] = "Muscle";
|
|
357
|
+
VehicleWheelType[VehicleWheelType["Lowrider"] = 2] = "Lowrider";
|
|
358
|
+
VehicleWheelType[VehicleWheelType["SUV"] = 3] = "SUV";
|
|
359
|
+
VehicleWheelType[VehicleWheelType["Offroad"] = 4] = "Offroad";
|
|
360
|
+
VehicleWheelType[VehicleWheelType["Tuner"] = 5] = "Tuner";
|
|
361
|
+
VehicleWheelType[VehicleWheelType["BikeWheels"] = 6] = "BikeWheels";
|
|
362
|
+
VehicleWheelType[VehicleWheelType["HighEnd"] = 7] = "HighEnd";
|
|
363
|
+
VehicleWheelType[VehicleWheelType["BennysOriginals"] = 8] = "BennysOriginals";
|
|
364
|
+
VehicleWheelType[VehicleWheelType["BennysBespoke"] = 9] = "BennysBespoke";
|
|
365
|
+
})(VehicleWheelType || (VehicleWheelType = {}));
|
|
366
|
+
export var VehicleWheelIndex;
|
|
367
|
+
(function (VehicleWheelIndex) {
|
|
368
|
+
VehicleWheelIndex[VehicleWheelIndex["FrontLeftWheel"] = 0] = "FrontLeftWheel";
|
|
369
|
+
VehicleWheelIndex[VehicleWheelIndex["FrontRightWheel"] = 1] = "FrontRightWheel";
|
|
370
|
+
VehicleWheelIndex[VehicleWheelIndex["MidLeftWheel"] = 2] = "MidLeftWheel";
|
|
371
|
+
VehicleWheelIndex[VehicleWheelIndex["MidRightWheel"] = 3] = "MidRightWheel";
|
|
372
|
+
VehicleWheelIndex[VehicleWheelIndex["RearLeftWheel"] = 4] = "RearLeftWheel";
|
|
373
|
+
VehicleWheelIndex[VehicleWheelIndex["RearRightWheel"] = 5] = "RearRightWheel";
|
|
374
|
+
VehicleWheelIndex[VehicleWheelIndex["TrailerMidLeftWheel"] = 45] = "TrailerMidLeftWheel";
|
|
375
|
+
VehicleWheelIndex[VehicleWheelIndex["TrailerMidRightWheel"] = 47] = "TrailerMidRightWheel";
|
|
376
|
+
})(VehicleWheelIndex || (VehicleWheelIndex = {}));
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* List of weather types. Used for manipulating weather.
|
|
3
|
+
*/
|
|
4
|
+
export declare enum Weather {
|
|
5
|
+
Unknown = -1,
|
|
6
|
+
ExtraSunny = 0,
|
|
7
|
+
Clear = 1,
|
|
8
|
+
Clouds = 2,
|
|
9
|
+
Smog = 3,
|
|
10
|
+
Foggy = 4,
|
|
11
|
+
Overcast = 5,
|
|
12
|
+
Raining = 6,
|
|
13
|
+
ThunderStorm = 7,
|
|
14
|
+
Clearing = 8,
|
|
15
|
+
Neutral = 9,
|
|
16
|
+
Snowing = 10,
|
|
17
|
+
Blizzard = 11,
|
|
18
|
+
Snowlight = 12,
|
|
19
|
+
Christmas = 13,
|
|
20
|
+
Halloween = 14
|
|
21
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* List of weather types. Used for manipulating weather.
|
|
3
|
+
*/
|
|
4
|
+
export var Weather;
|
|
5
|
+
(function (Weather) {
|
|
6
|
+
Weather[Weather["Unknown"] = -1] = "Unknown";
|
|
7
|
+
Weather[Weather["ExtraSunny"] = 0] = "ExtraSunny";
|
|
8
|
+
Weather[Weather["Clear"] = 1] = "Clear";
|
|
9
|
+
Weather[Weather["Clouds"] = 2] = "Clouds";
|
|
10
|
+
Weather[Weather["Smog"] = 3] = "Smog";
|
|
11
|
+
Weather[Weather["Foggy"] = 4] = "Foggy";
|
|
12
|
+
Weather[Weather["Overcast"] = 5] = "Overcast";
|
|
13
|
+
Weather[Weather["Raining"] = 6] = "Raining";
|
|
14
|
+
Weather[Weather["ThunderStorm"] = 7] = "ThunderStorm";
|
|
15
|
+
Weather[Weather["Clearing"] = 8] = "Clearing";
|
|
16
|
+
Weather[Weather["Neutral"] = 9] = "Neutral";
|
|
17
|
+
Weather[Weather["Snowing"] = 10] = "Snowing";
|
|
18
|
+
Weather[Weather["Blizzard"] = 11] = "Blizzard";
|
|
19
|
+
Weather[Weather["Snowlight"] = 12] = "Snowlight";
|
|
20
|
+
Weather[Weather["Christmas"] = 13] = "Christmas";
|
|
21
|
+
Weather[Weather["Halloween"] = 14] = "Halloween";
|
|
22
|
+
})(Weather || (Weather = {}));
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* List of Zones. Useful for using world zone related natives.
|
|
3
|
+
*/
|
|
4
|
+
export declare enum ZoneID {
|
|
5
|
+
AIRP = 0,
|
|
6
|
+
ALAMO = 1,
|
|
7
|
+
ALTA = 2,
|
|
8
|
+
ARMYB = 3,
|
|
9
|
+
BANHAMC = 4,
|
|
10
|
+
BANNING = 5,
|
|
11
|
+
BEACH = 6,
|
|
12
|
+
BHAMCA = 7,
|
|
13
|
+
BRADP = 8,
|
|
14
|
+
BRADT = 9,
|
|
15
|
+
BURTON = 10,
|
|
16
|
+
CALAFB = 11,
|
|
17
|
+
CANNY = 12,
|
|
18
|
+
CCREAK = 13,
|
|
19
|
+
CHAMH = 14,
|
|
20
|
+
CHIL = 15,
|
|
21
|
+
CHU = 16,
|
|
22
|
+
CMSW = 17,
|
|
23
|
+
CYPRE = 18,
|
|
24
|
+
DAVIS = 19,
|
|
25
|
+
DELBE = 20,
|
|
26
|
+
DELPE = 21,
|
|
27
|
+
DELSOL = 22,
|
|
28
|
+
DESRT = 23,
|
|
29
|
+
DOWNT = 24,
|
|
30
|
+
DTVINE = 25,
|
|
31
|
+
EAST_V = 26,
|
|
32
|
+
EBURO = 27,
|
|
33
|
+
ELGORL = 28,
|
|
34
|
+
ELYSIAN = 29,
|
|
35
|
+
GALFISH = 30,
|
|
36
|
+
golf = 31,
|
|
37
|
+
GRAPES = 32,
|
|
38
|
+
GREATC = 33,
|
|
39
|
+
HARMO = 34,
|
|
40
|
+
HAWICK = 35,
|
|
41
|
+
HORS = 36,
|
|
42
|
+
HUMLAB = 37,
|
|
43
|
+
JAIL = 38,
|
|
44
|
+
KOREAT = 39,
|
|
45
|
+
LACT = 40,
|
|
46
|
+
LAGO = 41,
|
|
47
|
+
LDAM = 42,
|
|
48
|
+
LEGSQU = 43,
|
|
49
|
+
LMESA = 44,
|
|
50
|
+
LOSPUER = 45,
|
|
51
|
+
MIRR = 46,
|
|
52
|
+
MORN = 47,
|
|
53
|
+
MOVIE = 48,
|
|
54
|
+
MTCHIL = 49,
|
|
55
|
+
MTGORDO = 50,
|
|
56
|
+
MTJOSE = 51,
|
|
57
|
+
MURRI = 52,
|
|
58
|
+
NCHU = 53,
|
|
59
|
+
NOOSE = 54,
|
|
60
|
+
OCEANA = 55,
|
|
61
|
+
PALCOV = 56,
|
|
62
|
+
PALETO = 57,
|
|
63
|
+
PALFOR = 58,
|
|
64
|
+
PALHIGH = 59,
|
|
65
|
+
PALMPOW = 60,
|
|
66
|
+
PBLUFF = 61,
|
|
67
|
+
PBOX = 62,
|
|
68
|
+
PROCOB = 63,
|
|
69
|
+
RANCHO = 64,
|
|
70
|
+
RGLEN = 65,
|
|
71
|
+
RICHM = 66,
|
|
72
|
+
ROCKF = 67,
|
|
73
|
+
RTRAK = 68,
|
|
74
|
+
SanAnd = 69,
|
|
75
|
+
SANCHIA = 70,
|
|
76
|
+
SANDY = 71,
|
|
77
|
+
SKID = 72,
|
|
78
|
+
SLAB = 73,
|
|
79
|
+
STAD = 74,
|
|
80
|
+
STRAW = 75,
|
|
81
|
+
TATAMO = 76,
|
|
82
|
+
TERMINA = 77,
|
|
83
|
+
TEXTI = 78,
|
|
84
|
+
TONGVAH = 79,
|
|
85
|
+
TONGVAV = 80,
|
|
86
|
+
VCANA = 81,
|
|
87
|
+
VESP = 82,
|
|
88
|
+
VINE = 83,
|
|
89
|
+
WINDF = 84,
|
|
90
|
+
WVINE = 85,
|
|
91
|
+
ZANCUDO = 86,
|
|
92
|
+
ZP_ORT = 87,
|
|
93
|
+
ZQ_UAR = 88
|
|
94
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* List of Zones. Useful for using world zone related natives.
|
|
3
|
+
*/
|
|
4
|
+
export var ZoneID;
|
|
5
|
+
(function (ZoneID) {
|
|
6
|
+
ZoneID[ZoneID["AIRP"] = 0] = "AIRP";
|
|
7
|
+
ZoneID[ZoneID["ALAMO"] = 1] = "ALAMO";
|
|
8
|
+
ZoneID[ZoneID["ALTA"] = 2] = "ALTA";
|
|
9
|
+
ZoneID[ZoneID["ARMYB"] = 3] = "ARMYB";
|
|
10
|
+
ZoneID[ZoneID["BANHAMC"] = 4] = "BANHAMC";
|
|
11
|
+
ZoneID[ZoneID["BANNING"] = 5] = "BANNING";
|
|
12
|
+
ZoneID[ZoneID["BEACH"] = 6] = "BEACH";
|
|
13
|
+
ZoneID[ZoneID["BHAMCA"] = 7] = "BHAMCA";
|
|
14
|
+
ZoneID[ZoneID["BRADP"] = 8] = "BRADP";
|
|
15
|
+
ZoneID[ZoneID["BRADT"] = 9] = "BRADT";
|
|
16
|
+
ZoneID[ZoneID["BURTON"] = 10] = "BURTON";
|
|
17
|
+
ZoneID[ZoneID["CALAFB"] = 11] = "CALAFB";
|
|
18
|
+
ZoneID[ZoneID["CANNY"] = 12] = "CANNY";
|
|
19
|
+
ZoneID[ZoneID["CCREAK"] = 13] = "CCREAK";
|
|
20
|
+
ZoneID[ZoneID["CHAMH"] = 14] = "CHAMH";
|
|
21
|
+
ZoneID[ZoneID["CHIL"] = 15] = "CHIL";
|
|
22
|
+
ZoneID[ZoneID["CHU"] = 16] = "CHU";
|
|
23
|
+
ZoneID[ZoneID["CMSW"] = 17] = "CMSW";
|
|
24
|
+
ZoneID[ZoneID["CYPRE"] = 18] = "CYPRE";
|
|
25
|
+
ZoneID[ZoneID["DAVIS"] = 19] = "DAVIS";
|
|
26
|
+
ZoneID[ZoneID["DELBE"] = 20] = "DELBE";
|
|
27
|
+
ZoneID[ZoneID["DELPE"] = 21] = "DELPE";
|
|
28
|
+
ZoneID[ZoneID["DELSOL"] = 22] = "DELSOL";
|
|
29
|
+
ZoneID[ZoneID["DESRT"] = 23] = "DESRT";
|
|
30
|
+
ZoneID[ZoneID["DOWNT"] = 24] = "DOWNT";
|
|
31
|
+
ZoneID[ZoneID["DTVINE"] = 25] = "DTVINE";
|
|
32
|
+
ZoneID[ZoneID["EAST_V"] = 26] = "EAST_V";
|
|
33
|
+
ZoneID[ZoneID["EBURO"] = 27] = "EBURO";
|
|
34
|
+
ZoneID[ZoneID["ELGORL"] = 28] = "ELGORL";
|
|
35
|
+
ZoneID[ZoneID["ELYSIAN"] = 29] = "ELYSIAN";
|
|
36
|
+
ZoneID[ZoneID["GALFISH"] = 30] = "GALFISH";
|
|
37
|
+
ZoneID[ZoneID["golf"] = 31] = "golf";
|
|
38
|
+
ZoneID[ZoneID["GRAPES"] = 32] = "GRAPES";
|
|
39
|
+
ZoneID[ZoneID["GREATC"] = 33] = "GREATC";
|
|
40
|
+
ZoneID[ZoneID["HARMO"] = 34] = "HARMO";
|
|
41
|
+
ZoneID[ZoneID["HAWICK"] = 35] = "HAWICK";
|
|
42
|
+
ZoneID[ZoneID["HORS"] = 36] = "HORS";
|
|
43
|
+
ZoneID[ZoneID["HUMLAB"] = 37] = "HUMLAB";
|
|
44
|
+
ZoneID[ZoneID["JAIL"] = 38] = "JAIL";
|
|
45
|
+
ZoneID[ZoneID["KOREAT"] = 39] = "KOREAT";
|
|
46
|
+
ZoneID[ZoneID["LACT"] = 40] = "LACT";
|
|
47
|
+
ZoneID[ZoneID["LAGO"] = 41] = "LAGO";
|
|
48
|
+
ZoneID[ZoneID["LDAM"] = 42] = "LDAM";
|
|
49
|
+
ZoneID[ZoneID["LEGSQU"] = 43] = "LEGSQU";
|
|
50
|
+
ZoneID[ZoneID["LMESA"] = 44] = "LMESA";
|
|
51
|
+
ZoneID[ZoneID["LOSPUER"] = 45] = "LOSPUER";
|
|
52
|
+
ZoneID[ZoneID["MIRR"] = 46] = "MIRR";
|
|
53
|
+
ZoneID[ZoneID["MORN"] = 47] = "MORN";
|
|
54
|
+
ZoneID[ZoneID["MOVIE"] = 48] = "MOVIE";
|
|
55
|
+
ZoneID[ZoneID["MTCHIL"] = 49] = "MTCHIL";
|
|
56
|
+
ZoneID[ZoneID["MTGORDO"] = 50] = "MTGORDO";
|
|
57
|
+
ZoneID[ZoneID["MTJOSE"] = 51] = "MTJOSE";
|
|
58
|
+
ZoneID[ZoneID["MURRI"] = 52] = "MURRI";
|
|
59
|
+
ZoneID[ZoneID["NCHU"] = 53] = "NCHU";
|
|
60
|
+
ZoneID[ZoneID["NOOSE"] = 54] = "NOOSE";
|
|
61
|
+
ZoneID[ZoneID["OCEANA"] = 55] = "OCEANA";
|
|
62
|
+
ZoneID[ZoneID["PALCOV"] = 56] = "PALCOV";
|
|
63
|
+
ZoneID[ZoneID["PALETO"] = 57] = "PALETO";
|
|
64
|
+
ZoneID[ZoneID["PALFOR"] = 58] = "PALFOR";
|
|
65
|
+
ZoneID[ZoneID["PALHIGH"] = 59] = "PALHIGH";
|
|
66
|
+
ZoneID[ZoneID["PALMPOW"] = 60] = "PALMPOW";
|
|
67
|
+
ZoneID[ZoneID["PBLUFF"] = 61] = "PBLUFF";
|
|
68
|
+
ZoneID[ZoneID["PBOX"] = 62] = "PBOX";
|
|
69
|
+
ZoneID[ZoneID["PROCOB"] = 63] = "PROCOB";
|
|
70
|
+
ZoneID[ZoneID["RANCHO"] = 64] = "RANCHO";
|
|
71
|
+
ZoneID[ZoneID["RGLEN"] = 65] = "RGLEN";
|
|
72
|
+
ZoneID[ZoneID["RICHM"] = 66] = "RICHM";
|
|
73
|
+
ZoneID[ZoneID["ROCKF"] = 67] = "ROCKF";
|
|
74
|
+
ZoneID[ZoneID["RTRAK"] = 68] = "RTRAK";
|
|
75
|
+
ZoneID[ZoneID["SanAnd"] = 69] = "SanAnd";
|
|
76
|
+
ZoneID[ZoneID["SANCHIA"] = 70] = "SANCHIA";
|
|
77
|
+
ZoneID[ZoneID["SANDY"] = 71] = "SANDY";
|
|
78
|
+
ZoneID[ZoneID["SKID"] = 72] = "SKID";
|
|
79
|
+
ZoneID[ZoneID["SLAB"] = 73] = "SLAB";
|
|
80
|
+
ZoneID[ZoneID["STAD"] = 74] = "STAD";
|
|
81
|
+
ZoneID[ZoneID["STRAW"] = 75] = "STRAW";
|
|
82
|
+
ZoneID[ZoneID["TATAMO"] = 76] = "TATAMO";
|
|
83
|
+
ZoneID[ZoneID["TERMINA"] = 77] = "TERMINA";
|
|
84
|
+
ZoneID[ZoneID["TEXTI"] = 78] = "TEXTI";
|
|
85
|
+
ZoneID[ZoneID["TONGVAH"] = 79] = "TONGVAH";
|
|
86
|
+
ZoneID[ZoneID["TONGVAV"] = 80] = "TONGVAV";
|
|
87
|
+
ZoneID[ZoneID["VCANA"] = 81] = "VCANA";
|
|
88
|
+
ZoneID[ZoneID["VESP"] = 82] = "VESP";
|
|
89
|
+
ZoneID[ZoneID["VINE"] = 83] = "VINE";
|
|
90
|
+
ZoneID[ZoneID["WINDF"] = 84] = "WINDF";
|
|
91
|
+
ZoneID[ZoneID["WVINE"] = 85] = "WVINE";
|
|
92
|
+
ZoneID[ZoneID["ZANCUDO"] = 86] = "ZANCUDO";
|
|
93
|
+
ZoneID[ZoneID["ZP_ORT"] = 87] = "ZP_ORT";
|
|
94
|
+
ZoneID[ZoneID["ZQ_UAR"] = 88] = "ZQ_UAR";
|
|
95
|
+
})(ZoneID || (ZoneID = {}));
|