-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconfig.lua
More file actions
39 lines (37 loc) · 1.61 KB
/
config.lua
File metadata and controls
39 lines (37 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
return {
-- Vehicle Driver / Passengers FPP Configs --
forceDrivingFPP = false, -- Force FPP while driving
forceAllPassengersFPP = false, -- Force passengers into FPP
-- Aiming Weapons in Vehicle FPP Configs --
forceVehicleAimingFPP = true, -- Force FPP while aiming in vehicle
forceAllWeaponsVehicleAimingFPP = true, -- All weapons force FPP while aiming in a vehicle
forceVehicleAimingWeapons = { -- If forceAllWeaponsVehicleAimingFPP is false, only these weapons force FPP while aiming in a vehicle
`WEAPON_PISTOL`,
`WEAPON_COMBATPISTOL`,
`WEAPON_APPISTOL`,
`WEAPON_COMBATPDW`,
`WEAPON_MACHINEPISTOL`,
`WEAPON_MICROSMG`,
`WEAPON_MINISMG`,
`WEAPON_PISTOL_MK2`,
`WEAPON_SNSPISTOL`,
`WEAPON_SNSPISTOL_MK2`,
`WEAPON_VINTAGEPISTOL`,
},
-- Aiming Weapons on Foot FPP Configs --
forceAimingFPP = false, -- Force FPP while aiming
forceAllWeaponsFPP = false, -- Force FPP while aiming for all weapons
forceAimingWeapons = { -- If forceAllWeaponsFPP is false, only these weapons force FPP while aiming
`WEAPON_PISTOL`,
`WEAPON_COMBATPISTOL`,
`WEAPON_APPISTOL`,
`WEAPON_COMBATPDW`,
`WEAPON_MACHINEPISTOL`,
`WEAPON_MICROSMG`,
`WEAPON_MINISMG`,
`WEAPON_PISTOL_MK2`,
`WEAPON_SNSPISTOL`,
`WEAPON_SNSPISTOL_MK2`,
`WEAPON_VINTAGEPISTOL`,
},
}