@nativewrappers/fivem 0.0.80 → 0.0.82
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/Audio.d.ts +2 -2
- package/Audio.js +99 -0
- package/Blip.d.ts +4 -3
- package/Blip.js +113 -0
- package/Camera.d.ts +3 -3
- package/Camera.js +190 -0
- package/Checkpoint.d.ts +2 -2
- package/Checkpoint.js +51 -0
- package/Events.js +80 -0
- package/Game.d.ts +10 -3
- package/Game.js +478 -0
- package/GameplayCamera.d.ts +2 -2
- package/GameplayCamera.js +152 -0
- package/Model.js +210 -0
- package/NetworkedScene.d.ts +2 -1
- package/NetworkedScene.js +50 -0
- package/ParticleEffect.d.ts +4 -3
- package/ParticleEffect.js +128 -0
- package/ParticleEffectAsset.d.ts +2 -2
- package/ParticleEffectAsset.js +133 -0
- package/Pickup.d.ts +1 -1
- package/Pickup.js +27 -0
- package/Raycast.d.ts +5 -3
- package/Raycast.js +132 -0
- package/RelationshipGroup.d.ts +1 -1
- package/RelationshipGroup.js +72 -0
- package/Rope.d.ts +1 -1
- package/Rope.js +149 -0
- package/TaskSequence.js +52 -0
- package/Tasks.d.ts +8 -3
- package/Tasks.js +334 -0
- package/World.d.ts +13 -4
- package/World.js +945 -0
- package/cfx/StateBagChangeHandler.js +0 -0
- package/cfx/index.d.ts +1 -1
- package/cfx/index.js +4 -0
- package/common/Command.js +111 -0
- package/common/Convar.js +58 -0
- package/common/GlobalData.js +16 -0
- package/common/Kvp.js +137 -0
- package/common/Resource.js +54 -0
- package/common/decors/Events.js +170 -0
- package/common/net/NetworkedMap.js +225 -0
- package/common/types.js +0 -0
- package/common/utils/ClassTypes.js +15 -0
- package/common/utils/Color.js +33 -0
- package/common/utils/Delay.d.ts +1 -0
- package/common/utils/Delay.js +6 -0
- package/common/utils/Maths.js +18 -0
- package/common/utils/Point.d.ts +9 -0
- package/common/utils/Point.js +36 -0
- package/common/utils/PointF.d.ts +1 -1
- package/common/utils/PointF.js +18 -0
- package/common/utils/Quaternion.d.ts +1 -1
- package/common/utils/Quaternion.js +33 -0
- package/common/utils/Vector.js +589 -0
- package/common/utils/cleanPlayerName.js +17 -0
- package/common/utils/enumValues.js +20 -0
- package/common/utils/getStringFromUInt8Array.js +6 -0
- package/common/utils/getUInt32FromUint8Array.js +6 -0
- package/enums/Alignment.js +9 -0
- package/enums/AnimationFlags.js +38 -0
- package/enums/AudioFlag.js +41 -0
- package/enums/BadgeStyle.js +186 -0
- package/enums/Blip.js +229 -0
- package/enums/Bone.js +105 -0
- package/enums/CameraShake.js +17 -0
- package/enums/CameraTypes.js +11 -0
- package/enums/CheckboxStyle.js +8 -0
- package/enums/Checkpoint.js +68 -0
- package/enums/CloudHat.js +27 -0
- package/enums/Control.js +364 -0
- package/enums/CursorSprite.js +18 -0
- package/enums/Driving.js +38 -0
- package/enums/ExplosionType.js +45 -0
- package/enums/FiringPattern.js +23 -0
- package/enums/Font.js +11 -0
- package/enums/ForceType.js +12 -0
- package/enums/Gender.js +8 -0
- package/enums/HelmetType.js +9 -0
- package/enums/HudColor.js +187 -0
- package/enums/HudComponent.js +57 -0
- package/enums/InputMode.js +8 -0
- package/enums/InvertAxis.js +10 -0
- package/enums/Language.js +18 -0
- package/enums/LeaveVehicleFlags.js +14 -0
- package/enums/LoadingSpinnerType.js +11 -0
- package/enums/MarkerType.js +48 -0
- package/enums/MenuAlignment.js +8 -0
- package/enums/NotificationType.js +14 -0
- package/enums/Parachute.js +19 -0
- package/enums/PickupType.js +77 -0
- package/enums/RadioStation.js +28 -0
- package/enums/RagdollType.js +10 -0
- package/enums/RaycastEnums.js +33 -0
- package/enums/Relationship.js +13 -0
- package/enums/RopeType.js +9 -0
- package/enums/ScreenEffect.js +87 -0
- package/enums/SpeechModifier.js +43 -0
- package/enums/Vehicle.js +396 -0
- package/enums/Weather.js +22 -0
- package/enums/ZoneID.js +95 -0
- package/hashes/MaterialHash.js +220 -0
- package/hashes/PedHash.js +728 -0
- package/hashes/VehicleHash.js +526 -0
- package/hashes/WeaponHash.js +155 -0
- package/hashes/WeatherTypeHash.js +22 -0
- package/index.js +166 -18794
- package/interfaces/Dimensions.d.ts +1 -1
- package/interfaces/Dimensions.js +0 -0
- package/models/BaseEntity.d.ts +10 -8
- package/models/BaseEntity.js +576 -0
- package/models/Entity.d.ts +0 -1
- package/models/Entity.js +0 -0
- package/models/EntityBone.d.ts +1 -1
- package/models/EntityBone.js +32 -0
- package/models/EntityBoneCollection.d.ts +1 -1
- package/models/EntityBoneCollection.js +27 -0
- package/models/Ped.d.ts +13 -5
- package/models/Ped.js +711 -0
- package/models/PedBone.d.ts +3 -2
- package/models/PedBone.js +18 -0
- package/models/PedBoneCollection.d.ts +3 -1
- package/models/PedBoneCollection.js +31 -0
- package/models/Player.d.ts +4 -2
- package/models/Player.js +188 -0
- package/models/Prop.d.ts +1 -1
- package/models/Prop.js +34 -0
- package/models/Vehicle.d.ts +9 -4
- package/models/Vehicle.js +582 -0
- package/models/VehicleDoor.d.ts +1 -1
- package/models/VehicleDoor.js +52 -0
- package/models/VehicleDoorCollection.d.ts +1 -1
- package/models/VehicleDoorCollection.js +66 -0
- package/models/VehicleMod.d.ts +1 -1
- package/models/VehicleMod.js +43 -0
- package/models/VehicleModCollection.d.ts +2 -2
- package/models/VehicleModCollection.js +227 -0
- package/models/VehicleToggleMod.d.ts +1 -1
- package/models/VehicleToggleMod.js +37 -0
- package/models/VehicleWheel.js +31 -0
- package/models/VehicleWheelCollection.d.ts +1 -1
- package/models/VehicleWheelCollection.js +61 -0
- package/models/VehicleWindow.d.ts +1 -1
- package/models/VehicleWindow.js +43 -0
- package/models/VehicleWindowCollection.d.ts +1 -1
- package/models/VehicleWindowCollection.js +62 -0
- package/package.json +2 -2
- package/ui/Container.d.ts +4 -2
- package/ui/Container.js +39 -0
- package/ui/Effects.d.ts +1 -1
- package/ui/Effects.js +112 -0
- package/ui/Fading.js +74 -0
- package/ui/Hud.d.ts +3 -2
- package/ui/Hud.js +47 -0
- package/ui/InstructionalButtons.js +42 -0
- package/ui/LoadingPrompt.d.ts +1 -1
- package/ui/LoadingPrompt.js +37 -0
- package/ui/Notification.js +17 -0
- package/ui/Rectangle.d.ts +4 -2
- package/ui/Rectangle.js +46 -0
- package/ui/Scaleform.d.ts +2 -1
- package/ui/Scaleform.js +240 -0
- package/ui/Screen.d.ts +6 -3
- package/ui/Screen.js +83 -0
- package/ui/Sprite.d.ts +3 -1
- package/ui/Sprite.js +70 -0
- package/ui/Text.d.ts +6 -3
- package/ui/Text.js +119 -0
- package/ui/Timerbar.js +241 -0
- package/ui/interfaces/IButton.d.ts +1 -1
- package/ui/interfaces/IButton.js +0 -0
- package/ui/interfaces/IDrawable.d.ts +3 -1
- package/ui/interfaces/IDrawable.js +0 -0
- package/ui/menu/Menu.d.ts +9 -4
- package/ui/menu/Menu.js +830 -0
- package/ui/menu/MenuControl.js +20 -0
- package/ui/menu/MenuControls.js +17 -0
- package/ui/menu/MenuSettings.d.ts +1 -1
- package/ui/menu/MenuSettings.js +57 -0
- package/ui/menu/items/UIMenuCheckboxItem.d.ts +3 -3
- package/ui/menu/items/UIMenuCheckboxItem.js +70 -0
- package/ui/menu/items/UIMenuItem.d.ts +10 -4
- package/ui/menu/items/UIMenuItem.js +1103 -0
- package/ui/menu/items/UIMenuListItem.d.ts +3 -3
- package/ui/menu/items/UIMenuListItem.js +118 -0
- package/ui/menu/items/UIMenuSeparatorItem.d.ts +1 -1
- package/ui/menu/items/UIMenuSeparatorItem.js +37 -0
- package/ui/menu/items/UIMenuSliderItem.d.ts +4 -3
- package/ui/menu/items/UIMenuSliderItem.js +180 -0
- package/ui/menu/items/panels/AbstractUIMenuPanel.d.ts +4 -3
- package/ui/menu/items/panels/AbstractUIMenuPanel.js +49 -0
- package/ui/menu/items/panels/UIMenuColorPanel.d.ts +3 -3
- package/ui/menu/items/panels/UIMenuColorPanel.js +215 -0
- package/ui/menu/items/panels/UIMenuGridPanel.d.ts +3 -3
- package/ui/menu/items/panels/UIMenuGridPanel.js +216 -0
- package/ui/menu/items/panels/UIMenuPercentagePanel.d.ts +2 -2
- package/ui/menu/items/panels/UIMenuPercentagePanel.js +138 -0
- package/ui/menu/items/panels/UIMenuStatisticsPanel.d.ts +3 -2
- package/ui/menu/items/panels/UIMenuStatisticsPanel.js +88 -0
- package/ui/menu/items/panels/UIMenuStatisticsPanelItem.d.ts +2 -1
- package/ui/menu/items/panels/UIMenuStatisticsPanelItem.js +48 -0
- package/ui/menu/modules/ListItem.js +18 -0
- package/utils/Animations.js +43 -0
- package/utils/Crypto.js +33 -0
- package/utils/LiteEvent.js +25 -0
- package/utils/Maths.js +18 -0
- package/utils/Point.js +36 -0
- package/utils/Size.js +16 -0
- package/utils/String.d.ts +1 -1
- package/utils/String.js +35 -0
- package/weapon/DlcWeaponData.d.ts +1 -1
- package/weapon/DlcWeaponData.js +40 -0
- package/weapon/Mk2WeaponHash.js +18 -0
- package/weapon/Weapon.d.ts +7 -7
- package/weapon/Weapon.js +276 -0
- package/weapon/WeaponAsset.d.ts +1 -1
- package/weapon/WeaponAsset.js +87 -0
- package/weapon/WeaponCollection.d.ts +3 -2
- package/weapon/WeaponCollection.js +179 -0
- package/weapon/WeaponDisplayNameByHash.d.ts +1 -1
- package/weapon/WeaponDisplayNameByHash.js +73 -0
- package/weapon/WeaponGroup.js +22 -0
- package/weapon/WeaponHudStats.d.ts +1 -1
- package/weapon/WeaponHudStats.js +33 -0
- package/weapon/WeaponLivery.js +17 -0
- package/weapon/WeaponLiveryColor.js +38 -0
- package/weapon/WeaponTint.js +46 -0
- package/weaponComponent/ComponentAttachmentPoint.js +22 -0
- package/weaponComponent/ComponentAttachmentPointByHash.js +307 -0
- package/weaponComponent/ComponentDisplayNameByHash.js +278 -0
- package/weaponComponent/DlcWeaponComponentData.js +40 -0
- package/weaponComponent/InvalidWeaponComponent.d.ts +1 -1
- package/weaponComponent/InvalidWeaponComponent.js +31 -0
- package/weaponComponent/WeaponComponent.d.ts +4 -4
- package/weaponComponent/WeaponComponent.js +124 -0
- package/weaponComponent/WeaponComponentCollection.d.ts +2 -2
- package/weaponComponent/WeaponComponentCollection.js +187 -0
- package/weaponComponent/WeaponComponentHash.js +670 -0
- package/weaponComponent/WeaponComponentHashesByWeaponHash.d.ts +1 -1
- package/weaponComponent/WeaponComponentHashesByWeaponHash.js +864 -0
- package/weaponComponent/WeaponComponentHudStats.js +33 -0
- package/common/index.d.ts +0 -8
- package/common/utils/Vector2.d.ts +0 -1
- package/common/utils/Vector3.d.ts +0 -1
- package/common/utils/Vector4.d.ts +0 -1
- package/common/utils/index.d.ts +0 -12
- package/enums/index.d.ts +0 -42
- package/hashes/index.d.ts +0 -5
- package/index.d.ts +0 -25
- package/models/index.d.ts +0 -18
- package/ui/index.d.ts +0 -15
- package/ui/interfaces/index.d.ts +0 -2
- package/ui/menu/index.d.ts +0 -6
- package/ui/menu/items/index.d.ts +0 -6
- package/ui/menu/items/panels/index.d.ts +0 -6
- package/ui/menu/modules/index.d.ts +0 -1
- package/utils/PointF.d.ts +0 -7
- package/utils/Quaternion.d.ts +0 -10
- package/utils/enumValues.d.ts +0 -12
- package/utils/getStringFromUInt8Array.d.ts +0 -8
- package/utils/getUInt32FromUint8Array.d.ts +0 -8
- package/utils/index.d.ts +0 -9
- package/weapon/index.d.ts +0 -8
- package/weaponComponent/index.d.ts +0 -5
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
var WeaponHash = /* @__PURE__ */ ((WeaponHash2) => {
|
|
2
|
+
WeaponHash2[WeaponHash2["Dagger"] = -1834847097] = "Dagger";
|
|
3
|
+
WeaponHash2[WeaponHash2["Bat"] = -1786099057] = "Bat";
|
|
4
|
+
WeaponHash2[WeaponHash2["Bottle"] = -102323637] = "Bottle";
|
|
5
|
+
WeaponHash2[WeaponHash2["Crowbar"] = -2067956739] = "Crowbar";
|
|
6
|
+
WeaponHash2[WeaponHash2["Unarmed"] = -1569615261] = "Unarmed";
|
|
7
|
+
WeaponHash2[WeaponHash2["Flashlight"] = -1951375401] = "Flashlight";
|
|
8
|
+
WeaponHash2[WeaponHash2["GolfClub"] = 1141786504] = "GolfClub";
|
|
9
|
+
WeaponHash2[WeaponHash2["Hammer"] = 1317494643] = "Hammer";
|
|
10
|
+
WeaponHash2[WeaponHash2["Hatchet"] = -102973651] = "Hatchet";
|
|
11
|
+
WeaponHash2[WeaponHash2["KnuckleDuster"] = -656458692] = "KnuckleDuster";
|
|
12
|
+
WeaponHash2[WeaponHash2["Knife"] = -1716189206] = "Knife";
|
|
13
|
+
WeaponHash2[WeaponHash2["Machete"] = -581044007] = "Machete";
|
|
14
|
+
WeaponHash2[WeaponHash2["SwitchBlade"] = -538741184] = "SwitchBlade";
|
|
15
|
+
WeaponHash2[WeaponHash2["Nightstick"] = 1737195953] = "Nightstick";
|
|
16
|
+
WeaponHash2[WeaponHash2["Wrench"] = 419712736] = "Wrench";
|
|
17
|
+
WeaponHash2[WeaponHash2["BattleAxe"] = -853065399] = "BattleAxe";
|
|
18
|
+
WeaponHash2[WeaponHash2["PoolCue"] = -1810795771] = "PoolCue";
|
|
19
|
+
WeaponHash2[WeaponHash2["StoneHatchet"] = 940833800] = "StoneHatchet";
|
|
20
|
+
WeaponHash2[WeaponHash2["Pistol"] = 453432689] = "Pistol";
|
|
21
|
+
WeaponHash2[WeaponHash2["PistolMk2"] = 3219281620] = "PistolMk2";
|
|
22
|
+
WeaponHash2[WeaponHash2["CombatPistol"] = 1593441988] = "CombatPistol";
|
|
23
|
+
WeaponHash2[WeaponHash2["APPistol"] = 584646201] = "APPistol";
|
|
24
|
+
WeaponHash2[WeaponHash2["StunGun"] = 911657153] = "StunGun";
|
|
25
|
+
WeaponHash2[WeaponHash2["StunGunMp"] = 1171102963] = "StunGunMp";
|
|
26
|
+
WeaponHash2[WeaponHash2["Pistol50"] = -1716589765] = "Pistol50";
|
|
27
|
+
WeaponHash2[WeaponHash2["SNSPistol"] = -1076751822] = "SNSPistol";
|
|
28
|
+
WeaponHash2[WeaponHash2["SNSPistolMk2"] = -2009644972] = "SNSPistolMk2";
|
|
29
|
+
WeaponHash2[WeaponHash2["HeavyPistol"] = -771403250] = "HeavyPistol";
|
|
30
|
+
WeaponHash2[WeaponHash2["VintagePistol"] = 137902532] = "VintagePistol";
|
|
31
|
+
WeaponHash2[WeaponHash2["FlareGun"] = 1198879012] = "FlareGun";
|
|
32
|
+
WeaponHash2[WeaponHash2["MarksmanPistol"] = -598887786] = "MarksmanPistol";
|
|
33
|
+
WeaponHash2[WeaponHash2["Revolver"] = -1045183535] = "Revolver";
|
|
34
|
+
WeaponHash2[WeaponHash2["RevolverMk2"] = -879347409] = "RevolverMk2";
|
|
35
|
+
WeaponHash2[WeaponHash2["DoubleAction"] = -1746263880] = "DoubleAction";
|
|
36
|
+
WeaponHash2[WeaponHash2["RayPistol"] = -1355376991] = "RayPistol";
|
|
37
|
+
WeaponHash2[WeaponHash2["CeramicPistol"] = 727643628] = "CeramicPistol";
|
|
38
|
+
WeaponHash2[WeaponHash2["NavyRevolver"] = -1853920116] = "NavyRevolver";
|
|
39
|
+
WeaponHash2[WeaponHash2["GadgetPistol"] = 1470379660] = "GadgetPistol";
|
|
40
|
+
WeaponHash2[WeaponHash2["MicroSMG"] = 324215364] = "MicroSMG";
|
|
41
|
+
WeaponHash2[WeaponHash2["SMG"] = 736523883] = "SMG";
|
|
42
|
+
WeaponHash2[WeaponHash2["SMGMk2"] = 2024373456] = "SMGMk2";
|
|
43
|
+
WeaponHash2[WeaponHash2["AssaultSMG"] = -270015777] = "AssaultSMG";
|
|
44
|
+
WeaponHash2[WeaponHash2["CombatPDW"] = 171789620] = "CombatPDW";
|
|
45
|
+
WeaponHash2[WeaponHash2["MachinePistol"] = -619010992] = "MachinePistol";
|
|
46
|
+
WeaponHash2[WeaponHash2["MiniSMG"] = -1121678507] = "MiniSMG";
|
|
47
|
+
WeaponHash2[WeaponHash2["RayCarbine"] = 1198256469] = "RayCarbine";
|
|
48
|
+
WeaponHash2[WeaponHash2["MG"] = -1660422300] = "MG";
|
|
49
|
+
WeaponHash2[WeaponHash2["CombatMG"] = 2144741730] = "CombatMG";
|
|
50
|
+
WeaponHash2[WeaponHash2["CombatMGMk2"] = 3686625920] = "CombatMGMk2";
|
|
51
|
+
WeaponHash2[WeaponHash2["Gusenberg"] = 1627465347] = "Gusenberg";
|
|
52
|
+
WeaponHash2[WeaponHash2["PumpShotgun"] = 487013001] = "PumpShotgun";
|
|
53
|
+
WeaponHash2[WeaponHash2["PumpShotgunMk2"] = 1432025498] = "PumpShotgunMk2";
|
|
54
|
+
WeaponHash2[WeaponHash2["SawnOffShotgun"] = 2017895192] = "SawnOffShotgun";
|
|
55
|
+
WeaponHash2[WeaponHash2["AssaultShotgun"] = -494615257] = "AssaultShotgun";
|
|
56
|
+
WeaponHash2[WeaponHash2["BullpupShotgun"] = -1654528753] = "BullpupShotgun";
|
|
57
|
+
WeaponHash2[WeaponHash2["Musket"] = -1466123874] = "Musket";
|
|
58
|
+
WeaponHash2[WeaponHash2["HeavyShotgun"] = 984333226] = "HeavyShotgun";
|
|
59
|
+
WeaponHash2[WeaponHash2["DoubleBarrelShotgun"] = -275439685] = "DoubleBarrelShotgun";
|
|
60
|
+
WeaponHash2[WeaponHash2["SweeperShotgun"] = 317205821] = "SweeperShotgun";
|
|
61
|
+
WeaponHash2[WeaponHash2["CombatShotgun"] = 94989220] = "CombatShotgun";
|
|
62
|
+
WeaponHash2[WeaponHash2["AssaultRifle"] = -1074790547] = "AssaultRifle";
|
|
63
|
+
WeaponHash2[WeaponHash2["AssaultRifleMk2"] = 961495388] = "AssaultRifleMk2";
|
|
64
|
+
WeaponHash2[WeaponHash2["CarbineRifle"] = -2084633992] = "CarbineRifle";
|
|
65
|
+
WeaponHash2[WeaponHash2["CarbineRifleMk2"] = 4208062921] = "CarbineRifleMk2";
|
|
66
|
+
WeaponHash2[WeaponHash2["AdvancedRifle"] = -1357824103] = "AdvancedRifle";
|
|
67
|
+
WeaponHash2[WeaponHash2["SpecialCarbine"] = -1063057011] = "SpecialCarbine";
|
|
68
|
+
WeaponHash2[WeaponHash2["SpecialCarbineMk2"] = -1768145561] = "SpecialCarbineMk2";
|
|
69
|
+
WeaponHash2[WeaponHash2["BullpupRifle"] = 2132975508] = "BullpupRifle";
|
|
70
|
+
WeaponHash2[WeaponHash2["BullpupRifleMk2"] = -2066285827] = "BullpupRifleMk2";
|
|
71
|
+
WeaponHash2[WeaponHash2["CompactRifle"] = 1649403952] = "CompactRifle";
|
|
72
|
+
WeaponHash2[WeaponHash2["MilitaryRifle"] = -1658906650] = "MilitaryRifle";
|
|
73
|
+
WeaponHash2[WeaponHash2["HeavyRifle"] = -947031628] = "HeavyRifle";
|
|
74
|
+
WeaponHash2[WeaponHash2["SniperRifle"] = 100416529] = "SniperRifle";
|
|
75
|
+
WeaponHash2[WeaponHash2["HeavySniper"] = 205991906] = "HeavySniper";
|
|
76
|
+
WeaponHash2[WeaponHash2["HeavySniperMk2"] = 177293209] = "HeavySniperMk2";
|
|
77
|
+
WeaponHash2[WeaponHash2["MarksmanRifle"] = -952879014] = "MarksmanRifle";
|
|
78
|
+
WeaponHash2[WeaponHash2["MarksmanRifleMk2"] = 1785463520] = "MarksmanRifleMk2";
|
|
79
|
+
WeaponHash2[WeaponHash2["RPG"] = -1312131151] = "RPG";
|
|
80
|
+
WeaponHash2[WeaponHash2["GrenadeLauncher"] = -1568386805] = "GrenadeLauncher";
|
|
81
|
+
WeaponHash2[WeaponHash2["GrenadeLauncherSmoke"] = 1305664598] = "GrenadeLauncherSmoke";
|
|
82
|
+
WeaponHash2[WeaponHash2["Minigun"] = 1119849093] = "Minigun";
|
|
83
|
+
WeaponHash2[WeaponHash2["Firework"] = 2138347493] = "Firework";
|
|
84
|
+
WeaponHash2[WeaponHash2["Railgun"] = 1834241177] = "Railgun";
|
|
85
|
+
WeaponHash2[WeaponHash2["HomingLauncher"] = 1672152130] = "HomingLauncher";
|
|
86
|
+
WeaponHash2[WeaponHash2["CompactGrenadeLauncher"] = 125959754] = "CompactGrenadeLauncher";
|
|
87
|
+
WeaponHash2[WeaponHash2["RayMinigun"] = -1238556825] = "RayMinigun";
|
|
88
|
+
WeaponHash2[WeaponHash2["EmpLauncher"] = -618237638] = "EmpLauncher";
|
|
89
|
+
WeaponHash2[WeaponHash2["Grenade"] = -1813897027] = "Grenade";
|
|
90
|
+
WeaponHash2[WeaponHash2["BZGas"] = -1600701090] = "BZGas";
|
|
91
|
+
WeaponHash2[WeaponHash2["Molotov"] = 615608432] = "Molotov";
|
|
92
|
+
WeaponHash2[WeaponHash2["StickyBomb"] = 741814745] = "StickyBomb";
|
|
93
|
+
WeaponHash2[WeaponHash2["ProximityMine"] = -1420407917] = "ProximityMine";
|
|
94
|
+
WeaponHash2[WeaponHash2["Snowball"] = 126349499] = "Snowball";
|
|
95
|
+
WeaponHash2[WeaponHash2["PipeBomb"] = -1169823560] = "PipeBomb";
|
|
96
|
+
WeaponHash2[WeaponHash2["Ball"] = 600439132] = "Ball";
|
|
97
|
+
WeaponHash2[WeaponHash2["SmokeGrenade"] = -37975472] = "SmokeGrenade";
|
|
98
|
+
WeaponHash2[WeaponHash2["Flare"] = 1233104067] = "Flare";
|
|
99
|
+
WeaponHash2[WeaponHash2["PetrolCan"] = 883325847] = "PetrolCan";
|
|
100
|
+
WeaponHash2[WeaponHash2["Parachute"] = -72657034] = "Parachute";
|
|
101
|
+
WeaponHash2[WeaponHash2["FireExtinguisher"] = 101631238] = "FireExtinguisher";
|
|
102
|
+
WeaponHash2[WeaponHash2["HazardCan"] = -1168940174] = "HazardCan";
|
|
103
|
+
WeaponHash2[WeaponHash2["FertilizerCan"] = 406929569] = "FertilizerCan";
|
|
104
|
+
return WeaponHash2;
|
|
105
|
+
})(WeaponHash || {});
|
|
106
|
+
var VehicleWeaponHash = /* @__PURE__ */ ((VehicleWeaponHash2) => {
|
|
107
|
+
VehicleWeaponHash2[VehicleWeaponHash2["Invalid"] = -1] = "Invalid";
|
|
108
|
+
VehicleWeaponHash2[VehicleWeaponHash2["Tank"] = 1945616459] = "Tank";
|
|
109
|
+
VehicleWeaponHash2[VehicleWeaponHash2["SpaceRocket"] = -123497569] = "SpaceRocket";
|
|
110
|
+
VehicleWeaponHash2[VehicleWeaponHash2["PlaneRocket"] = -821520672] = "PlaneRocket";
|
|
111
|
+
VehicleWeaponHash2[VehicleWeaponHash2["PlayerLaser"] = -268631733] = "PlayerLaser";
|
|
112
|
+
VehicleWeaponHash2[VehicleWeaponHash2["PlayerBullet"] = 1259576109] = "PlayerBullet";
|
|
113
|
+
VehicleWeaponHash2[VehicleWeaponHash2["PlayerBuzzard"] = 1186503822] = "PlayerBuzzard";
|
|
114
|
+
VehicleWeaponHash2[VehicleWeaponHash2["PlayerHunter"] = -1625648674] = "PlayerHunter";
|
|
115
|
+
VehicleWeaponHash2[VehicleWeaponHash2["PlayerLazer"] = -494786007] = "PlayerLazer";
|
|
116
|
+
VehicleWeaponHash2[VehicleWeaponHash2["EnemyLaser"] = 1566990507] = "EnemyLaser";
|
|
117
|
+
VehicleWeaponHash2[VehicleWeaponHash2["SearchLight"] = -844344963] = "SearchLight";
|
|
118
|
+
VehicleWeaponHash2[VehicleWeaponHash2["Radar"] = -764006018] = "Radar";
|
|
119
|
+
return VehicleWeaponHash2;
|
|
120
|
+
})(VehicleWeaponHash || {});
|
|
121
|
+
var AmmoType = /* @__PURE__ */ ((AmmoType2) => {
|
|
122
|
+
AmmoType2[AmmoType2["Melee"] = 0] = "Melee";
|
|
123
|
+
AmmoType2[AmmoType2["FireExtinguisher"] = 1359393852] = "FireExtinguisher";
|
|
124
|
+
AmmoType2[AmmoType2["Flare"] = 1808594799] = "Flare";
|
|
125
|
+
AmmoType2[AmmoType2["FlareGun"] = 1173416293] = "FlareGun";
|
|
126
|
+
AmmoType2[AmmoType2["PetrolCan"] = 3395492001] = "PetrolCan";
|
|
127
|
+
AmmoType2[AmmoType2["Shotgun"] = 2416459067] = "Shotgun";
|
|
128
|
+
AmmoType2[AmmoType2["Pistol"] = 1950175060] = "Pistol";
|
|
129
|
+
AmmoType2[AmmoType2["Ball"] = 4287981158] = "Ball";
|
|
130
|
+
AmmoType2[AmmoType2["Snowball"] = 2182627693] = "Snowball";
|
|
131
|
+
AmmoType2[AmmoType2["Sniper"] = 1285032059] = "Sniper";
|
|
132
|
+
AmmoType2[AmmoType2["AssaultRifle"] = 218444191] = "AssaultRifle";
|
|
133
|
+
AmmoType2[AmmoType2["SMG"] = 1820140472] = "SMG";
|
|
134
|
+
AmmoType2[AmmoType2["Molotov"] = 1446246869] = "Molotov";
|
|
135
|
+
AmmoType2[AmmoType2["StunGun"] = 2955849184] = "StunGun";
|
|
136
|
+
AmmoType2[AmmoType2["MG"] = 1788949567] = "MG";
|
|
137
|
+
AmmoType2[AmmoType2["GrenadeLauncher"] = 1003267566] = "GrenadeLauncher";
|
|
138
|
+
AmmoType2[AmmoType2["RPG"] = 1742569970] = "RPG";
|
|
139
|
+
AmmoType2[AmmoType2["Minigun"] = 2680539266] = "Minigun";
|
|
140
|
+
AmmoType2[AmmoType2["Firework"] = 2938367503] = "Firework";
|
|
141
|
+
AmmoType2[AmmoType2["Railgun"] = 2034517757] = "Railgun";
|
|
142
|
+
AmmoType2[AmmoType2["HomingLauncher"] = 2568293933] = "HomingLauncher";
|
|
143
|
+
AmmoType2[AmmoType2["Grenade"] = 1003688881] = "Grenade";
|
|
144
|
+
AmmoType2[AmmoType2["StickyBomb"] = 1411692055] = "StickyBomb";
|
|
145
|
+
AmmoType2[AmmoType2["ProximityMine"] = 2938243239] = "ProximityMine";
|
|
146
|
+
AmmoType2[AmmoType2["PipeBomb"] = 357983224] = "PipeBomb";
|
|
147
|
+
AmmoType2[AmmoType2["SmokeGrenade"] = 3859679398] = "SmokeGrenade";
|
|
148
|
+
AmmoType2[AmmoType2["BZGas"] = 2608103076] = "BZGas";
|
|
149
|
+
return AmmoType2;
|
|
150
|
+
})(AmmoType || {});
|
|
151
|
+
export {
|
|
152
|
+
AmmoType,
|
|
153
|
+
VehicleWeaponHash,
|
|
154
|
+
WeaponHash
|
|
155
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
var WeatherTypeHash = /* @__PURE__ */ ((WeatherTypeHash2) => {
|
|
2
|
+
WeatherTypeHash2[WeatherTypeHash2["Unknown"] = -1] = "Unknown";
|
|
3
|
+
WeatherTypeHash2[WeatherTypeHash2["ExtraSunny"] = -1750463879] = "ExtraSunny";
|
|
4
|
+
WeatherTypeHash2[WeatherTypeHash2["Clear"] = 916995460] = "Clear";
|
|
5
|
+
WeatherTypeHash2[WeatherTypeHash2["Neutral"] = -1530260698] = "Neutral";
|
|
6
|
+
WeatherTypeHash2[WeatherTypeHash2["Smog"] = 282916021] = "Smog";
|
|
7
|
+
WeatherTypeHash2[WeatherTypeHash2["Foggy"] = -1368164796] = "Foggy";
|
|
8
|
+
WeatherTypeHash2[WeatherTypeHash2["Clouds"] = 821931868] = "Clouds";
|
|
9
|
+
WeatherTypeHash2[WeatherTypeHash2["Overcast"] = -1148613331] = "Overcast";
|
|
10
|
+
WeatherTypeHash2[WeatherTypeHash2["Clearing"] = 1840358669] = "Clearing";
|
|
11
|
+
WeatherTypeHash2[WeatherTypeHash2["Raining"] = 1420204096] = "Raining";
|
|
12
|
+
WeatherTypeHash2[WeatherTypeHash2["ThunderStorm"] = -1233681761] = "ThunderStorm";
|
|
13
|
+
WeatherTypeHash2[WeatherTypeHash2["Blizzard"] = 669657108] = "Blizzard";
|
|
14
|
+
WeatherTypeHash2[WeatherTypeHash2["Snowing"] = -273223690] = "Snowing";
|
|
15
|
+
WeatherTypeHash2[WeatherTypeHash2["Snowlight"] = 603685163] = "Snowlight";
|
|
16
|
+
WeatherTypeHash2[WeatherTypeHash2["Christmas"] = -1429616491] = "Christmas";
|
|
17
|
+
WeatherTypeHash2[WeatherTypeHash2["Halloween"] = -921030142] = "Halloween";
|
|
18
|
+
return WeatherTypeHash2;
|
|
19
|
+
})(WeatherTypeHash || {});
|
|
20
|
+
export {
|
|
21
|
+
WeatherTypeHash
|
|
22
|
+
};
|