Advertisement
Guest User

AK

a guest
Nov 29th, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1.  
  2. AddCSLuaFile()
  3.  
  4.  
  5. SWEP.HoldType = "ar2"
  6.  
  7. if CLIENT then
  8.  
  9. SWEP.PrintName = "AK47"
  10. SWEP.Slot = 2
  11.  
  12. end
  13.  
  14. SWEP.Base = "weapon_tttbase"
  15. SWEP.Kind = WEAPON_HEAVY
  16. SWEP.WeaponID = AMMO_AK
  17.  
  18. SWEP.Primary.Delay = 0.08
  19. SWEP.Primary.Recoil = 5
  20. SWEP.Primary.Automatic = true
  21. SWEP.Primary.Damage = 20
  22. SWEP.Primary.Cone = 0.010
  23. SWEP.Primary.Ammo = "Pistol"
  24. SWEP.Primary.ClipSize = 20
  25. SWEP.Primary.ClipMax = 60
  26. SWEP.Primary.DefaultClip = 20
  27. SWEP.Primary.Sound = Sound( "Weapon_AK47.Single" )
  28.  
  29. SWEP.AutoSpawnable = true
  30.  
  31. SWEP.UseHands = true
  32. SWEP.ViewModelFlip = True
  33. SWEP.ViewModelFOV = 72
  34. SWEP.ViewModel = "models/weapons/v_rif_ak47.mdl"
  35. SWEP.WorldModel = "models/weapons/w_rif_ak47.mdl"
  36.  
  37. SWEP.IronSightsPos = Vector( 6.05, -5, 2.4 )
  38. SWEP.IronSightsAng = Vector( 2.2, -0.1, 0 )
  39.  
  40. SWEP.AmmoEnt = "item_ammo_pistol_ttt"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement