123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- // Remington 870
- WeaponData
- {
- // Weapon data is loaded by both the Game and Client DLLs.
- "printname" "Remington 870"
- "viewmodel" "models/weapons/v_Remington.mdl"
- "playermodel" "models/weapons/w_Remington.mdl"
- "anim_prefix" "shotgun"
- "bucket" "3"
- "bucket_position" "11"
- "clip_size" "8"
- "primary_ammo" "Nerv_buckshot"
- "secondary_ammo" "None"
- "weight" "4"
- "item_flags" "0"
- "ironsightoffset"
- {
- "x" "-4.00"
- "y" "-5.50"
- "z" "3.20"
- }
- // Sounds for the weapon. There is a max of 16 sounds per category (i.e. max 16 "single_shot" sounds)
- SoundData
- {
- "empty" "Weapon_Remington.Empty"
- "reload" "Weapon_Remington.Reload"
- "special1" "Weapon_Remington.Special1"
- "single_shot" "Weapon_Remington.Single"
- "double_shot" "Weapon_Remington.Double"
- // NPC WEAPON SOUNDS
- "reload_npc" "Weapon_Remington.NPC_Reload"
- "single_shot_npc" "Weapon_Remington.NPC_Single"
- }
- // Weapon Sprite data is loaded by the Client DLL.
- TextureData
- {
- "weapon"
- {
- "font" "WeaponIcons"
- "character" "b"
- }
- "weapon_s"
- {
- "font" "WeaponIconsSelected"
- "character" "b"
- }
- "ammo"
- {
- "font" "WeaponIcons"
- "character" "s"
- }
- "crosshair"
- {
- "font" "Crosshairs"
- "character" "Q"
- }
- "autoaim"
- {
- "file" "sprites/crosshairs"
- "x" "0"
- "y" "48"
- "width" "24"
- "height" "24"
- }
- }
- "Advanced" // only for Weapon_Scripted
- {
- // **Primary Attack**
- // 0 = none, 1 = Basic Bullet, 2 = Burst, 3 = shotgun, 4 = autoshotgun, 5 = laser, 6 = warp
- "FireType1" "3"
- // Rate of Weapons Fire ( Not for laser or warp )
- "FireRate1" "0.3"
- // Allow a refire as fast as the player can click, Basic Bullet Only.
- "FastFire1" "0"
- // Allow Fire Underwater?
- "FireUnderWater1" "0"
- // How many bullets in a burst. ( For Burst Weapon Only! )
- "BurstAmount1" "0"
- "BetweenBurstTime1" "0.05"
- // For Bullet accuracy
- "FireCone1" "10" // Starting Value ( 0-20 )
- "FireConeLerp1" "0" // Bool
- "FireConeLerpto1" "0" // Value to lerp accuracy too ( 0-20 )
- // **Secondary Attack**
- // 0 = none, 1 = Basic Bullet, 2 = Burst, 3 = shotgun, 4 = autoshotgun, 5 = laser, 6 = warp, 8 = scope
- "FireType2" "0"
- // **Global Weapon Settings**
- // Number of Recoil Animations, weapon models with ACT_VM_RECOIL animations.
- // ( Only if a weapon has recoil animations, Not for laser or warp )
- "NumberOfRecoilAnims" "0"
- // Shots fired till next recoil animation. ( Only if a weapon has recoil animations )
- "RecoilIncrementSpeed" "1"
- // 1 = Pistol, 2 = AR2, 3 = crossbow, 4 = physgun, 5 = shotgun, 6 = smg1
- // This is the player animation set that will be used on all players you view ingame.
- "PlayerAnimationSet" "5"
- }
- }
|