Advertisement
Guest User

Untitled

a guest
Jun 14th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. AddCSLuaFile()
  2.  
  3. SWEP.Base = "weapon_ds_base"
  4.  
  5. if CLIENT then
  6. SWEP.PrintName = "Sentinal's Axe"
  7. SWEP.Author = ""
  8. end
  9.  
  10. SWEP.Category = "milkdud Weapons"
  11.  
  12. SWEP.ViewModel = "models/weapons/c_bs_SSAS.mdl" -- Don't touch
  13. SWEP.WorldModel = "models/demonssouls/weapons/dozer axe.mdl"
  14.  
  15. SWEP.Spawnable = true
  16. SWEP.AdminSpawnable = true
  17.  
  18. SWEP.Primary.Damage = 10
  19. SWEP.BackstabDamage = 20
  20. SWEP.ParryDamage = 20
  21.  
  22. SWEP.SwingSpeed = 1
  23. SWEP.Reach = 95
  24.  
  25. SWEP.ModelGroup = 10 -- Don't touch
  26.  
  27. SWEP.SwordViewModelModel = "models/demonssouls/weapons/dozer axe.mdl"
  28. SWEP.SwordViewModelPos = Vector(14,-6,6)
  29. SWEP.SwordViewModelAngles = Angle(-102,2,110)
  30. SWEP.SwordViewModelScale = Vector(1,1,1)
  31.  
  32. SWEP.SwordWorldModelModel = "Ignore"
  33. SWEP.SwordWorldModelPos = Vector(2.9,1,0)
  34. SWEP.SwordWorldModelAngles = Angle(-118,2,94)
  35. SWEP.SwordWorldModelScale = Vector(1,1,0.6)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement