diff options
Diffstat (limited to 'entities/weapons/rad_ak47/shared.lua')
| -rw-r--r-- | entities/weapons/rad_ak47/shared.lua | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/entities/weapons/rad_ak47/shared.lua b/entities/weapons/rad_ak47/shared.lua new file mode 100644 index 0000000..36d2799 --- /dev/null +++ b/entities/weapons/rad_ak47/shared.lua @@ -0,0 +1,37 @@ +if SERVER then + + AddCSLuaFile("shared.lua") + +end + +if CLIENT then + + SWEP.PrintName = "AK-47" + SWEP.IconLetter = "b" + SWEP.Slot = 4 + SWEP.Slotpos = 2 + +end + +SWEP.HoldType = "ar2" + +SWEP.Base = "rad_base" + +SWEP.ViewModel = "models/weapons/v_rif_ak47.mdl" +SWEP.WorldModel = "models/weapons/w_rif_ak47.mdl" + +SWEP.SprintPos = Vector (-1.3057, -4.167, 0.3971) +SWEP.SprintAng = Vector (-9.8658, -38.0733, 13.8555) + +SWEP.IsSniper = false +SWEP.AmmoType = "Rifle" + +SWEP.Primary.Sound = Sound( "Weapon_AK47.Single" ) +SWEP.Primary.Recoil = 6.5 +SWEP.Primary.Damage = 55 +SWEP.Primary.NumShots = 1 +SWEP.Primary.Cone = 0.035 +SWEP.Primary.Delay = 0.100 + +SWEP.Primary.ClipSize = 30 +SWEP.Primary.Automatic = true |
