diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2016-05-30 14:42:09 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2016-05-30 14:42:09 -0400 |
| commit | 2736f498f30220b858fc6fac23e7ddc4a597df6d (patch) | |
| tree | 374ceadedb654b00e09dac321620a8320830f734 /entities/weapons/rad_p90 | |
| download | redead-2736f498f30220b858fc6fac23e7ddc4a597df6d.tar.gz redead-2736f498f30220b858fc6fac23e7ddc4a597df6d.tar.bz2 redead-2736f498f30220b858fc6fac23e7ddc4a597df6d.zip | |
Inital commit
Diffstat (limited to 'entities/weapons/rad_p90')
| -rw-r--r-- | entities/weapons/rad_p90/shared.lua | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/entities/weapons/rad_p90/shared.lua b/entities/weapons/rad_p90/shared.lua new file mode 100644 index 0000000..2055466 --- /dev/null +++ b/entities/weapons/rad_p90/shared.lua @@ -0,0 +1,42 @@ +if SERVER then + + AddCSLuaFile("shared.lua") + +end + +if CLIENT then + + SWEP.ViewModelFlip = true + + SWEP.PrintName = "FN P90" + SWEP.IconLetter = "l" + SWEP.Slot = 3 + SWEP.Slotpos = 2 + +end + +SWEP.HoldType = "rpg" + +SWEP.Base = "rad_base" + +SWEP.ViewModel = "models/weapons/v_smg_p90.mdl" +SWEP.WorldModel = "models/weapons/w_smg_p90.mdl" + +SWEP.SprintPos = Vector(-4.7699, -7.2246, -2.8428) +SWEP.SprintAng = Vector(4.4604, -47.001, 6.8488) + +SWEP.IsSniper = false +SWEP.AmmoType = "SMG" + +SWEP.LaserOffset = Angle( 39.9, -50, -90 ) +SWEP.LaserScale = 0.75 + +SWEP.Primary.Sound = Sound( "Weapon_p90.Single" ) +SWEP.Primary.Recoil = 6.5 +SWEP.Primary.Damage = 40 +SWEP.Primary.NumShots = 1 +SWEP.Primary.Cone = 0.040 +SWEP.Primary.Delay = 0.075 + +SWEP.Primary.ClipSize = 50 +SWEP.Primary.Automatic = true |
