@nativewrappers/redm 0.0.80 → 0.0.81
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/Attribute.js +143 -0
- package/Controls.js +22 -0
- package/Game.d.ts +2 -2
- package/Game.js +18 -0
- package/GameConstants.d.ts +1 -1
- package/GameConstants.js +24 -0
- package/Model.js +153 -0
- package/RawControls.d.ts +1 -1
- package/RawControls.js +22 -0
- package/RelationshipGroup.js +72 -0
- package/Volume.d.ts +1 -1
- package/Volume.js +32 -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/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/definitions/Citizen.d.js +0 -0
- package/definitions/index.d.js +0 -0
- package/definitions/redm.d.js +0 -0
- package/entities/BaseEntity.d.ts +1 -1
- package/entities/BaseEntity.js +99 -0
- package/entities/Entity.d.ts +1 -1
- package/entities/Entity.js +99 -0
- package/entities/Ped.d.ts +1 -1
- package/entities/Ped.js +336 -0
- package/entities/Pickup.d.ts +4 -0
- package/entities/Pickup.js +14 -0
- package/entities/Player.js +57 -0
- package/entities/Prop.js +11 -0
- package/entities/Vehicle.d.ts +1 -1
- package/entities/Vehicle.js +23 -0
- package/enums/Attributes.js +56 -0
- package/enums/Entity.js +20 -0
- package/enums/Keys.js +809 -0
- package/enums/Ped.js +31 -0
- package/enums/RawKeys.js +234 -0
- package/enums/Relationship.js +13 -0
- package/enums/VehicleSeat.js +17 -0
- package/interfaces/Dimensions.d.ts +1 -1
- package/interfaces/Dimensions.js +0 -0
- package/package.json +2 -2
- package/types/Throwable.js +0 -0
- package/utils/Native.js +8 -0
- package/world/createDraftVehicle.d.ts +2 -2
- package/world/createDraftVehicle.js +32 -0
- package/world/createPed.d.ts +2 -2
- package/world/createPed.js +28 -0
- package/world/createProp.d.ts +1 -1
- package/world/createProp.js +28 -0
- package/world/createVehicle.d.ts +2 -2
- package/world/createVehicle.js +28 -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/entities/index.d.ts +0 -4
- package/enums/index.d.ts +0 -6
- package/index.d.ts +0 -12
- package/index.js +0 -3762
- package/utils/index.d.ts +0 -2
- package/world/index.d.ts +0 -4
- /package/{game/index.d.ts → common/types.js} +0 -0
package/enums/Keys.js
ADDED
|
@@ -0,0 +1,809 @@
|
|
|
1
|
+
var KeyHash = /* @__PURE__ */ ((KeyHash2) => {
|
|
2
|
+
KeyHash2[KeyHash2["AccurateAim"] = 1080745902] = "AccurateAim";
|
|
3
|
+
KeyHash2[KeyHash2["Aim"] = 4165969743] = "Aim";
|
|
4
|
+
KeyHash2[KeyHash2["AimInAir"] = 3640078424] = "AimInAir";
|
|
5
|
+
KeyHash2[KeyHash2["Arrest"] = 2767257707] = "Arrest";
|
|
6
|
+
KeyHash2[KeyHash2["Attack"] = 130948705] = "Attack";
|
|
7
|
+
KeyHash2[KeyHash2["Attack2"] = 42190210] = "Attack2";
|
|
8
|
+
KeyHash2[KeyHash2["BreakDoorLock"] = 1997605642] = "BreakDoorLock";
|
|
9
|
+
KeyHash2[KeyHash2["BreakVehicleLock"] = 2546408232] = "BreakVehicleLock";
|
|
10
|
+
KeyHash2[KeyHash2["BuyGeneric"] = 1912940132] = "BuyGeneric";
|
|
11
|
+
KeyHash2[KeyHash2["CameraBack"] = 2763879589] = "CameraBack";
|
|
12
|
+
KeyHash2[KeyHash2["CameraContextGallery"] = 3895685974] = "CameraContextGallery";
|
|
13
|
+
KeyHash2[KeyHash2["CameraDof"] = 805566940] = "CameraDof";
|
|
14
|
+
KeyHash2[KeyHash2["CameraExpressionNext"] = 3483829203] = "CameraExpressionNext";
|
|
15
|
+
KeyHash2[KeyHash2["CameraExpressionPrev"] = 129385309] = "CameraExpressionPrev";
|
|
16
|
+
KeyHash2[KeyHash2["CameraHandheldUse"] = 2003789289] = "CameraHandheldUse";
|
|
17
|
+
KeyHash2[KeyHash2["CameraPoseNext"] = 4161862453] = "CameraPoseNext";
|
|
18
|
+
KeyHash2[KeyHash2["CameraPosePrev"] = 2371611089] = "CameraPosePrev";
|
|
19
|
+
KeyHash2[KeyHash2["CameraPutAway"] = 1606906090] = "CameraPutAway";
|
|
20
|
+
KeyHash2[KeyHash2["CameraSelfie"] = 2891522794] = "CameraSelfie";
|
|
21
|
+
KeyHash2[KeyHash2["CameraTakePhoto"] = 1157240002] = "CameraTakePhoto";
|
|
22
|
+
KeyHash2[KeyHash2["CameraZoom"] = 1206668322] = "CameraZoom";
|
|
23
|
+
KeyHash2[KeyHash2["CampBedInspect"] = 3330151355] = "CampBedInspect";
|
|
24
|
+
KeyHash2[KeyHash2["CampSetupTent"] = 186376936] = "CampSetupTent";
|
|
25
|
+
KeyHash2[KeyHash2["CarriableBreakFree"] = 693204415] = "CarriableBreakFree";
|
|
26
|
+
KeyHash2[KeyHash2["CarriableSuicide"] = 1855403240] = "CarriableSuicide";
|
|
27
|
+
KeyHash2[KeyHash2["CellphoneCameraDof"] = 1497216137] = "CellphoneCameraDof";
|
|
28
|
+
KeyHash2[KeyHash2["CellphoneCameraExpression"] = 3621942503] = "CellphoneCameraExpression";
|
|
29
|
+
KeyHash2[KeyHash2["CellphoneCameraFocusLock"] = 1522630750] = "CellphoneCameraFocusLock";
|
|
30
|
+
KeyHash2[KeyHash2["CellphoneCameraGrid"] = 3784099194] = "CellphoneCameraGrid";
|
|
31
|
+
KeyHash2[KeyHash2["CellphoneCameraSelfie"] = 1782844414] = "CellphoneCameraSelfie";
|
|
32
|
+
KeyHash2[KeyHash2["CellphoneCancel"] = 3716362887] = "CellphoneCancel";
|
|
33
|
+
KeyHash2[KeyHash2["CellphoneDown"] = 2182701058] = "CellphoneDown";
|
|
34
|
+
KeyHash2[KeyHash2["CellphoneExtraOption"] = 3191160849] = "CellphoneExtraOption";
|
|
35
|
+
KeyHash2[KeyHash2["CellphoneLeft"] = 985393552] = "CellphoneLeft";
|
|
36
|
+
KeyHash2[KeyHash2["CellphoneOption"] = 3535965108] = "CellphoneOption";
|
|
37
|
+
KeyHash2[KeyHash2["CellphoneRight"] = 3529440717] = "CellphoneRight";
|
|
38
|
+
KeyHash2[KeyHash2["CellphoneScrollBackward"] = 1204621115] = "CellphoneScrollBackward";
|
|
39
|
+
KeyHash2[KeyHash2["CellphoneScrollForward"] = 3410892696] = "CellphoneScrollForward";
|
|
40
|
+
KeyHash2[KeyHash2["CellphoneSelect"] = 3693494296] = "CellphoneSelect";
|
|
41
|
+
KeyHash2[KeyHash2["CellphoneUp"] = 3538828062] = "CellphoneUp";
|
|
42
|
+
KeyHash2[KeyHash2["CharacterWheel"] = 2536475934] = "CharacterWheel";
|
|
43
|
+
KeyHash2[KeyHash2["CinematicCam"] = 1644850270] = "CinematicCam";
|
|
44
|
+
KeyHash2[KeyHash2["CinematicCamChangeShot"] = 2798023235] = "CinematicCamChangeShot";
|
|
45
|
+
KeyHash2[KeyHash2["CinematicCamDownOnly"] = 598619298] = "CinematicCamDownOnly";
|
|
46
|
+
KeyHash2[KeyHash2["CinematicCamHold"] = 3622286197] = "CinematicCamHold";
|
|
47
|
+
KeyHash2[KeyHash2["CinematicCamLr"] = 1808336124] = "CinematicCamLr";
|
|
48
|
+
KeyHash2[KeyHash2["CinematicCamUd"] = 2220313320] = "CinematicCamUd";
|
|
49
|
+
KeyHash2[KeyHash2["CinematicCamUpOnly"] = 4023379639] = "CinematicCamUpOnly";
|
|
50
|
+
KeyHash2[KeyHash2["CinematicSlowmo"] = 2056295390] = "CinematicSlowmo";
|
|
51
|
+
KeyHash2[KeyHash2["ClaimGeneric"] = 3750750661] = "ClaimGeneric";
|
|
52
|
+
KeyHash2[KeyHash2["Context"] = 3074148983] = "Context";
|
|
53
|
+
KeyHash2[KeyHash2["ContextA"] = 1367437629] = "ContextA";
|
|
54
|
+
KeyHash2[KeyHash2["ContextAction"] = 2994936e3] = "ContextAction";
|
|
55
|
+
KeyHash2[KeyHash2["ContextB"] = 992265328] = "ContextB";
|
|
56
|
+
KeyHash2[KeyHash2["ContextLt"] = 3241829732] = "ContextLt";
|
|
57
|
+
KeyHash2[KeyHash2["ContextRt"] = 129547951] = "ContextRt";
|
|
58
|
+
KeyHash2[KeyHash2["ContextSecondary"] = 4053525381] = "ContextSecondary";
|
|
59
|
+
KeyHash2[KeyHash2["ContextX"] = 3820983707] = "ContextX";
|
|
60
|
+
KeyHash2[KeyHash2["ContextY"] = 3575347279] = "ContextY";
|
|
61
|
+
KeyHash2[KeyHash2["Count"] = 2397043504] = "Count";
|
|
62
|
+
KeyHash2[KeyHash2["Cover"] = 3732491838] = "Cover";
|
|
63
|
+
KeyHash2[KeyHash2["CoverTransition"] = 1963753488] = "CoverTransition";
|
|
64
|
+
KeyHash2[KeyHash2["CraftingEat"] = 3113917613] = "CraftingEat";
|
|
65
|
+
KeyHash2[KeyHash2["CreatorAccept"] = 752170046] = "CreatorAccept";
|
|
66
|
+
KeyHash2[KeyHash2["CreatorDelete"] = 1062060271] = "CreatorDelete";
|
|
67
|
+
KeyHash2[KeyHash2["CreatorDrop"] = 1094726869] = "CreatorDrop";
|
|
68
|
+
KeyHash2[KeyHash2["CreatorFunction"] = 2959071781] = "CreatorFunction";
|
|
69
|
+
KeyHash2[KeyHash2["CreatorGrab"] = 864685381] = "CreatorGrab";
|
|
70
|
+
KeyHash2[KeyHash2["CreatorLookLr"] = 2930944455] = "CreatorLookLr";
|
|
71
|
+
KeyHash2[KeyHash2["CreatorLookUd"] = 1441408243] = "CreatorLookUd";
|
|
72
|
+
KeyHash2[KeyHash2["CreatorLower"] = 467545779] = "CreatorLower";
|
|
73
|
+
KeyHash2[KeyHash2["CreatorLs"] = 866072368] = "CreatorLs";
|
|
74
|
+
KeyHash2[KeyHash2["CreatorLt"] = 1147295926] = "CreatorLt";
|
|
75
|
+
KeyHash2[KeyHash2["CreatorMenuAccept"] = 4221317681] = "CreatorMenuAccept";
|
|
76
|
+
KeyHash2[KeyHash2["CreatorMenuCancel"] = 3141518432] = "CreatorMenuCancel";
|
|
77
|
+
KeyHash2[KeyHash2["CreatorMenuDown"] = 2537621333] = "CreatorMenuDown";
|
|
78
|
+
KeyHash2[KeyHash2["CreatorMenuExtraFunction"] = 3870880003] = "CreatorMenuExtraFunction";
|
|
79
|
+
KeyHash2[KeyHash2["CreatorMenuFunction"] = 1510192115] = "CreatorMenuFunction";
|
|
80
|
+
KeyHash2[KeyHash2["CreatorMenuLeft"] = 3966382250] = "CreatorMenuLeft";
|
|
81
|
+
KeyHash2[KeyHash2["CreatorMenuRaise"] = 491981946] = "CreatorMenuRaise";
|
|
82
|
+
KeyHash2[KeyHash2["CreatorMenuRight"] = 433599308] = "CreatorMenuRight";
|
|
83
|
+
KeyHash2[KeyHash2["CreatorMenuSelect"] = 159704074] = "CreatorMenuSelect";
|
|
84
|
+
KeyHash2[KeyHash2["CreatorMenuToggle"] = 2245149701] = "CreatorMenuToggle";
|
|
85
|
+
KeyHash2[KeyHash2["CreatorMenuUp"] = 3167831115] = "CreatorMenuUp";
|
|
86
|
+
KeyHash2[KeyHash2["CreatorMoveLr"] = 1500856028] = "CreatorMoveLr";
|
|
87
|
+
KeyHash2[KeyHash2["CreatorMoveUd"] = 2185397878] = "CreatorMoveUd";
|
|
88
|
+
KeyHash2[KeyHash2["CreatorPlace"] = 3612126381] = "CreatorPlace";
|
|
89
|
+
KeyHash2[KeyHash2["CreatorRaise"] = 219134385] = "CreatorRaise";
|
|
90
|
+
KeyHash2[KeyHash2["CreatorRotateLeft"] = 3558775850] = "CreatorRotateLeft";
|
|
91
|
+
KeyHash2[KeyHash2["CreatorRotateRight"] = 2641717070] = "CreatorRotateRight";
|
|
92
|
+
KeyHash2[KeyHash2["CreatorRs"] = 3637447829] = "CreatorRs";
|
|
93
|
+
KeyHash2[KeyHash2["CreatorRt"] = 1010684785] = "CreatorRt";
|
|
94
|
+
KeyHash2[KeyHash2["CreatorSearch"] = 4116210893] = "CreatorSearch";
|
|
95
|
+
KeyHash2[KeyHash2["CreatorSwitchCam"] = 382533318] = "CreatorSwitchCam";
|
|
96
|
+
KeyHash2[KeyHash2["CreatorZoomIn"] = 861769078] = "CreatorZoomIn";
|
|
97
|
+
KeyHash2[KeyHash2["CreatorZoomOut"] = 614739859] = "CreatorZoomOut";
|
|
98
|
+
KeyHash2[KeyHash2["CursorAccept"] = 2636835464] = "CursorAccept";
|
|
99
|
+
KeyHash2[KeyHash2["CursorAcceptDoubleClick"] = 475373358] = "CursorAcceptDoubleClick";
|
|
100
|
+
KeyHash2[KeyHash2["CursorAcceptHold"] = 3832869200] = "CursorAcceptHold";
|
|
101
|
+
KeyHash2[KeyHash2["CursorBackwardClick"] = 2599651219] = "CursorBackwardClick";
|
|
102
|
+
KeyHash2[KeyHash2["CursorBackwardDoubleClick"] = 2706088444] = "CursorBackwardDoubleClick";
|
|
103
|
+
KeyHash2[KeyHash2["CursorBackwardHold"] = 27959201] = "CursorBackwardHold";
|
|
104
|
+
KeyHash2[KeyHash2["CursorCancel"] = 659981625] = "CursorCancel";
|
|
105
|
+
KeyHash2[KeyHash2["CursorCancelDoubleClick"] = 2629102798] = "CursorCancelDoubleClick";
|
|
106
|
+
KeyHash2[KeyHash2["CursorCancelHold"] = 3623292726] = "CursorCancelHold";
|
|
107
|
+
KeyHash2[KeyHash2["CursorForwardClick"] = 299612857] = "CursorForwardClick";
|
|
108
|
+
KeyHash2[KeyHash2["CursorForwardDoubleClick"] = 2550519573] = "CursorForwardDoubleClick";
|
|
109
|
+
KeyHash2[KeyHash2["CursorForwardHold"] = 1982908833] = "CursorForwardHold";
|
|
110
|
+
KeyHash2[KeyHash2["CursorScrollClick"] = 1789437723] = "CursorScrollClick";
|
|
111
|
+
KeyHash2[KeyHash2["CursorScrollDoubleClick"] = 3786861933] = "CursorScrollDoubleClick";
|
|
112
|
+
KeyHash2[KeyHash2["CursorScrollDown"] = 2346611779] = "CursorScrollDown";
|
|
113
|
+
KeyHash2[KeyHash2["CursorScrollHold"] = 1417993181] = "CursorScrollHold";
|
|
114
|
+
KeyHash2[KeyHash2["CursorScrollUp"] = 1652558994] = "CursorScrollUp";
|
|
115
|
+
KeyHash2[KeyHash2["CursorX"] = 3603229916] = "CursorX";
|
|
116
|
+
KeyHash2[KeyHash2["CursorY"] = 3826452344] = "CursorY";
|
|
117
|
+
KeyHash2[KeyHash2["CutFree"] = 3536602692] = "CutFree";
|
|
118
|
+
KeyHash2[KeyHash2["DeprecatedAbove"] = 3251785618] = "DeprecatedAbove";
|
|
119
|
+
KeyHash2[KeyHash2["Detonate"] = 1938056823] = "Detonate";
|
|
120
|
+
KeyHash2[KeyHash2["DisableRadar"] = 1892407181] = "DisableRadar";
|
|
121
|
+
KeyHash2[KeyHash2["Dive"] = 101002513] = "Dive";
|
|
122
|
+
KeyHash2[KeyHash2["DocumentPageNext"] = 3380056759] = "DocumentPageNext";
|
|
123
|
+
KeyHash2[KeyHash2["DocumentPagePrev"] = 538512052] = "DocumentPagePrev";
|
|
124
|
+
KeyHash2[KeyHash2["DocumentScroll"] = 2893083409] = "DocumentScroll";
|
|
125
|
+
KeyHash2[KeyHash2["DocumentScrollDownOnly"] = 3610197545] = "DocumentScrollDownOnly";
|
|
126
|
+
KeyHash2[KeyHash2["DocumentScrollUpOnly"] = 1024203244] = "DocumentScrollUpOnly";
|
|
127
|
+
KeyHash2[KeyHash2["Drop"] = 3532816515] = "Drop";
|
|
128
|
+
KeyHash2[KeyHash2["DropAmmo"] = 1312975214] = "DropAmmo";
|
|
129
|
+
KeyHash2[KeyHash2["DropWeapon"] = 2109526038] = "DropWeapon";
|
|
130
|
+
KeyHash2[KeyHash2["Duck"] = 3674827653] = "Duck";
|
|
131
|
+
KeyHash2[KeyHash2["DynamicScenario"] = 782960533] = "DynamicScenario";
|
|
132
|
+
KeyHash2[KeyHash2["EmoteAction"] = 331623346] = "EmoteAction";
|
|
133
|
+
KeyHash2[KeyHash2["EmoteComm"] = 1712871347] = "EmoteComm";
|
|
134
|
+
KeyHash2[KeyHash2["EmoteDance"] = 4077981708] = "EmoteDance";
|
|
135
|
+
KeyHash2[KeyHash2["EmoteGreet"] = 1924847018] = "EmoteGreet";
|
|
136
|
+
KeyHash2[KeyHash2["EmoteGroupLink"] = 478307170] = "EmoteGroupLink";
|
|
137
|
+
KeyHash2[KeyHash2["EmoteGroupLinkHorse"] = 1339147643] = "EmoteGroupLinkHorse";
|
|
138
|
+
KeyHash2[KeyHash2["EmoteTaunt"] = 1192083856] = "EmoteTaunt";
|
|
139
|
+
KeyHash2[KeyHash2["EmoteTwirlGunHold"] = 83591569] = "EmoteTwirlGunHold";
|
|
140
|
+
KeyHash2[KeyHash2["EmoteTwirlGunVarA"] = 1771093471] = "EmoteTwirlGunVarA";
|
|
141
|
+
KeyHash2[KeyHash2["EmoteTwirlGunVarB"] = 1389531235] = "EmoteTwirlGunVarB";
|
|
142
|
+
KeyHash2[KeyHash2["EmoteTwirlGunVarC"] = 3156927250] = "EmoteTwirlGunVarC";
|
|
143
|
+
KeyHash2[KeyHash2["EmoteTwirlGunVarD"] = 2926135183] = "EmoteTwirlGunVarD";
|
|
144
|
+
KeyHash2[KeyHash2["EmotesFavorite"] = 2822055451] = "EmotesFavorite";
|
|
145
|
+
KeyHash2[KeyHash2["EmotesManage"] = 2121659612] = "EmotesManage";
|
|
146
|
+
KeyHash2[KeyHash2["EmotesSlotNavNext"] = 3417386887] = "EmotesSlotNavNext";
|
|
147
|
+
KeyHash2[KeyHash2["Enter"] = 3472724512] = "Enter";
|
|
148
|
+
KeyHash2[KeyHash2["EnterCheatCode"] = 2079742664] = "EnterCheatCode";
|
|
149
|
+
KeyHash2[KeyHash2["ExpandRadar"] = 3473609182] = "ExpandRadar";
|
|
150
|
+
KeyHash2[KeyHash2["FeedInteract"] = 2833511527] = "FeedInteract";
|
|
151
|
+
KeyHash2[KeyHash2["FeedInteractGeneric"] = 3584624748] = "FeedInteractGeneric";
|
|
152
|
+
KeyHash2[KeyHash2["FocusCam"] = 3878372340] = "FocusCam";
|
|
153
|
+
KeyHash2[KeyHash2["FrontendAccept"] = 3350541322] = "FrontendAccept";
|
|
154
|
+
KeyHash2[KeyHash2["FrontendAxisX"] = 4216773979] = "FrontendAxisX";
|
|
155
|
+
KeyHash2[KeyHash2["FrontendAxisY"] = 152139984] = "FrontendAxisY";
|
|
156
|
+
KeyHash2[KeyHash2["FrontendCancel"] = 359624985] = "FrontendCancel";
|
|
157
|
+
KeyHash2[KeyHash2["FrontendDelete"] = 1257559155] = "FrontendDelete";
|
|
158
|
+
KeyHash2[KeyHash2["FrontendDown"] = 97156178] = "FrontendDown";
|
|
159
|
+
KeyHash2[KeyHash2["FrontendEndscreenAccept"] = 1043528942] = "FrontendEndscreenAccept";
|
|
160
|
+
KeyHash2[KeyHash2["FrontendEndscreenExpand"] = 3348881055] = "FrontendEndscreenExpand";
|
|
161
|
+
KeyHash2[KeyHash2["FrontendKeymappingCancel"] = 1049167194] = "FrontendKeymappingCancel";
|
|
162
|
+
KeyHash2[KeyHash2["FrontendLb"] = 3901091606] = "FrontendLb";
|
|
163
|
+
KeyHash2[KeyHash2["FrontendLeaderboard"] = 2665254245] = "FrontendLeaderboard";
|
|
164
|
+
KeyHash2[KeyHash2["FrontendLeft"] = 2791226036] = "FrontendLeft";
|
|
165
|
+
KeyHash2[KeyHash2["FrontendLs"] = 1137550768] = "FrontendLs";
|
|
166
|
+
KeyHash2[KeyHash2["FrontendLt"] = 1360019509] = "FrontendLt";
|
|
167
|
+
KeyHash2[KeyHash2["FrontendMapNavDown"] = 4165471981] = "FrontendMapNavDown";
|
|
168
|
+
KeyHash2[KeyHash2["FrontendMapNavLeft"] = 3772209920] = "FrontendMapNavLeft";
|
|
169
|
+
KeyHash2[KeyHash2["FrontendMapNavRight"] = 678583901] = "FrontendMapNavRight";
|
|
170
|
+
KeyHash2[KeyHash2["FrontendMapNavUp"] = 307917029] = "FrontendMapNavUp";
|
|
171
|
+
KeyHash2[KeyHash2["FrontendMapZoom"] = 1798674983] = "FrontendMapZoom";
|
|
172
|
+
KeyHash2[KeyHash2["FrontendNavDown"] = 2014399155] = "FrontendNavDown";
|
|
173
|
+
KeyHash2[KeyHash2["FrontendNavLeft"] = 2273251367] = "FrontendNavLeft";
|
|
174
|
+
KeyHash2[KeyHash2["FrontendNavRight"] = 146634124] = "FrontendNavRight";
|
|
175
|
+
KeyHash2[KeyHash2["FrontendNavUp"] = 2365579425] = "FrontendNavUp";
|
|
176
|
+
KeyHash2[KeyHash2["FrontendPause"] = 3626896338] = "FrontendPause";
|
|
177
|
+
KeyHash2[KeyHash2["FrontendPauseAlternate"] = 1250966545] = "FrontendPauseAlternate";
|
|
178
|
+
KeyHash2[KeyHash2["FrontendPhotoMode"] = 1154297883] = "FrontendPhotoMode";
|
|
179
|
+
KeyHash2[KeyHash2["FrontendRb"] = 398377320] = "FrontendRb";
|
|
180
|
+
KeyHash2[KeyHash2["FrontendRdown"] = 1463068996] = "FrontendRdown";
|
|
181
|
+
KeyHash2[KeyHash2["FrontendRight"] = 3736290067] = "FrontendRight";
|
|
182
|
+
KeyHash2[KeyHash2["FrontendRightAxisX"] = 1025725594] = "FrontendRightAxisX";
|
|
183
|
+
KeyHash2[KeyHash2["FrontendRightAxisY"] = 3946918111] = "FrontendRightAxisY";
|
|
184
|
+
KeyHash2[KeyHash2["FrontendRleft"] = 959670863] = "FrontendRleft";
|
|
185
|
+
KeyHash2[KeyHash2["FrontendRright"] = 1531509048] = "FrontendRright";
|
|
186
|
+
KeyHash2[KeyHash2["FrontendRs"] = 2107936042] = "FrontendRs";
|
|
187
|
+
KeyHash2[KeyHash2["FrontendRt"] = 1877832124] = "FrontendRt";
|
|
188
|
+
KeyHash2[KeyHash2["FrontendRup"] = 3621677854] = "FrontendRup";
|
|
189
|
+
KeyHash2[KeyHash2["FrontendScrollAxisX"] = 841268309] = "FrontendScrollAxisX";
|
|
190
|
+
KeyHash2[KeyHash2["FrontendScrollAxisY"] = 560274134] = "FrontendScrollAxisY";
|
|
191
|
+
KeyHash2[KeyHash2["FrontendSelect"] = 387518684] = "FrontendSelect";
|
|
192
|
+
KeyHash2[KeyHash2["FrontendSocialClub"] = 105715352] = "FrontendSocialClub";
|
|
193
|
+
KeyHash2[KeyHash2["FrontendSocialClubSecondary"] = 3183007475] = "FrontendSocialClubSecondary";
|
|
194
|
+
KeyHash2[KeyHash2["FrontendStart"] = 3441418762] = "FrontendStart";
|
|
195
|
+
KeyHash2[KeyHash2["FrontendTouchDoubleTapX"] = 375519920] = "FrontendTouchDoubleTapX";
|
|
196
|
+
KeyHash2[KeyHash2["FrontendTouchDoubleTapY"] = 2531818431] = "FrontendTouchDoubleTapY";
|
|
197
|
+
KeyHash2[KeyHash2["FrontendTouchDragX"] = 3969078414] = "FrontendTouchDragX";
|
|
198
|
+
KeyHash2[KeyHash2["FrontendTouchDragY"] = 2596352235] = "FrontendTouchDragY";
|
|
199
|
+
KeyHash2[KeyHash2["FrontendTouchHoldX"] = 267484957] = "FrontendTouchHoldX";
|
|
200
|
+
KeyHash2[KeyHash2["FrontendTouchHoldY"] = 965661271] = "FrontendTouchHoldY";
|
|
201
|
+
KeyHash2[KeyHash2["FrontendTouchSwipeDownX"] = 3820161365] = "FrontendTouchSwipeDownX";
|
|
202
|
+
KeyHash2[KeyHash2["FrontendTouchSwipeDownY"] = 3187621354] = "FrontendTouchSwipeDownY";
|
|
203
|
+
KeyHash2[KeyHash2["FrontendTouchSwipeLeftX"] = 625324254] = "FrontendTouchSwipeLeftX";
|
|
204
|
+
KeyHash2[KeyHash2["FrontendTouchSwipeLeftY"] = 3560771278] = "FrontendTouchSwipeLeftY";
|
|
205
|
+
KeyHash2[KeyHash2["FrontendTouchSwipeRightX"] = 3937829783] = "FrontendTouchSwipeRightX";
|
|
206
|
+
KeyHash2[KeyHash2["FrontendTouchSwipeRightY"] = 1734048995] = "FrontendTouchSwipeRightY";
|
|
207
|
+
KeyHash2[KeyHash2["FrontendTouchSwipeUpX"] = 192009273] = "FrontendTouchSwipeUpX";
|
|
208
|
+
KeyHash2[KeyHash2["FrontendTouchSwipeUpY"] = 432697578] = "FrontendTouchSwipeUpY";
|
|
209
|
+
KeyHash2[KeyHash2["FrontendTouchTapX"] = 3238926346] = "FrontendTouchTapX";
|
|
210
|
+
KeyHash2[KeyHash2["FrontendTouchTapY"] = 3477812356] = "FrontendTouchTapY";
|
|
211
|
+
KeyHash2[KeyHash2["FrontendTouchZoomFactor"] = 3891829816] = "FrontendTouchZoomFactor";
|
|
212
|
+
KeyHash2[KeyHash2["FrontendTouchZoomX"] = 375790288] = "FrontendTouchZoomX";
|
|
213
|
+
KeyHash2[KeyHash2["FrontendTouchZoomY"] = 624801919] = "FrontendTouchZoomY";
|
|
214
|
+
KeyHash2[KeyHash2["FrontendUp"] = 1662638961] = "FrontendUp";
|
|
215
|
+
KeyHash2[KeyHash2["FrontendX"] = 1840825903] = "FrontendX";
|
|
216
|
+
KeyHash2[KeyHash2["FrontendY"] = 2080465600] = "FrontendY";
|
|
217
|
+
KeyHash2[KeyHash2["GameMenuAccept"] = 1138488863] = "GameMenuAccept";
|
|
218
|
+
KeyHash2[KeyHash2["GameMenuCancel"] = 814057702] = "GameMenuCancel";
|
|
219
|
+
KeyHash2[KeyHash2["GameMenuDown"] = 1141111167] = "GameMenuDown";
|
|
220
|
+
KeyHash2[KeyHash2["GameMenuExtraOption"] = 3583430576] = "GameMenuExtraOption";
|
|
221
|
+
KeyHash2[KeyHash2["GameMenuLeft"] = 2910833755] = "GameMenuLeft";
|
|
222
|
+
KeyHash2[KeyHash2["GameMenuLeftAxisX"] = 4096906618] = "GameMenuLeftAxisX";
|
|
223
|
+
KeyHash2[KeyHash2["GameMenuLeftAxisY"] = 577679855] = "GameMenuLeftAxisY";
|
|
224
|
+
KeyHash2[KeyHash2["GameMenuLs"] = 2834751078] = "GameMenuLs";
|
|
225
|
+
KeyHash2[KeyHash2["GameMenuOption"] = 4225217510] = "GameMenuOption";
|
|
226
|
+
KeyHash2[KeyHash2["GameMenuRight"] = 1710877787] = "GameMenuRight";
|
|
227
|
+
KeyHash2[KeyHash2["GameMenuRightAxisX"] = 1183164979] = "GameMenuRightAxisX";
|
|
228
|
+
KeyHash2[KeyHash2["GameMenuRightAxisY"] = 1623613108] = "GameMenuRightAxisY";
|
|
229
|
+
KeyHash2[KeyHash2["GameMenuRightStickDown"] = 2914485875] = "GameMenuRightStickDown";
|
|
230
|
+
KeyHash2[KeyHash2["GameMenuRightStickLeft"] = 1910737254] = "GameMenuRightStickLeft";
|
|
231
|
+
KeyHash2[KeyHash2["GameMenuRightStickRight"] = 3788426827] = "GameMenuRightStickRight";
|
|
232
|
+
KeyHash2[KeyHash2["GameMenuRightStickUp"] = 4028836355] = "GameMenuRightStickUp";
|
|
233
|
+
KeyHash2[KeyHash2["GameMenuRs"] = 2313830309] = "GameMenuRs";
|
|
234
|
+
KeyHash2[KeyHash2["GameMenuScrollBackward"] = 2644780612] = "GameMenuScrollBackward";
|
|
235
|
+
KeyHash2[KeyHash2["GameMenuScrollForward"] = 2168814106] = "GameMenuScrollForward";
|
|
236
|
+
KeyHash2[KeyHash2["GameMenuStickDown"] = 1669958966] = "GameMenuStickDown";
|
|
237
|
+
KeyHash2[KeyHash2["GameMenuStickLeft"] = 113281492] = "GameMenuStickLeft";
|
|
238
|
+
KeyHash2[KeyHash2["GameMenuStickRight"] = 1541138497] = "GameMenuStickRight";
|
|
239
|
+
KeyHash2[KeyHash2["GameMenuStickUp"] = 2628350873] = "GameMenuStickUp";
|
|
240
|
+
KeyHash2[KeyHash2["GameMenuTabLeft"] = 3419779694] = "GameMenuTabLeft";
|
|
241
|
+
KeyHash2[KeyHash2["GameMenuTabLeftSecondary"] = 652860416] = "GameMenuTabLeftSecondary";
|
|
242
|
+
KeyHash2[KeyHash2["GameMenuTabRight"] = 285921746] = "GameMenuTabRight";
|
|
243
|
+
KeyHash2[KeyHash2["GameMenuTabRightSecondary"] = 2362035522] = "GameMenuTabRightSecondary";
|
|
244
|
+
KeyHash2[KeyHash2["GameMenuUp"] = 2434576542] = "GameMenuUp";
|
|
245
|
+
KeyHash2[KeyHash2["HitchAnimal"] = 2841515112] = "HitchAnimal";
|
|
246
|
+
KeyHash2[KeyHash2["Hogtie"] = 3653567794] = "Hogtie";
|
|
247
|
+
KeyHash2[KeyHash2["HorseAim"] = 1632043089] = "HorseAim";
|
|
248
|
+
KeyHash2[KeyHash2["HorseAttack"] = 1623727326] = "HorseAttack";
|
|
249
|
+
KeyHash2[KeyHash2["HorseAttack2"] = 3372489069] = "HorseAttack2";
|
|
250
|
+
KeyHash2[KeyHash2["HorseCollect"] = 2103129879] = "HorseCollect";
|
|
251
|
+
KeyHash2[KeyHash2["HorseCommandFlee"] = 1108782854] = "HorseCommandFlee";
|
|
252
|
+
KeyHash2[KeyHash2["HorseCommandFollow"] = 1983794471] = "HorseCommandFollow";
|
|
253
|
+
KeyHash2[KeyHash2["HorseCommandStay"] = 2925395437] = "HorseCommandStay";
|
|
254
|
+
KeyHash2[KeyHash2["HorseCoverTransition"] = 697752853] = "HorseCoverTransition";
|
|
255
|
+
KeyHash2[KeyHash2["HorseExit"] = 3420160680] = "HorseExit";
|
|
256
|
+
KeyHash2[KeyHash2["HorseGunLr"] = 1033498310] = "HorseGunLr";
|
|
257
|
+
KeyHash2[KeyHash2["HorseGunUd"] = 3220469497] = "HorseGunUd";
|
|
258
|
+
KeyHash2[KeyHash2["HorseJump"] = 3839020573] = "HorseJump";
|
|
259
|
+
KeyHash2[KeyHash2["HorseLookBehind"] = 2166883689] = "HorseLookBehind";
|
|
260
|
+
KeyHash2[KeyHash2["HorseMelee"] = 440314811] = "HorseMelee";
|
|
261
|
+
KeyHash2[KeyHash2["HorseMoveDownOnly"] = 1459101765] = "HorseMoveDownOnly";
|
|
262
|
+
KeyHash2[KeyHash2["HorseMoveLeftOnly"] = 2262266870] = "HorseMoveLeftOnly";
|
|
263
|
+
KeyHash2[KeyHash2["HorseMoveLr"] = 308778731] = "HorseMoveLr";
|
|
264
|
+
KeyHash2[KeyHash2["HorseMoveRightOnly"] = 2120975890] = "HorseMoveRightOnly";
|
|
265
|
+
KeyHash2[KeyHash2["HorseMoveUd"] = 1002303471] = "HorseMoveUd";
|
|
266
|
+
KeyHash2[KeyHash2["HorseMoveUpOnly"] = 1771341755] = "HorseMoveUpOnly";
|
|
267
|
+
KeyHash2[KeyHash2["HorseSpecial"] = 1879610457] = "HorseSpecial";
|
|
268
|
+
KeyHash2[KeyHash2["HorseSprint"] = 1520437207] = "HorseSprint";
|
|
269
|
+
KeyHash2[KeyHash2["HorseStop"] = 3781925549] = "HorseStop";
|
|
270
|
+
KeyHash2[KeyHash2["HudSpecial"] = 1477198963] = "HudSpecial";
|
|
271
|
+
KeyHash2[KeyHash2["IconStackLayoutDefault"] = 1308371794] = "IconStackLayoutDefault";
|
|
272
|
+
KeyHash2[KeyHash2["IconStackLayoutWithInfoIcon"] = 547403334] = "IconStackLayoutWithInfoIcon";
|
|
273
|
+
KeyHash2[KeyHash2["Ignite"] = 3344705456] = "Ignite";
|
|
274
|
+
KeyHash2[KeyHash2["Inspect"] = 2786969136] = "Inspect";
|
|
275
|
+
KeyHash2[KeyHash2["InspectLr"] = 394838659] = "InspectLr";
|
|
276
|
+
KeyHash2[KeyHash2["InspectOpenSatchel"] = 2602346714] = "InspectOpenSatchel";
|
|
277
|
+
KeyHash2[KeyHash2["InspectUd"] = 4185397655] = "InspectUd";
|
|
278
|
+
KeyHash2[KeyHash2["InspectZoom"] = 1395223413] = "InspectZoom";
|
|
279
|
+
KeyHash2[KeyHash2["InteractAnimal"] = 2712385875] = "InteractAnimal";
|
|
280
|
+
KeyHash2[KeyHash2["InteractHitCarriable"] = 86159939] = "InteractHitCarriable";
|
|
281
|
+
KeyHash2[KeyHash2["InteractHorseBrush"] = 1671663404] = "InteractHorseBrush";
|
|
282
|
+
KeyHash2[KeyHash2["InteractHorseCare"] = 2965169622] = "InteractHorseCare";
|
|
283
|
+
KeyHash2[KeyHash2["InteractHorseFeed"] = 223715568] = "InteractHorseFeed";
|
|
284
|
+
KeyHash2[KeyHash2["InteractLeadAnimal"] = 399753205] = "InteractLeadAnimal";
|
|
285
|
+
KeyHash2[KeyHash2["InteractLockon"] = 4170723072] = "InteractLockon";
|
|
286
|
+
KeyHash2[KeyHash2["InteractLockonA"] = 3507108406] = "InteractLockonA";
|
|
287
|
+
KeyHash2[KeyHash2["InteractLockonAnimal"] = 1410711112] = "InteractLockonAnimal";
|
|
288
|
+
KeyHash2[KeyHash2["InteractLockonCallAnimal"] = 1912118204] = "InteractLockonCallAnimal";
|
|
289
|
+
KeyHash2[KeyHash2["InteractLockonDetachHorse"] = 4123291675] = "InteractLockonDetachHorse";
|
|
290
|
+
KeyHash2[KeyHash2["InteractLockonNeg"] = 648122183] = "InteractLockonNeg";
|
|
291
|
+
KeyHash2[KeyHash2["InteractLockonPos"] = 4131002361] = "InteractLockonPos";
|
|
292
|
+
KeyHash2[KeyHash2["InteractLockonRob"] = 2678435079] = "InteractLockonRob";
|
|
293
|
+
KeyHash2[KeyHash2["InteractLockonStudyBinoculars"] = 3019081916] = "InteractLockonStudyBinoculars";
|
|
294
|
+
KeyHash2[KeyHash2["InteractLockonTargetInfo"] = 824284304] = "InteractLockonTargetInfo";
|
|
295
|
+
KeyHash2[KeyHash2["InteractLockonTrackAnimal"] = 3796319216] = "InteractLockonTrackAnimal";
|
|
296
|
+
KeyHash2[KeyHash2["InteractLockonY"] = 162081675] = "InteractLockonY";
|
|
297
|
+
KeyHash2[KeyHash2["InteractNeg"] = 1112265426] = "InteractNeg";
|
|
298
|
+
KeyHash2[KeyHash2["InteractOption1"] = 1980406895] = "InteractOption1";
|
|
299
|
+
KeyHash2[KeyHash2["InteractOption2"] = 2220112130] = "InteractOption2";
|
|
300
|
+
KeyHash2[KeyHash2["InteractPos"] = 4139479928] = "InteractPos";
|
|
301
|
+
KeyHash2[KeyHash2["InteractWildAnimal"] = 2314457824] = "InteractWildAnimal";
|
|
302
|
+
KeyHash2[KeyHash2["InteractionMenu"] = 3427864153] = "InteractionMenu";
|
|
303
|
+
KeyHash2[KeyHash2["InterrogateBeat"] = 1847463266] = "InterrogateBeat";
|
|
304
|
+
KeyHash2[KeyHash2["InterrogateKill"] = 2175984401] = "InterrogateKill";
|
|
305
|
+
KeyHash2[KeyHash2["InterrogateQuestion"] = 2712284557] = "InterrogateQuestion";
|
|
306
|
+
KeyHash2[KeyHash2["InterrogateRelease"] = 1008922382] = "InterrogateRelease";
|
|
307
|
+
KeyHash2[KeyHash2["IronSight"] = 2215788713] = "IronSight";
|
|
308
|
+
KeyHash2[KeyHash2["Jump"] = 3654345152] = "Jump";
|
|
309
|
+
KeyHash2[KeyHash2["LookBehind"] = 2572789488] = "LookBehind";
|
|
310
|
+
KeyHash2[KeyHash2["LookDownOnly"] = 2396597782] = "LookDownOnly";
|
|
311
|
+
KeyHash2[KeyHash2["LookLeftOnly"] = 150518893] = "LookLeftOnly";
|
|
312
|
+
KeyHash2[KeyHash2["LookLr"] = 2844205919] = "LookLr";
|
|
313
|
+
KeyHash2[KeyHash2["LookRightOnly"] = 2716537683] = "LookRightOnly";
|
|
314
|
+
KeyHash2[KeyHash2["LookUd"] = 3523508616] = "LookUd";
|
|
315
|
+
KeyHash2[KeyHash2["LookUpOnly"] = 3227852096] = "LookUpOnly";
|
|
316
|
+
KeyHash2[KeyHash2["Loot"] = 1101824977] = "Loot";
|
|
317
|
+
KeyHash2[KeyHash2["LootAliveComponent"] = 4286646744] = "LootAliveComponent";
|
|
318
|
+
KeyHash2[KeyHash2["LootAmmo"] = 3258809246] = "LootAmmo";
|
|
319
|
+
KeyHash2[KeyHash2["LootVehicle"] = 349924446] = "LootVehicle";
|
|
320
|
+
KeyHash2[KeyHash2["Loot2"] = 966551065] = "Loot2";
|
|
321
|
+
KeyHash2[KeyHash2["Loot3"] = 668058244] = "Loot3";
|
|
322
|
+
KeyHash2[KeyHash2["Map"] = 3810290241] = "Map";
|
|
323
|
+
KeyHash2[KeyHash2["MapPoi"] = 2616103443] = "MapPoi";
|
|
324
|
+
KeyHash2[KeyHash2["MeleeAttack"] = 3002300392] = "MeleeAttack";
|
|
325
|
+
KeyHash2[KeyHash2["MeleeBlock"] = 3052335031] = "MeleeBlock";
|
|
326
|
+
KeyHash2[KeyHash2["MeleeGrapple"] = 578288361] = "MeleeGrapple";
|
|
327
|
+
KeyHash2[KeyHash2["MeleeGrappleAttack"] = 2917856396] = "MeleeGrappleAttack";
|
|
328
|
+
KeyHash2[KeyHash2["MeleeGrappleBreakout"] = 3502374655] = "MeleeGrappleBreakout";
|
|
329
|
+
KeyHash2[KeyHash2["MeleeGrappleChoke"] = 25970639] = "MeleeGrappleChoke";
|
|
330
|
+
KeyHash2[KeyHash2["MeleeGrappleMountSwitch"] = 1743595310] = "MeleeGrappleMountSwitch";
|
|
331
|
+
KeyHash2[KeyHash2["MeleeGrappleReversal"] = 2445912087] = "MeleeGrappleReversal";
|
|
332
|
+
KeyHash2[KeyHash2["MeleeGrappleStandSwitch"] = 3189720729] = "MeleeGrappleStandSwitch";
|
|
333
|
+
KeyHash2[KeyHash2["MeleeHorseAttackPrimary"] = 2028806450] = "MeleeHorseAttackPrimary";
|
|
334
|
+
KeyHash2[KeyHash2["MeleeHorseAttackSecondary"] = 371916472] = "MeleeHorseAttackSecondary";
|
|
335
|
+
KeyHash2[KeyHash2["MeleeModifier"] = 511537781] = "MeleeModifier";
|
|
336
|
+
KeyHash2[KeyHash2["MercyKill"] = 2506893838] = "MercyKill";
|
|
337
|
+
KeyHash2[KeyHash2["MinigameActionDown"] = 4127309052] = "MinigameActionDown";
|
|
338
|
+
KeyHash2[KeyHash2["MinigameActionLeft"] = 169802761] = "MinigameActionLeft";
|
|
339
|
+
KeyHash2[KeyHash2["MinigameActionRight"] = 383189881] = "MinigameActionRight";
|
|
340
|
+
KeyHash2[KeyHash2["MinigameActionUp"] = 4120984077] = "MinigameActionUp";
|
|
341
|
+
KeyHash2[KeyHash2["MinigameActionX"] = 496139762] = "MinigameActionX";
|
|
342
|
+
KeyHash2[KeyHash2["MinigameBartenderPour"] = 3401327712] = "MinigameBartenderPour";
|
|
343
|
+
KeyHash2[KeyHash2["MinigameBartenderRaiseBottle"] = 4037169426] = "MinigameBartenderRaiseBottle";
|
|
344
|
+
KeyHash2[KeyHash2["MinigameBartenderRaiseGlass"] = 2704564469] = "MinigameBartenderRaiseGlass";
|
|
345
|
+
KeyHash2[KeyHash2["MinigameBartenderServe"] = 3691229251] = "MinigameBartenderServe";
|
|
346
|
+
KeyHash2[KeyHash2["MinigameBlackjackBet"] = 1713211953] = "MinigameBlackjackBet";
|
|
347
|
+
KeyHash2[KeyHash2["MinigameBlackjackBetAxisY"] = 1026465938] = "MinigameBlackjackBetAxisY";
|
|
348
|
+
KeyHash2[KeyHash2["MinigameBlackjackDecline"] = 3447578523] = "MinigameBlackjackDecline";
|
|
349
|
+
KeyHash2[KeyHash2["MinigameBlackjackDouble"] = 1950903460] = "MinigameBlackjackDouble";
|
|
350
|
+
KeyHash2[KeyHash2["MinigameBlackjackHandView"] = 66185163] = "MinigameBlackjackHandView";
|
|
351
|
+
KeyHash2[KeyHash2["MinigameBlackjackHit"] = 2819893011] = "MinigameBlackjackHit";
|
|
352
|
+
KeyHash2[KeyHash2["MinigameBlackjackSplit"] = 1126895903] = "MinigameBlackjackSplit";
|
|
353
|
+
KeyHash2[KeyHash2["MinigameBlackjackStand"] = 824575239] = "MinigameBlackjackStand";
|
|
354
|
+
KeyHash2[KeyHash2["MinigameBlackjackTableView"] = 2917176373] = "MinigameBlackjackTableView";
|
|
355
|
+
KeyHash2[KeyHash2["MinigameBuildingCameraNext"] = 380694264] = "MinigameBuildingCameraNext";
|
|
356
|
+
KeyHash2[KeyHash2["MinigameBuildingCameraPrev"] = 1603777073] = "MinigameBuildingCameraPrev";
|
|
357
|
+
KeyHash2[KeyHash2["MinigameBuildingHammer"] = 4203851469] = "MinigameBuildingHammer";
|
|
358
|
+
KeyHash2[KeyHash2["MinigameChangeBetAxisY"] = 3183948782] = "MinigameChangeBetAxisY";
|
|
359
|
+
KeyHash2[KeyHash2["MinigameClearBet"] = 1243727467] = "MinigameClearBet";
|
|
360
|
+
KeyHash2[KeyHash2["MinigameCrackpotBoatShowControls"] = 1380726663] = "MinigameCrackpotBoatShowControls";
|
|
361
|
+
KeyHash2[KeyHash2["MinigameCrapsAcceptDice"] = 1517387392] = "MinigameCrapsAcceptDice";
|
|
362
|
+
KeyHash2[KeyHash2["MinigameCrapsSkip"] = 864590660] = "MinigameCrapsSkip";
|
|
363
|
+
KeyHash2[KeyHash2["MinigameCrapsThrowDice"] = 1698663412] = "MinigameCrapsThrowDice";
|
|
364
|
+
KeyHash2[KeyHash2["MinigameDanceNext"] = 1072537860] = "MinigameDanceNext";
|
|
365
|
+
KeyHash2[KeyHash2["MinigameDancePrev"] = 3906459441] = "MinigameDancePrev";
|
|
366
|
+
KeyHash2[KeyHash2["MinigameDecreaseBet"] = 3555456037] = "MinigameDecreaseBet";
|
|
367
|
+
KeyHash2[KeyHash2["MinigameDominoesDrawTile"] = 1064813367] = "MinigameDominoesDrawTile";
|
|
368
|
+
KeyHash2[KeyHash2["MinigameDominoesMoveDownOnly"] = 4255107181] = "MinigameDominoesMoveDownOnly";
|
|
369
|
+
KeyHash2[KeyHash2["MinigameDominoesMoveLeftOnly"] = 4259154388] = "MinigameDominoesMoveLeftOnly";
|
|
370
|
+
KeyHash2[KeyHash2["MinigameDominoesMoveRightOnly"] = 2102495177] = "MinigameDominoesMoveRightOnly";
|
|
371
|
+
KeyHash2[KeyHash2["MinigameDominoesMoveUpOnly"] = 3333131443] = "MinigameDominoesMoveUpOnly";
|
|
372
|
+
KeyHash2[KeyHash2["MinigameDominoesPlayAgain"] = 1729872669] = "MinigameDominoesPlayAgain";
|
|
373
|
+
KeyHash2[KeyHash2["MinigameDominoesPlayTile"] = 2515909500] = "MinigameDominoesPlayTile";
|
|
374
|
+
KeyHash2[KeyHash2["MinigameDominoesSkipDeal"] = 3320193751] = "MinigameDominoesSkipDeal";
|
|
375
|
+
KeyHash2[KeyHash2["MinigameDominoesViewDominoes"] = 2298001073] = "MinigameDominoesViewDominoes";
|
|
376
|
+
KeyHash2[KeyHash2["MinigameDominoesViewMoves"] = 1999884076] = "MinigameDominoesViewMoves";
|
|
377
|
+
KeyHash2[KeyHash2["MinigameFffA"] = 242318790] = "MinigameFffA";
|
|
378
|
+
KeyHash2[KeyHash2["MinigameFffB"] = 466098291] = "MinigameFffB";
|
|
379
|
+
KeyHash2[KeyHash2["MinigameFffCycleSequenceLeft"] = 698569998] = "MinigameFffCycleSequenceLeft";
|
|
380
|
+
KeyHash2[KeyHash2["MinigameFffCycleSequenceRight"] = 2069596525] = "MinigameFffCycleSequenceRight";
|
|
381
|
+
KeyHash2[KeyHash2["MinigameFffFlourishContinue"] = 1875500648] = "MinigameFffFlourishContinue";
|
|
382
|
+
KeyHash2[KeyHash2["MinigameFffFlourishEnd"] = 4151642917] = "MinigameFffFlourishEnd";
|
|
383
|
+
KeyHash2[KeyHash2["MinigameFffPractice"] = 3392642946] = "MinigameFffPractice";
|
|
384
|
+
KeyHash2[KeyHash2["MinigameFffSkipTurn"] = 812869659] = "MinigameFffSkipTurn";
|
|
385
|
+
KeyHash2[KeyHash2["MinigameFffX"] = 1710271711] = "MinigameFffX";
|
|
386
|
+
KeyHash2[KeyHash2["MinigameFffY"] = 1940736088] = "MinigameFffY";
|
|
387
|
+
KeyHash2[KeyHash2["MinigameFffZoom"] = 1642384076] = "MinigameFffZoom";
|
|
388
|
+
KeyHash2[KeyHash2["MinigameFishingHook"] = 2714570810] = "MinigameFishingHook";
|
|
389
|
+
KeyHash2[KeyHash2["MinigameFishingKeepFish"] = 1388692298] = "MinigameFishingKeepFish";
|
|
390
|
+
KeyHash2[KeyHash2["MinigameFishingLeanLeft"] = 223099578] = "MinigameFishingLeanLeft";
|
|
391
|
+
KeyHash2[KeyHash2["MinigameFishingLeanRight"] = 84363931] = "MinigameFishingLeanRight";
|
|
392
|
+
KeyHash2[KeyHash2["MinigameFishingLeftAxisX"] = 1773209123] = "MinigameFishingLeftAxisX";
|
|
393
|
+
KeyHash2[KeyHash2["MinigameFishingLeftAxisY"] = 163530309] = "MinigameFishingLeftAxisY";
|
|
394
|
+
KeyHash2[KeyHash2["MinigameFishingManualReelIn"] = 2734945378] = "MinigameFishingManualReelIn";
|
|
395
|
+
KeyHash2[KeyHash2["MinigameFishingManualReelOutModifer"] = 867346636] = "MinigameFishingManualReelOutModifer";
|
|
396
|
+
KeyHash2[KeyHash2["MinigameFishingQuickEquip"] = 636822989] = "MinigameFishingQuickEquip";
|
|
397
|
+
KeyHash2[KeyHash2["MinigameFishingReelSpeedAxis"] = 1237793970] = "MinigameFishingReelSpeedAxis";
|
|
398
|
+
KeyHash2[KeyHash2["MinigameFishingReelSpeedDown"] = 3618592416] = "MinigameFishingReelSpeedDown";
|
|
399
|
+
KeyHash2[KeyHash2["MinigameFishingReelSpeedUp"] = 799610357] = "MinigameFishingReelSpeedUp";
|
|
400
|
+
KeyHash2[KeyHash2["MinigameFishingReleaseFish"] = 4048540725] = "MinigameFishingReleaseFish";
|
|
401
|
+
KeyHash2[KeyHash2["MinigameFishingResetCast"] = 3020594139] = "MinigameFishingResetCast";
|
|
402
|
+
KeyHash2[KeyHash2["MinigameFishingRightAxisX"] = 1339352408] = "MinigameFishingRightAxisX";
|
|
403
|
+
KeyHash2[KeyHash2["MinigameFishingRightAxisY"] = 2515726739] = "MinigameFishingRightAxisY";
|
|
404
|
+
KeyHash2[KeyHash2["MinigameHelp"] = 2474959016] = "MinigameHelp";
|
|
405
|
+
KeyHash2[KeyHash2["MinigameHelpNext"] = 2204142272] = "MinigameHelpNext";
|
|
406
|
+
KeyHash2[KeyHash2["MinigameHelpPrev"] = 3321180502] = "MinigameHelpPrev";
|
|
407
|
+
KeyHash2[KeyHash2["MinigameIncreaseBet"] = 3352005983] = "MinigameIncreaseBet";
|
|
408
|
+
KeyHash2[KeyHash2["MinigameLeftTrigger"] = 2126722387] = "MinigameLeftTrigger";
|
|
409
|
+
KeyHash2[KeyHash2["MinigameMilkingLeftAction"] = 4283116250] = "MinigameMilkingLeftAction";
|
|
410
|
+
KeyHash2[KeyHash2["MinigameMilkingRightAction"] = 817790194] = "MinigameMilkingRightAction";
|
|
411
|
+
KeyHash2[KeyHash2["MinigameNewGame"] = 1561823487] = "MinigameNewGame";
|
|
412
|
+
KeyHash2[KeyHash2["MinigamePlaceBet"] = 1091242798] = "MinigamePlaceBet";
|
|
413
|
+
KeyHash2[KeyHash2["MinigamePokerBet"] = 2844275561] = "MinigamePokerBet";
|
|
414
|
+
KeyHash2[KeyHash2["MinigamePokerBoardCards"] = 58012824] = "MinigamePokerBoardCards";
|
|
415
|
+
KeyHash2[KeyHash2["MinigamePokerCall"] = 3669618290] = "MinigamePokerCall";
|
|
416
|
+
KeyHash2[KeyHash2["MinigamePokerCheatLr"] = 590411031] = "MinigamePokerCheatLr";
|
|
417
|
+
KeyHash2[KeyHash2["MinigamePokerCheck"] = 543891591] = "MinigamePokerCheck";
|
|
418
|
+
KeyHash2[KeyHash2["MinigamePokerCheckFold"] = 1923731959] = "MinigamePokerCheckFold";
|
|
419
|
+
KeyHash2[KeyHash2["MinigamePokerCommunityCards"] = 3825383576] = "MinigamePokerCommunityCards";
|
|
420
|
+
KeyHash2[KeyHash2["MinigamePokerFold"] = 1236577566] = "MinigamePokerFold";
|
|
421
|
+
KeyHash2[KeyHash2["MinigamePokerHoleCards"] = 3266386234] = "MinigamePokerHoleCards";
|
|
422
|
+
KeyHash2[KeyHash2["MinigamePokerShowPossibleHands"] = 2003155412] = "MinigamePokerShowPossibleHands";
|
|
423
|
+
KeyHash2[KeyHash2["MinigamePokerSkip"] = 1684699026] = "MinigamePokerSkip";
|
|
424
|
+
KeyHash2[KeyHash2["MinigamePokerSkipTutorial"] = 3043540176] = "MinigamePokerSkipTutorial";
|
|
425
|
+
KeyHash2[KeyHash2["MinigamePokerYourCards"] = 4179866423] = "MinigamePokerYourCards";
|
|
426
|
+
KeyHash2[KeyHash2["MinigameQuit"] = 3909700512] = "MinigameQuit";
|
|
427
|
+
KeyHash2[KeyHash2["MinigameReplay"] = 2555528119] = "MinigameReplay";
|
|
428
|
+
KeyHash2[KeyHash2["MinigameRightTrigger"] = 3195582229] = "MinigameRightTrigger";
|
|
429
|
+
KeyHash2[KeyHash2["MoveDownOnly"] = 3531047651] = "MoveDownOnly";
|
|
430
|
+
KeyHash2[KeyHash2["MoveLeft"] = 1885667965] = "MoveLeft";
|
|
431
|
+
KeyHash2[KeyHash2["MoveRight"] = 1301263553] = "MoveRight";
|
|
432
|
+
KeyHash2[KeyHash2["MoveRightOnly"] = 3034867124] = "MoveRightOnly";
|
|
433
|
+
KeyHash2[KeyHash2["MoveBackwards"] = 4255658384] = "MoveBackwards";
|
|
434
|
+
KeyHash2[KeyHash2["MoveForward"] = 2412778968] = "MoveForward";
|
|
435
|
+
KeyHash2[KeyHash2["MpTextChatAll"] = 2535521518] = "MpTextChatAll";
|
|
436
|
+
KeyHash2[KeyHash2["MpTextChatCrew"] = 2168650386] = "MpTextChatCrew";
|
|
437
|
+
KeyHash2[KeyHash2["MpTextChatFriends"] = 1889053811] = "MpTextChatFriends";
|
|
438
|
+
KeyHash2[KeyHash2["MpTextChatTeam"] = 2425925021] = "MpTextChatTeam";
|
|
439
|
+
KeyHash2[KeyHash2["MultiplayerDeadDuel"] = 4168481912] = "MultiplayerDeadDuel";
|
|
440
|
+
KeyHash2[KeyHash2["MultiplayerDeadFeud"] = 3030454374] = "MultiplayerDeadFeud";
|
|
441
|
+
KeyHash2[KeyHash2["MultiplayerDeadInformLaw"] = 1746314126] = "MultiplayerDeadInformLaw";
|
|
442
|
+
KeyHash2[KeyHash2["MultiplayerDeadLeaderFeud"] = 3424188768] = "MultiplayerDeadLeaderFeud";
|
|
443
|
+
KeyHash2[KeyHash2["MultiplayerDeadParley"] = 1293024769] = "MultiplayerDeadParley";
|
|
444
|
+
KeyHash2[KeyHash2["MultiplayerDeadPressCharges"] = 3842886163] = "MultiplayerDeadPressCharges";
|
|
445
|
+
KeyHash2[KeyHash2["MultiplayerDeadRespawn"] = 412644179] = "MultiplayerDeadRespawn";
|
|
446
|
+
KeyHash2[KeyHash2["MultiplayerDeadSwitchRespawn"] = 3035797690] = "MultiplayerDeadSwitchRespawn";
|
|
447
|
+
KeyHash2[KeyHash2["MultiplayerInfo"] = 3895734258] = "MultiplayerInfo";
|
|
448
|
+
KeyHash2[KeyHash2["MultiplayerInfoPlayers"] = 2624114228] = "MultiplayerInfoPlayers";
|
|
449
|
+
KeyHash2[KeyHash2["MultiplayerLeaderboardScrollUd"] = 2836910667] = "MultiplayerLeaderboardScrollUd";
|
|
450
|
+
KeyHash2[KeyHash2["MultiplayerPredatorAbility"] = 3318694322] = "MultiplayerPredatorAbility";
|
|
451
|
+
KeyHash2[KeyHash2["MultiplayerRaceRespawn"] = 21798980] = "MultiplayerRaceRespawn";
|
|
452
|
+
KeyHash2[KeyHash2["MultiplayerSpectateHideHud"] = 2109365577] = "MultiplayerSpectateHideHud";
|
|
453
|
+
KeyHash2[KeyHash2["MultiplayerSpectatePlayerNext"] = 3120977554] = "MultiplayerSpectatePlayerNext";
|
|
454
|
+
KeyHash2[KeyHash2["MultiplayerSpectatePlayerOptions"] = 1309101798] = "MultiplayerSpectatePlayerOptions";
|
|
455
|
+
KeyHash2[KeyHash2["MultiplayerSpectatePlayerPrev"] = 1351794503] = "MultiplayerSpectatePlayerPrev";
|
|
456
|
+
KeyHash2[KeyHash2["NavDirectionNext"] = 2150849757] = "NavDirectionNext";
|
|
457
|
+
KeyHash2[KeyHash2["NavDirectionPrevious"] = 967525350] = "NavDirectionPrevious";
|
|
458
|
+
KeyHash2[KeyHash2["NavStyleHorizontal"] = 4121151387] = "NavStyleHorizontal";
|
|
459
|
+
KeyHash2[KeyHash2["NavStylePagePrimary"] = 2549677816] = "NavStylePagePrimary";
|
|
460
|
+
KeyHash2[KeyHash2["NavStyleRadial"] = 1778093002] = "NavStyleRadial";
|
|
461
|
+
KeyHash2[KeyHash2["NavStyleVertical"] = 531394687] = "NavStyleVertical";
|
|
462
|
+
KeyHash2[KeyHash2["NextCamera"] = 2139949496] = "NextCamera";
|
|
463
|
+
KeyHash2[KeyHash2["NextWeapon"] = 4245621804] = "NextWeapon";
|
|
464
|
+
KeyHash2[KeyHash2["OpenCraftingMenu"] = 1934388793] = "OpenCraftingMenu";
|
|
465
|
+
KeyHash2[KeyHash2["OpenEmoteWheel"] = 3803535267] = "OpenEmoteWheel";
|
|
466
|
+
KeyHash2[KeyHash2["OpenEmoteWheelHorse"] = 2336204382] = "OpenEmoteWheelHorse";
|
|
467
|
+
KeyHash2[KeyHash2["OpenJournal"] = 4085452174] = "OpenJournal";
|
|
468
|
+
KeyHash2[KeyHash2["OpenSatchelHorseMenu"] = 1499911466] = "OpenSatchelHorseMenu";
|
|
469
|
+
KeyHash2[KeyHash2["OpenSatchelMenu"] = 1287709438] = "OpenSatchelMenu";
|
|
470
|
+
KeyHash2[KeyHash2["OpenWheelMenu"] = 2890650865] = "OpenWheelMenu";
|
|
471
|
+
KeyHash2[KeyHash2["ParachuteBrakeLeft"] = 657184954] = "ParachuteBrakeLeft";
|
|
472
|
+
KeyHash2[KeyHash2["ParachuteBrakeRight"] = 2492153511] = "ParachuteBrakeRight";
|
|
473
|
+
KeyHash2[KeyHash2["ParachuteDeploy"] = 3958714456] = "ParachuteDeploy";
|
|
474
|
+
KeyHash2[KeyHash2["ParachuteDetach"] = 4290769209] = "ParachuteDetach";
|
|
475
|
+
KeyHash2[KeyHash2["ParachutePitchDownOnly"] = 2084193106] = "ParachutePitchDownOnly";
|
|
476
|
+
KeyHash2[KeyHash2["ParachutePitchUd"] = 4031930920] = "ParachutePitchUd";
|
|
477
|
+
KeyHash2[KeyHash2["ParachutePitchUpOnly"] = 146795113] = "ParachutePitchUpOnly";
|
|
478
|
+
KeyHash2[KeyHash2["ParachutePrecisionLanding"] = 3329603773] = "ParachutePrecisionLanding";
|
|
479
|
+
KeyHash2[KeyHash2["ParachuteSmoke"] = 628423344] = "ParachuteSmoke";
|
|
480
|
+
KeyHash2[KeyHash2["ParachuteTurnLeftOnly"] = 3301913378] = "ParachuteTurnLeftOnly";
|
|
481
|
+
KeyHash2[KeyHash2["ParachuteTurnLr"] = 2395545791] = "ParachuteTurnLr";
|
|
482
|
+
KeyHash2[KeyHash2["ParachuteTurnRightOnly"] = 735814520] = "ParachuteTurnRightOnly";
|
|
483
|
+
KeyHash2[KeyHash2["PcFreeLook"] = 2326399700] = "PcFreeLook";
|
|
484
|
+
KeyHash2[KeyHash2["Phone"] = 1291350480] = "Phone";
|
|
485
|
+
KeyHash2[KeyHash2["PhotoMode"] = 1007304946] = "PhotoMode";
|
|
486
|
+
KeyHash2[KeyHash2["PhotoModeBack"] = 789834906] = "PhotoModeBack";
|
|
487
|
+
KeyHash2[KeyHash2["PhotoModeChangeCamera"] = 2668016284] = "PhotoModeChangeCamera";
|
|
488
|
+
KeyHash2[KeyHash2["PhotoModeContrast"] = 1212117119] = "PhotoModeContrast";
|
|
489
|
+
KeyHash2[KeyHash2["PhotoModeContrastDownOnly"] = 813766176] = "PhotoModeContrastDownOnly";
|
|
490
|
+
KeyHash2[KeyHash2["PhotoModeContrastUpOnly"] = 1563285271] = "PhotoModeContrastUpOnly";
|
|
491
|
+
KeyHash2[KeyHash2["PhotoModeDof"] = 649703018] = "PhotoModeDof";
|
|
492
|
+
KeyHash2[KeyHash2["PhotoModeDofDownOnly"] = 74488305] = "PhotoModeDofDownOnly";
|
|
493
|
+
KeyHash2[KeyHash2["PhotoModeDofUpOnly"] = 2276489536] = "PhotoModeDofUpOnly";
|
|
494
|
+
KeyHash2[KeyHash2["PhotoModeExposureDown"] = 2902959525] = "PhotoModeExposureDown";
|
|
495
|
+
KeyHash2[KeyHash2["PhotoModeExposureLock"] = 2648739185] = "PhotoModeExposureLock";
|
|
496
|
+
KeyHash2[KeyHash2["PhotoModeExposureUp"] = 3327009412] = "PhotoModeExposureUp";
|
|
497
|
+
KeyHash2[KeyHash2["PhotoModeFilterIntensity"] = 4268610400] = "PhotoModeFilterIntensity";
|
|
498
|
+
KeyHash2[KeyHash2["PhotoModeFilterIntensityDown"] = 3007443975] = "PhotoModeFilterIntensityDown";
|
|
499
|
+
KeyHash2[KeyHash2["PhotoModeFilterIntensityUp"] = 579261547] = "PhotoModeFilterIntensityUp";
|
|
500
|
+
KeyHash2[KeyHash2["PhotoModeFilterNext"] = 1772064008] = "PhotoModeFilterNext";
|
|
501
|
+
KeyHash2[KeyHash2["PhotoModeFilterPrev"] = 1331955845] = "PhotoModeFilterPrev";
|
|
502
|
+
KeyHash2[KeyHash2["PhotoModeFocalLength"] = 2288695886] = "PhotoModeFocalLength";
|
|
503
|
+
KeyHash2[KeyHash2["PhotoModeFocalLengthDownOnly"] = 32242365] = "PhotoModeFocalLengthDownOnly";
|
|
504
|
+
KeyHash2[KeyHash2["PhotoModeFocalLengthUpOnly"] = 4210808426] = "PhotoModeFocalLengthUpOnly";
|
|
505
|
+
KeyHash2[KeyHash2["PhotoModeLenseNext"] = 2973292697] = "PhotoModeLenseNext";
|
|
506
|
+
KeyHash2[KeyHash2["PhotoModeLensePrev"] = 111171576] = "PhotoModeLensePrev";
|
|
507
|
+
KeyHash2[KeyHash2["PhotoModeMoveDownOnly"] = 1320993801] = "PhotoModeMoveDownOnly";
|
|
508
|
+
KeyHash2[KeyHash2["PhotoModeMoveLeftOnly"] = 823350251] = "PhotoModeMoveLeftOnly";
|
|
509
|
+
KeyHash2[KeyHash2["PhotoModeMoveLr"] = 1326671122] = "PhotoModeMoveLr";
|
|
510
|
+
KeyHash2[KeyHash2["PhotoModeMoveRightOnly"] = 1398253557] = "PhotoModeMoveRightOnly";
|
|
511
|
+
KeyHash2[KeyHash2["PhotoModeMoveUd"] = 3959427861] = "PhotoModeMoveUd";
|
|
512
|
+
KeyHash2[KeyHash2["PhotoModeMoveUpOnly"] = 828200934] = "PhotoModeMoveUpOnly";
|
|
513
|
+
KeyHash2[KeyHash2["PhotoModePc"] = 898989932] = "PhotoModePc";
|
|
514
|
+
KeyHash2[KeyHash2["PhotoModeReset"] = 2718547287] = "PhotoModeReset";
|
|
515
|
+
KeyHash2[KeyHash2["PhotoModeRotateLeft"] = 787094826] = "PhotoModeRotateLeft";
|
|
516
|
+
KeyHash2[KeyHash2["PhotoModeRotateRight"] = 2531723348] = "PhotoModeRotateRight";
|
|
517
|
+
KeyHash2[KeyHash2["PhotoModeSwitchMode"] = 2402476779] = "PhotoModeSwitchMode";
|
|
518
|
+
KeyHash2[KeyHash2["PhotoModeTakePhoto"] = 2710612679] = "PhotoModeTakePhoto";
|
|
519
|
+
KeyHash2[KeyHash2["PhotoModeToggleHud"] = 2140165621] = "PhotoModeToggleHud";
|
|
520
|
+
KeyHash2[KeyHash2["PhotoModeViewPhotos"] = 3706285415] = "PhotoModeViewPhotos";
|
|
521
|
+
KeyHash2[KeyHash2["PhotoModeZoomIn"] = 1535392713] = "PhotoModeZoomIn";
|
|
522
|
+
KeyHash2[KeyHash2["PhotoModeZoomOut"] = 592761574] = "PhotoModeZoomOut";
|
|
523
|
+
KeyHash2[KeyHash2["Pickup"] = 3862301326] = "Pickup";
|
|
524
|
+
KeyHash2[KeyHash2["PickupCarriable"] = 3945448593] = "PickupCarriable";
|
|
525
|
+
KeyHash2[KeyHash2["PickupCarriableFromParent"] = 2703240315] = "PickupCarriableFromParent";
|
|
526
|
+
KeyHash2[KeyHash2["PickupCarriable2"] = 3196425135] = "PickupCarriable2";
|
|
527
|
+
KeyHash2[KeyHash2["PlaceCarriableOntoParent"] = 2100455761] = "PlaceCarriableOntoParent";
|
|
528
|
+
KeyHash2[KeyHash2["PlayerMenu"] = 2163379861] = "PlayerMenu";
|
|
529
|
+
KeyHash2[KeyHash2["PrevWeapon"] = 3423630759] = "PrevWeapon";
|
|
530
|
+
KeyHash2[KeyHash2["PromptPageNext"] = 2365131421] = "PromptPageNext";
|
|
531
|
+
KeyHash2[KeyHash2["PushToTalk"] = 1271519931] = "PushToTalk";
|
|
532
|
+
KeyHash2[KeyHash2["QuickEquipItem"] = 1618006066] = "QuickEquipItem";
|
|
533
|
+
KeyHash2[KeyHash2["QuickSelectInspect"] = 4036519667] = "QuickSelectInspect";
|
|
534
|
+
KeyHash2[KeyHash2["QuickSelectPutAwayRod"] = 624946185] = "QuickSelectPutAwayRod";
|
|
535
|
+
KeyHash2[KeyHash2["QuickSelectSecondaryNavNext"] = 4047641845] = "QuickSelectSecondaryNavNext";
|
|
536
|
+
KeyHash2[KeyHash2["QuickSelectSecondaryNavPrev"] = 3657035799] = "QuickSelectSecondaryNavPrev";
|
|
537
|
+
KeyHash2[KeyHash2["QuickSelectSetForSwap"] = 3562979407] = "QuickSelectSetForSwap";
|
|
538
|
+
KeyHash2[KeyHash2["QuickSelectToggleShortcutItem"] = 4195035597] = "QuickSelectToggleShortcutItem";
|
|
539
|
+
KeyHash2[KeyHash2["QuickShortcutAbilitiesMenu"] = 2630328740] = "QuickShortcutAbilitiesMenu";
|
|
540
|
+
KeyHash2[KeyHash2["QuickUseItem"] = 3248005013] = "QuickUseItem";
|
|
541
|
+
KeyHash2[KeyHash2["Quit"] = 2391852987] = "Quit";
|
|
542
|
+
KeyHash2[KeyHash2["RadialMenuNavLr"] = 956909788] = "RadialMenuNavLr";
|
|
543
|
+
KeyHash2[KeyHash2["RadialMenuNavUd"] = 3126854559] = "RadialMenuNavUd";
|
|
544
|
+
KeyHash2[KeyHash2["RadialMenuSlotNavNext"] = 3877603768] = "RadialMenuSlotNavNext";
|
|
545
|
+
KeyHash2[KeyHash2["RadialMenuSlotNavNextAlternate"] = 2657784664] = "RadialMenuSlotNavNextAlternate";
|
|
546
|
+
KeyHash2[KeyHash2["RadialMenuSlotNavPrev"] = 2480304703] = "RadialMenuSlotNavPrev";
|
|
547
|
+
KeyHash2[KeyHash2["RadialMenuSlotNavPrevAlternate"] = 3543869630] = "RadialMenuSlotNavPrevAlternate";
|
|
548
|
+
KeyHash2[KeyHash2["RadioWheelLr"] = 4193938376] = "RadioWheelLr";
|
|
549
|
+
KeyHash2[KeyHash2["RadioWheelUd"] = 348596509] = "RadioWheelUd";
|
|
550
|
+
KeyHash2[KeyHash2["RegularRadar"] = 1370126901] = "RegularRadar";
|
|
551
|
+
KeyHash2[KeyHash2["Reload"] = 3809269511] = "Reload";
|
|
552
|
+
KeyHash2[KeyHash2["ReplayActionReplayCancel"] = 2474077358] = "ReplayActionReplayCancel";
|
|
553
|
+
KeyHash2[KeyHash2["ReplayActionReplayStart"] = 3650490631] = "ReplayActionReplayStart";
|
|
554
|
+
KeyHash2[KeyHash2["ReplayAdvance"] = 842703952] = "ReplayAdvance";
|
|
555
|
+
KeyHash2[KeyHash2["ReplayBack"] = 143424724] = "ReplayBack";
|
|
556
|
+
KeyHash2[KeyHash2["ReplayCameradown"] = 2717818410] = "ReplayCameradown";
|
|
557
|
+
KeyHash2[KeyHash2["ReplayCameraup"] = 1956577036] = "ReplayCameraup";
|
|
558
|
+
KeyHash2[KeyHash2["ReplayClipDelete"] = 4134751810] = "ReplayClipDelete";
|
|
559
|
+
KeyHash2[KeyHash2["ReplayCtrl"] = 3633006567] = "ReplayCtrl";
|
|
560
|
+
KeyHash2[KeyHash2["ReplayCyclemarkerleft"] = 1545734489] = "ReplayCyclemarkerleft";
|
|
561
|
+
KeyHash2[KeyHash2["ReplayCyclemarkerright"] = 3332040601] = "ReplayCyclemarkerright";
|
|
562
|
+
KeyHash2[KeyHash2["ReplayEndpoint"] = 1324833725] = "ReplayEndpoint";
|
|
563
|
+
KeyHash2[KeyHash2["ReplayFfwd"] = 1620715496] = "ReplayFfwd";
|
|
564
|
+
KeyHash2[KeyHash2["ReplayFovdecrease"] = 730388225] = "ReplayFovdecrease";
|
|
565
|
+
KeyHash2[KeyHash2["ReplayFovincrease"] = 1495638285] = "ReplayFovincrease";
|
|
566
|
+
KeyHash2[KeyHash2["ReplayHidehud"] = 2118622331] = "ReplayHidehud";
|
|
567
|
+
KeyHash2[KeyHash2["ReplayMarkerDelete"] = 3352479003] = "ReplayMarkerDelete";
|
|
568
|
+
KeyHash2[KeyHash2["ReplayNewmarker"] = 4157004328] = "ReplayNewmarker";
|
|
569
|
+
KeyHash2[KeyHash2["ReplayPause"] = 137443250] = "ReplayPause";
|
|
570
|
+
KeyHash2[KeyHash2["ReplayPreview"] = 1487672149] = "ReplayPreview";
|
|
571
|
+
KeyHash2[KeyHash2["ReplayPreviewAudio"] = 2030182936] = "ReplayPreviewAudio";
|
|
572
|
+
KeyHash2[KeyHash2["ReplayRecord"] = 2912590972] = "ReplayRecord";
|
|
573
|
+
KeyHash2[KeyHash2["ReplayRecordingStart"] = 4247310580] = "ReplayRecordingStart";
|
|
574
|
+
KeyHash2[KeyHash2["ReplayRecordingStop"] = 3675711234] = "ReplayRecordingStop";
|
|
575
|
+
KeyHash2[KeyHash2["ReplayRestart"] = 2176367773] = "ReplayRestart";
|
|
576
|
+
KeyHash2[KeyHash2["ReplayRewind"] = 3241384497] = "ReplayRewind";
|
|
577
|
+
KeyHash2[KeyHash2["ReplaySave"] = 3955623557] = "ReplaySave";
|
|
578
|
+
KeyHash2[KeyHash2["ReplaySaveSnapshot"] = 4025257950] = "ReplaySaveSnapshot";
|
|
579
|
+
KeyHash2[KeyHash2["ReplayScreenshot"] = 1451208500] = "ReplayScreenshot";
|
|
580
|
+
KeyHash2[KeyHash2["ReplayShowhotkey"] = 3953304606] = "ReplayShowhotkey";
|
|
581
|
+
KeyHash2[KeyHash2["ReplayStartStopRecording"] = 3701905294] = "ReplayStartStopRecording";
|
|
582
|
+
KeyHash2[KeyHash2["ReplayStartStopRecordingSecondary"] = 2308024075] = "ReplayStartStopRecordingSecondary";
|
|
583
|
+
KeyHash2[KeyHash2["ReplayStartpoint"] = 1571794127] = "ReplayStartpoint";
|
|
584
|
+
KeyHash2[KeyHash2["ReplayTimelineDuplicateClip"] = 1095147571] = "ReplayTimelineDuplicateClip";
|
|
585
|
+
KeyHash2[KeyHash2["ReplayTimelinePickupClip"] = 3527757712] = "ReplayTimelinePickupClip";
|
|
586
|
+
KeyHash2[KeyHash2["ReplayTimelinePlaceClip"] = 1618112336] = "ReplayTimelinePlaceClip";
|
|
587
|
+
KeyHash2[KeyHash2["ReplayTimelineSave"] = 1708592797] = "ReplayTimelineSave";
|
|
588
|
+
KeyHash2[KeyHash2["ReplayToggleTimeline"] = 4167211273] = "ReplayToggleTimeline";
|
|
589
|
+
KeyHash2[KeyHash2["ReplayToggletime"] = 3824914867] = "ReplayToggletime";
|
|
590
|
+
KeyHash2[KeyHash2["ReplayToggletips"] = 3366051360] = "ReplayToggletips";
|
|
591
|
+
KeyHash2[KeyHash2["ReplayTools"] = 1444557703] = "ReplayTools";
|
|
592
|
+
KeyHash2[KeyHash2["RevealHud"] = 3481947850] = "RevealHud";
|
|
593
|
+
KeyHash2[KeyHash2["Revive"] = 1139971484] = "Revive";
|
|
594
|
+
KeyHash2[KeyHash2["SaddleTransfer"] = 1940454787] = "SaddleTransfer";
|
|
595
|
+
KeyHash2[KeyHash2["SaveReplayClip"] = 1530591715] = "SaveReplayClip";
|
|
596
|
+
KeyHash2[KeyHash2["ScriptLb"] = 3861168226] = "ScriptLb";
|
|
597
|
+
KeyHash2[KeyHash2["ScriptLeftAxisX"] = 529461124] = "ScriptLeftAxisX";
|
|
598
|
+
KeyHash2[KeyHash2["ScriptLeftAxisY"] = 1410914475] = "ScriptLeftAxisY";
|
|
599
|
+
KeyHash2[KeyHash2["ScriptLs"] = 2866661749] = "ScriptLs";
|
|
600
|
+
KeyHash2[KeyHash2["ScriptLt"] = 724650526] = "ScriptLt";
|
|
601
|
+
KeyHash2[KeyHash2["ScriptPadDown"] = 2983875956] = "ScriptPadDown";
|
|
602
|
+
KeyHash2[KeyHash2["ScriptPadLeft"] = 452468126] = "ScriptPadLeft";
|
|
603
|
+
KeyHash2[KeyHash2["ScriptPadRight"] = 2192160600] = "ScriptPadRight";
|
|
604
|
+
KeyHash2[KeyHash2["ScriptPadUp"] = 230775517] = "ScriptPadUp";
|
|
605
|
+
KeyHash2[KeyHash2["ScriptRb"] = 2447975196] = "ScriptRb";
|
|
606
|
+
KeyHash2[KeyHash2["ScriptRdown"] = 932393831] = "ScriptRdown";
|
|
607
|
+
KeyHash2[KeyHash2["ScriptRightAxisX"] = 2797038057] = "ScriptRightAxisX";
|
|
608
|
+
KeyHash2[KeyHash2["ScriptRightAxisY"] = 665185216] = "ScriptRightAxisY";
|
|
609
|
+
KeyHash2[KeyHash2["ScriptRleft"] = 2765816920] = "ScriptRleft";
|
|
610
|
+
KeyHash2[KeyHash2["ScriptRright"] = 581154816] = "ScriptRright";
|
|
611
|
+
KeyHash2[KeyHash2["ScriptRs"] = 3494813666] = "ScriptRs";
|
|
612
|
+
KeyHash2[KeyHash2["ScriptRt"] = 652856599] = "ScriptRt";
|
|
613
|
+
KeyHash2[KeyHash2["ScriptRup"] = 1998417427] = "ScriptRup";
|
|
614
|
+
KeyHash2[KeyHash2["ScriptSelect"] = 3362922761] = "ScriptSelect";
|
|
615
|
+
KeyHash2[KeyHash2["ScriptedFlyLr"] = 4044430922] = "ScriptedFlyLr";
|
|
616
|
+
KeyHash2[KeyHash2["ScriptedFlyUd"] = 2931077598] = "ScriptedFlyUd";
|
|
617
|
+
KeyHash2[KeyHash2["ScriptedFlyZdown"] = 2623406860] = "ScriptedFlyZdown";
|
|
618
|
+
KeyHash2[KeyHash2["ScriptedFlyZup"] = 1671143369] = "ScriptedFlyZup";
|
|
619
|
+
KeyHash2[KeyHash2["SecondarySpecialAbilitySecondary"] = 2166311450] = "SecondarySpecialAbilitySecondary";
|
|
620
|
+
KeyHash2[KeyHash2["SelectCharacterFranklin"] = 2391476427] = "SelectCharacterFranklin";
|
|
621
|
+
KeyHash2[KeyHash2["SelectCharacterMichael"] = 3935459e3] = "SelectCharacterMichael";
|
|
622
|
+
KeyHash2[KeyHash2["SelectCharacterMultiplayer"] = 3753030584] = "SelectCharacterMultiplayer";
|
|
623
|
+
KeyHash2[KeyHash2["SelectCharacterTrevor"] = 2953625747] = "SelectCharacterTrevor";
|
|
624
|
+
KeyHash2[KeyHash2["SelectItemWheel"] = 527275493] = "SelectItemWheel";
|
|
625
|
+
KeyHash2[KeyHash2["SelectNextWeapon"] = 3498323679] = "SelectNextWeapon";
|
|
626
|
+
KeyHash2[KeyHash2["SelectNextWheel"] = 2011525043] = "SelectNextWheel";
|
|
627
|
+
KeyHash2[KeyHash2["SelectPrevWeapon"] = 4153242423] = "SelectPrevWeapon";
|
|
628
|
+
KeyHash2[KeyHash2["SelectQuickselectDualwield"] = 484891115] = "SelectQuickselectDualwield";
|
|
629
|
+
KeyHash2[KeyHash2["SelectQuickselectMeleeNoUnarmed"] = 2875386263] = "SelectQuickselectMeleeNoUnarmed";
|
|
630
|
+
KeyHash2[KeyHash2["SelectQuickselectPrimaryLongarm"] = 1110987810] = "SelectQuickselectPrimaryLongarm";
|
|
631
|
+
KeyHash2[KeyHash2["SelectQuickselectSecondaryLongarm"] = 2717770406] = "SelectQuickselectSecondaryLongarm";
|
|
632
|
+
KeyHash2[KeyHash2["SelectQuickselectSidearmsLeft"] = 3874886372] = "SelectQuickselectSidearmsLeft";
|
|
633
|
+
KeyHash2[KeyHash2["SelectQuickselectSidearmsRight"] = 1330236492] = "SelectQuickselectSidearmsRight";
|
|
634
|
+
KeyHash2[KeyHash2["SelectQuickselectThrown"] = 2956628283] = "SelectQuickselectThrown";
|
|
635
|
+
KeyHash2[KeyHash2["SelectQuickselectUnarmed"] = 2409602648] = "SelectQuickselectUnarmed";
|
|
636
|
+
KeyHash2[KeyHash2["SelectRadarMode"] = 255439828] = "SelectRadarMode";
|
|
637
|
+
KeyHash2[KeyHash2["SelectWeaponAutoRifle"] = 99527120] = "SelectWeaponAutoRifle";
|
|
638
|
+
KeyHash2[KeyHash2["SelectWeaponHandgun"] = 407462115] = "SelectWeaponHandgun";
|
|
639
|
+
KeyHash2[KeyHash2["SelectWeaponHeavy"] = 1024882115] = "SelectWeaponHeavy";
|
|
640
|
+
KeyHash2[KeyHash2["SelectWeaponMelee"] = 278816850] = "SelectWeaponMelee";
|
|
641
|
+
KeyHash2[KeyHash2["SelectWeaponShotgun"] = 1993599493] = "SelectWeaponShotgun";
|
|
642
|
+
KeyHash2[KeyHash2["SelectWeaponSmg"] = 3471948616] = "SelectWeaponSmg";
|
|
643
|
+
KeyHash2[KeyHash2["SelectWeaponSniper"] = 2529566687] = "SelectWeaponSniper";
|
|
644
|
+
KeyHash2[KeyHash2["SelectWeaponSpecial"] = 3290353400] = "SelectWeaponSpecial";
|
|
645
|
+
KeyHash2[KeyHash2["SelectWeaponUnarmed"] = 527362831] = "SelectWeaponUnarmed";
|
|
646
|
+
KeyHash2[KeyHash2["ShopBounty"] = 3555522607] = "ShopBounty";
|
|
647
|
+
KeyHash2[KeyHash2["ShopBuy"] = 3757576953] = "ShopBuy";
|
|
648
|
+
KeyHash2[KeyHash2["ShopChangeCurrency"] = 2432309675] = "ShopChangeCurrency";
|
|
649
|
+
KeyHash2[KeyHash2["ShopInspect"] = 1584545164] = "ShopInspect";
|
|
650
|
+
KeyHash2[KeyHash2["ShopSell"] = 1829968318] = "ShopSell";
|
|
651
|
+
KeyHash2[KeyHash2["ShopSpecial"] = 3927248498] = "ShopSpecial";
|
|
652
|
+
KeyHash2[KeyHash2["SimpleRadar"] = 1609505645] = "SimpleRadar";
|
|
653
|
+
KeyHash2[KeyHash2["SkipCutscene"] = 3452232937] = "SkipCutscene";
|
|
654
|
+
KeyHash2[KeyHash2["SniperZoom"] = 2059168358] = "SniperZoom";
|
|
655
|
+
KeyHash2[KeyHash2["SniperZoomIn"] = 3830876833] = "SniperZoomIn";
|
|
656
|
+
KeyHash2[KeyHash2["SniperZoomInAlternate"] = 983078849] = "SniperZoomInAlternate";
|
|
657
|
+
KeyHash2[KeyHash2["SniperZoomInOnly"] = 2780679484] = "SniperZoomInOnly";
|
|
658
|
+
KeyHash2[KeyHash2["SniperZoomInSecondary"] = 1810481671] = "SniperZoomInSecondary";
|
|
659
|
+
KeyHash2[KeyHash2["SniperZoomOut"] = 3826049950] = "SniperZoomOut";
|
|
660
|
+
KeyHash2[KeyHash2["SniperZoomOutAlternate"] = 3162637449] = "SniperZoomOutAlternate";
|
|
661
|
+
KeyHash2[KeyHash2["SniperZoomOutOnly"] = 1124438954] = "SniperZoomOutOnly";
|
|
662
|
+
KeyHash2[KeyHash2["SniperZoomOutSecondary"] = 2323351603] = "SniperZoomOutSecondary";
|
|
663
|
+
KeyHash2[KeyHash2["SpecialAbility"] = 3470863184] = "SpecialAbility";
|
|
664
|
+
KeyHash2[KeyHash2["SpecialAbilityAction"] = 516589524] = "SpecialAbilityAction";
|
|
665
|
+
KeyHash2[KeyHash2["SpecialAbilityPc"] = 1390807691] = "SpecialAbilityPc";
|
|
666
|
+
KeyHash2[KeyHash2["SpecialAbilitySecondary"] = 1663574939] = "SpecialAbilitySecondary";
|
|
667
|
+
KeyHash2[KeyHash2["Sprint"] = 2415687126] = "Sprint";
|
|
668
|
+
KeyHash2[KeyHash2["StealGeneric"] = 1187312502] = "StealGeneric";
|
|
669
|
+
KeyHash2[KeyHash2["StickyFeedAccept"] = 4108143719] = "StickyFeedAccept";
|
|
670
|
+
KeyHash2[KeyHash2["StickyFeedCancel"] = 217814591] = "StickyFeedCancel";
|
|
671
|
+
KeyHash2[KeyHash2["StickyFeedX"] = 3172832417] = "StickyFeedX";
|
|
672
|
+
KeyHash2[KeyHash2["StickyFeedY"] = 3361450781] = "StickyFeedY";
|
|
673
|
+
KeyHash2[KeyHash2["StopLeadingAnimal"] = 2031395805] = "StopLeadingAnimal";
|
|
674
|
+
KeyHash2[KeyHash2["Surrender"] = 3683477944] = "Surrender";
|
|
675
|
+
KeyHash2[KeyHash2["SwitchFiringMode"] = 4006698776] = "SwitchFiringMode";
|
|
676
|
+
KeyHash2[KeyHash2["SwitchShoulder"] = 2189336296] = "SwitchShoulder";
|
|
677
|
+
KeyHash2[KeyHash2["Sy"] = 3850483206] = "Sy";
|
|
678
|
+
KeyHash2[KeyHash2["TakeGeneric"] = 1436730387] = "TakeGeneric";
|
|
679
|
+
KeyHash2[KeyHash2["Talk"] = 2110430325] = "Talk";
|
|
680
|
+
KeyHash2[KeyHash2["TextChatChannelAll"] = 3224549060] = "TextChatChannelAll";
|
|
681
|
+
KeyHash2[KeyHash2["TextChatChannelTeam"] = 3995922755] = "TextChatChannelTeam";
|
|
682
|
+
KeyHash2[KeyHash2["ThrowGrenade"] = 184129944] = "ThrowGrenade";
|
|
683
|
+
KeyHash2[KeyHash2["TithingDecreaseAmount"] = 3472841747] = "TithingDecreaseAmount";
|
|
684
|
+
KeyHash2[KeyHash2["TithingIncreaseAmount"] = 619936437] = "TithingIncreaseAmount";
|
|
685
|
+
KeyHash2[KeyHash2["ToggleHolster"] = 2990079499] = "ToggleHolster";
|
|
686
|
+
KeyHash2[KeyHash2["ToggleWeaponScope"] = 813099388] = "ToggleWeaponScope";
|
|
687
|
+
KeyHash2[KeyHash2["TwirlPistol"] = 2475507825] = "TwirlPistol";
|
|
688
|
+
KeyHash2[KeyHash2["VehAccelerate"] = 1537201378] = "VehAccelerate";
|
|
689
|
+
KeyHash2[KeyHash2["VehAim"] = 3620404463] = "VehAim";
|
|
690
|
+
KeyHash2[KeyHash2["VehAttack"] = 4096983096] = "VehAttack";
|
|
691
|
+
KeyHash2[KeyHash2["VehAttack2"] = 4056105402] = "VehAttack2";
|
|
692
|
+
KeyHash2[KeyHash2["VehBoatAccelerate"] = 3007440914] = "VehBoatAccelerate";
|
|
693
|
+
KeyHash2[KeyHash2["VehBoatAim"] = 2465591326] = "VehBoatAim";
|
|
694
|
+
KeyHash2[KeyHash2["VehBoatAttack"] = 1751579194] = "VehBoatAttack";
|
|
695
|
+
KeyHash2[KeyHash2["VehBoatAttack2"] = 2271254249] = "VehBoatAttack2";
|
|
696
|
+
KeyHash2[KeyHash2["VehBoatBrake"] = 1116561209] = "VehBoatBrake";
|
|
697
|
+
KeyHash2[KeyHash2["VehBoatTurnLeftOnly"] = 1542290577] = "VehBoatTurnLeftOnly";
|
|
698
|
+
KeyHash2[KeyHash2["VehBoatTurnLr"] = 3638545075] = "VehBoatTurnLr";
|
|
699
|
+
KeyHash2[KeyHash2["VehBoatTurnRightOnly"] = 4185394683] = "VehBoatTurnRightOnly";
|
|
700
|
+
KeyHash2[KeyHash2["VehBrake"] = 1847550875] = "VehBrake";
|
|
701
|
+
KeyHash2[KeyHash2["VehCarAccelerate"] = 3119858864] = "VehCarAccelerate";
|
|
702
|
+
KeyHash2[KeyHash2["VehCarAim"] = 1735899200] = "VehCarAim";
|
|
703
|
+
KeyHash2[KeyHash2["VehCarAttack"] = 1433596806] = "VehCarAttack";
|
|
704
|
+
KeyHash2[KeyHash2["VehCarAttack2"] = 1534474967] = "VehCarAttack2";
|
|
705
|
+
KeyHash2[KeyHash2["VehCarBrake"] = 3515382591] = "VehCarBrake";
|
|
706
|
+
KeyHash2[KeyHash2["VehCarTurnLeftOnly"] = 131163468] = "VehCarTurnLeftOnly";
|
|
707
|
+
KeyHash2[KeyHash2["VehCarTurnLr"] = 1003720003] = "VehCarTurnLr";
|
|
708
|
+
KeyHash2[KeyHash2["VehCarTurnRightOnly"] = 1849439817] = "VehCarTurnRightOnly";
|
|
709
|
+
KeyHash2[KeyHash2["VehDraftAccelerate"] = 3919391493] = "VehDraftAccelerate";
|
|
710
|
+
KeyHash2[KeyHash2["VehDraftAim"] = 3184886541] = "VehDraftAim";
|
|
711
|
+
KeyHash2[KeyHash2["VehDraftAttack"] = 4094341528] = "VehDraftAttack";
|
|
712
|
+
KeyHash2[KeyHash2["VehDraftAttack2"] = 2288980701] = "VehDraftAttack2";
|
|
713
|
+
KeyHash2[KeyHash2["VehDraftBrake"] = 3595101325] = "VehDraftBrake";
|
|
714
|
+
KeyHash2[KeyHash2["VehDraftMoveDownOnly"] = 625557171] = "VehDraftMoveDownOnly";
|
|
715
|
+
KeyHash2[KeyHash2["VehDraftMoveUd"] = 593059050] = "VehDraftMoveUd";
|
|
716
|
+
KeyHash2[KeyHash2["VehDraftMoveUpOnly"] = 698737950] = "VehDraftMoveUpOnly";
|
|
717
|
+
KeyHash2[KeyHash2["VehDraftSwitchDrivers"] = 1891137604] = "VehDraftSwitchDrivers";
|
|
718
|
+
KeyHash2[KeyHash2["VehDraftTurnLeftOnly"] = 428538980] = "VehDraftTurnLeftOnly";
|
|
719
|
+
KeyHash2[KeyHash2["VehDraftTurnLr"] = 2816454282] = "VehDraftTurnLr";
|
|
720
|
+
KeyHash2[KeyHash2["VehDraftTurnRightOnly"] = 1580670631] = "VehDraftTurnRightOnly";
|
|
721
|
+
KeyHash2[KeyHash2["VehDriveLook"] = 2719055002] = "VehDriveLook";
|
|
722
|
+
KeyHash2[KeyHash2["VehDriveLook2"] = 1437336805] = "VehDriveLook2";
|
|
723
|
+
KeyHash2[KeyHash2["VehDropProjectile"] = 3323335142] = "VehDropProjectile";
|
|
724
|
+
KeyHash2[KeyHash2["VehDuck"] = 1530302706] = "VehDuck";
|
|
725
|
+
KeyHash2[KeyHash2["VehExit"] = 4277844404] = "VehExit";
|
|
726
|
+
KeyHash2[KeyHash2["VehFlyAttack"] = 494000042] = "VehFlyAttack";
|
|
727
|
+
KeyHash2[KeyHash2["VehFlyAttackCamera"] = 800734987] = "VehFlyAttackCamera";
|
|
728
|
+
KeyHash2[KeyHash2["VehFlyAttack2"] = 1300436092] = "VehFlyAttack2";
|
|
729
|
+
KeyHash2[KeyHash2["VehFlyDuck"] = 931795191] = "VehFlyDuck";
|
|
730
|
+
KeyHash2[KeyHash2["VehFlyMouseControlOverride"] = 1821905061] = "VehFlyMouseControlOverride";
|
|
731
|
+
KeyHash2[KeyHash2["VehFlyPitchDownOnly"] = 256784031] = "VehFlyPitchDownOnly";
|
|
732
|
+
KeyHash2[KeyHash2["VehFlyPitchUd"] = 3867024983] = "VehFlyPitchUd";
|
|
733
|
+
KeyHash2[KeyHash2["VehFlyPitchUpOnly"] = 1652603418] = "VehFlyPitchUpOnly";
|
|
734
|
+
KeyHash2[KeyHash2["VehFlyRollLeftOnly"] = 1459113632] = "VehFlyRollLeftOnly";
|
|
735
|
+
KeyHash2[KeyHash2["VehFlyRollLr"] = 1015723376] = "VehFlyRollLr";
|
|
736
|
+
KeyHash2[KeyHash2["VehFlyRollRightOnly"] = 2271949665] = "VehFlyRollRightOnly";
|
|
737
|
+
KeyHash2[KeyHash2["VehFlySelectNextWeapon"] = 619266713] = "VehFlySelectNextWeapon";
|
|
738
|
+
KeyHash2[KeyHash2["VehFlySelectPrevWeapon"] = 3235411173] = "VehFlySelectPrevWeapon";
|
|
739
|
+
KeyHash2[KeyHash2["VehFlySelectTargetLeft"] = 813679809] = "VehFlySelectTargetLeft";
|
|
740
|
+
KeyHash2[KeyHash2["VehFlySelectTargetRight"] = 1391615126] = "VehFlySelectTargetRight";
|
|
741
|
+
KeyHash2[KeyHash2["VehFlyThrottleDown"] = 139329429] = "VehFlyThrottleDown";
|
|
742
|
+
KeyHash2[KeyHash2["VehFlyThrottleUp"] = 1915927219] = "VehFlyThrottleUp";
|
|
743
|
+
KeyHash2[KeyHash2["VehFlyUndercarriage"] = 4262454552] = "VehFlyUndercarriage";
|
|
744
|
+
KeyHash2[KeyHash2["VehFlyVerticalFlightMode"] = 3810754601] = "VehFlyVerticalFlightMode";
|
|
745
|
+
KeyHash2[KeyHash2["VehFlyYawLeft"] = 827890385] = "VehFlyYawLeft";
|
|
746
|
+
KeyHash2[KeyHash2["VehFlyYawRight"] = 3172220870] = "VehFlyYawRight";
|
|
747
|
+
KeyHash2[KeyHash2["VehGrapplingHook"] = 3112544862] = "VehGrapplingHook";
|
|
748
|
+
KeyHash2[KeyHash2["VehGunLr"] = 3069437182] = "VehGunLr";
|
|
749
|
+
KeyHash2[KeyHash2["VehGunUd"] = 1210409198] = "VehGunUd";
|
|
750
|
+
KeyHash2[KeyHash2["VehHandbrake"] = 1708280984] = "VehHandbrake";
|
|
751
|
+
KeyHash2[KeyHash2["VehHandbrakeAlt"] = 3462828013] = "VehHandbrakeAlt";
|
|
752
|
+
KeyHash2[KeyHash2["VehHandcartAccelerate"] = 4281739004] = "VehHandcartAccelerate";
|
|
753
|
+
KeyHash2[KeyHash2["VehHandcartBrake"] = 762959882] = "VehHandcartBrake";
|
|
754
|
+
KeyHash2[KeyHash2["VehHeadlight"] = 4046460518] = "VehHeadlight";
|
|
755
|
+
KeyHash2[KeyHash2["VehHorn"] = 1671483992] = "VehHorn";
|
|
756
|
+
KeyHash2[KeyHash2["VehJump"] = 2857810214] = "VehJump";
|
|
757
|
+
KeyHash2[KeyHash2["VehLookBehind"] = 3404312599] = "VehLookBehind";
|
|
758
|
+
KeyHash2[KeyHash2["VehMouseControlOverride"] = 969714645] = "VehMouseControlOverride";
|
|
759
|
+
KeyHash2[KeyHash2["VehMoveDownOnly"] = 383204893] = "VehMoveDownOnly";
|
|
760
|
+
KeyHash2[KeyHash2["VehMoveLeftOnly"] = 2650097414] = "VehMoveLeftOnly";
|
|
761
|
+
KeyHash2[KeyHash2["VehMoveLr"] = 4058154284] = "VehMoveLr";
|
|
762
|
+
KeyHash2[KeyHash2["VehMoveRightOnly"] = 2544434584] = "VehMoveRightOnly";
|
|
763
|
+
KeyHash2[KeyHash2["VehMoveUd"] = 2323759116] = "VehMoveUd";
|
|
764
|
+
KeyHash2[KeyHash2["VehMoveUpOnly"] = 3736960758] = "VehMoveUpOnly";
|
|
765
|
+
KeyHash2[KeyHash2["VehNextRadio"] = 585168871] = "VehNextRadio";
|
|
766
|
+
KeyHash2[KeyHash2["VehNextRadioTrack"] = 4160368092] = "VehNextRadioTrack";
|
|
767
|
+
KeyHash2[KeyHash2["VehPassengerAim"] = 3995600080] = "VehPassengerAim";
|
|
768
|
+
KeyHash2[KeyHash2["VehPassengerAttack"] = 665666611] = "VehPassengerAttack";
|
|
769
|
+
KeyHash2[KeyHash2["VehPrevRadio"] = 2542128659] = "VehPrevRadio";
|
|
770
|
+
KeyHash2[KeyHash2["VehPrevRadioTrack"] = 177521919] = "VehPrevRadioTrack";
|
|
771
|
+
KeyHash2[KeyHash2["VehPushbikeFrontBrake"] = 1482593325] = "VehPushbikeFrontBrake";
|
|
772
|
+
KeyHash2[KeyHash2["VehPushbikePedal"] = 4253901991] = "VehPushbikePedal";
|
|
773
|
+
KeyHash2[KeyHash2["VehPushbikeRearBrake"] = 4174098357] = "VehPushbikeRearBrake";
|
|
774
|
+
KeyHash2[KeyHash2["VehPushbikeSprint"] = 4030652753] = "VehPushbikeSprint";
|
|
775
|
+
KeyHash2[KeyHash2["VehRadioWheel"] = 1226157066] = "VehRadioWheel";
|
|
776
|
+
KeyHash2[KeyHash2["VehRoof"] = 1048377764] = "VehRoof";
|
|
777
|
+
KeyHash2[KeyHash2["VehSelectNextWeapon"] = 2291819119] = "VehSelectNextWeapon";
|
|
778
|
+
KeyHash2[KeyHash2["VehSelectPrevWeapon"] = 211270343] = "VehSelectPrevWeapon";
|
|
779
|
+
KeyHash2[KeyHash2["VehShuffle"] = 3339204504] = "VehShuffle";
|
|
780
|
+
KeyHash2[KeyHash2["VehSlowmoDownOnly"] = 1680728148] = "VehSlowmoDownOnly";
|
|
781
|
+
KeyHash2[KeyHash2["VehSlowmoUd"] = 4059680038] = "VehSlowmoUd";
|
|
782
|
+
KeyHash2[KeyHash2["VehSlowmoUpOnly"] = 731389775] = "VehSlowmoUpOnly";
|
|
783
|
+
KeyHash2[KeyHash2["VehSpecial"] = 1228478939] = "VehSpecial";
|
|
784
|
+
KeyHash2[KeyHash2["VehSpecialAbilityFranklin"] = 1589851512] = "VehSpecialAbilityFranklin";
|
|
785
|
+
KeyHash2[KeyHash2["VehStuntUd"] = 1252087310] = "VehStuntUd";
|
|
786
|
+
KeyHash2[KeyHash2["VehSubAscend"] = 3617136500] = "VehSubAscend";
|
|
787
|
+
KeyHash2[KeyHash2["VehSubDescend"] = 2102517284] = "VehSubDescend";
|
|
788
|
+
KeyHash2[KeyHash2["VehSubMouseControlOverride"] = 749679230] = "VehSubMouseControlOverride";
|
|
789
|
+
KeyHash2[KeyHash2["VehSubPitchDownOnly"] = 3123520170] = "VehSubPitchDownOnly";
|
|
790
|
+
KeyHash2[KeyHash2["VehSubPitchUd"] = 1184686705] = "VehSubPitchUd";
|
|
791
|
+
KeyHash2[KeyHash2["VehSubPitchUpOnly"] = 4193191722] = "VehSubPitchUpOnly";
|
|
792
|
+
KeyHash2[KeyHash2["VehSubThrottleDown"] = 4122136315] = "VehSubThrottleDown";
|
|
793
|
+
KeyHash2[KeyHash2["VehSubThrottleUp"] = 3532407919] = "VehSubThrottleUp";
|
|
794
|
+
KeyHash2[KeyHash2["VehSubTurnHardLeft"] = 1679904073] = "VehSubTurnHardLeft";
|
|
795
|
+
KeyHash2[KeyHash2["VehSubTurnHardRight"] = 2756448131] = "VehSubTurnHardRight";
|
|
796
|
+
KeyHash2[KeyHash2["VehSubTurnLeftOnly"] = 1156046995] = "VehSubTurnLeftOnly";
|
|
797
|
+
KeyHash2[KeyHash2["VehSubTurnLr"] = 1652311577] = "VehSubTurnLr";
|
|
798
|
+
KeyHash2[KeyHash2["VehSubTurnRightOnly"] = 3884603964] = "VehSubTurnRightOnly";
|
|
799
|
+
KeyHash2[KeyHash2["VehTraversal"] = 1939694177] = "VehTraversal";
|
|
800
|
+
KeyHash2[KeyHash2["WeaponInspectZoom"] = 3306247227] = "WeaponInspectZoom";
|
|
801
|
+
KeyHash2[KeyHash2["WeaponSpecial"] = 1933115891] = "WeaponSpecial";
|
|
802
|
+
KeyHash2[KeyHash2["WeaponSpecialTwo"] = 1354373751] = "WeaponSpecialTwo";
|
|
803
|
+
KeyHash2[KeyHash2["Whistle"] = 613911080] = "Whistle";
|
|
804
|
+
KeyHash2[KeyHash2["WhistleHorseback"] = 3890975109] = "WhistleHorseback";
|
|
805
|
+
return KeyHash2;
|
|
806
|
+
})(KeyHash || {});
|
|
807
|
+
export {
|
|
808
|
+
KeyHash
|
|
809
|
+
};
|