mirror of
https://github.com/DrBeef/RTCWQuest.git
synced 2025-02-28 22:31:29 +00:00
73 lines
2.1 KiB
INI
73 lines
2.1 KiB
INI
|
|
///////////////////////////////////////////////////////////////////
|
|
// Weapon IDs
|
|
//
|
|
// WP_KNIFE, // 1
|
|
//
|
|
// // German weapons
|
|
// WP_LUGER, // 2
|
|
// WP_MP40, // 3
|
|
// WP_MAUSER, // 4 sniper rifle
|
|
// WP_FG42, // 5 scoped rifle
|
|
// WP_GRENADE_LAUNCHER, // 6
|
|
// WP_PANZERFAUST, // 7
|
|
// WP_VENOM, // 8
|
|
// WP_FLAMETHROWER, // 9
|
|
// WP_TESLA, // 10
|
|
//
|
|
// // American equivalents
|
|
// WP_COLT, // 11 equivalent american weapon to german luger
|
|
// WP_THOMPSON, // 12 equivalent american weapon to german mp40
|
|
// WP_GARAND, // 13 equivalent american weapon to german mauser (snooper scope)
|
|
// WP_GRENADE_PINEAPPLE, // 14
|
|
//
|
|
// // more weapons
|
|
// WP_STEN, // 18 silenced sten sub-machinegun
|
|
// WP_SILENCER, // 19 used to be sp5
|
|
// WP_AKIMBO, // 20 dual handguns
|
|
// WP_DYNAMITE, // 22
|
|
|
|
|
|
|
|
|
|
// Weapon offsets - This is the default for the weapon models
|
|
// put the weapon id at the end of the cvar name, so the knife is vr_weapon_adjustment_1
|
|
// Values are: scale,right,up,forward
|
|
// Default values are: "0.62,-9.8,11.3,-16.1"
|
|
|
|
// Knife
|
|
seta vr_weapon_adjustment_1 "0.5,-8.0,8.0,-15.0"
|
|
|
|
// Luger
|
|
seta vr_weapon_adjustment_2 "0.5,-10,17.0,-20.1"
|
|
|
|
// MP40
|
|
seta vr_weapon_adjustment_3 "0.6,-9.8,9.5,-14.1"
|
|
|
|
// Grenade Launcher
|
|
seta vr_weapon_adjustment_6 "0.55,-10,18.0,-24.0"
|
|
|
|
// Colt
|
|
seta vr_weapon_adjustment_11 "0.5,-10,17.0,-20.1"
|
|
|
|
// Thompson
|
|
seta vr_weapon_adjustment_12 "0.7,-9.8,11.3,-16.1"
|
|
|
|
// Sten
|
|
seta vr_weapon_adjustment_18 "0.52,-9.8,11.3,-16.1"
|
|
|
|
// Panzer Faust (Rocket Launcher)
|
|
seta vr_weapon_adjustment_7 "0.9,-5.0,8.0,-5.0"
|
|
|
|
// Flame Thrower
|
|
seta vr_weapon_adjustment_9 "0.7,-9.8,5.9,-9.0"
|
|
|
|
// Tesla Coil
|
|
seta vr_weapon_adjustment_10 "0.72,-9.8,11.3,-12.1"
|
|
|
|
// Garand (snooper scope sniper rifle)
|
|
seta vr_weapon_adjustment_13 "0.59,-9.8,10.0,-12.0"
|
|
|
|
// Dynamite
|
|
seta vr_weapon_adjustment_22 "0.55,-10,18.0,-24.0"
|
|
|