Advertisement
Exho

Untitled

Aug 6th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.78 KB | None | 0 0
  1. if SERVER then
  2.     AddCSLuaFile()
  3. end
  4.  
  5. SWEP.PrintName          = "Weapon"
  6. SWEP.Author             = "Exho"
  7. SWEP.Contact            = ""
  8. SWEP.Purpose            = ""
  9. SWEP.Instructions       = ""
  10.  
  11. SWEP.Slot               = 3
  12. SWEP.SlotPos             = 1
  13. SWEP.DrawAmmo           = true
  14. SWEP.DrawCrosshair      = true
  15. SWEP.HoldType            = "normal"
  16. SWEP.Spawnable           = true
  17. SWEP.AdminSpawnable      = true
  18.  
  19. SWEP.Primary.Ammo        = "none"
  20. SWEP.Primary.Delay       = 2
  21. SWEP.Secondary.Delay     = 2
  22. SWEP.Primary.ClipSize    = 5
  23. SWEP.Primary.ClipMax     = 5
  24. SWEP.Primary.DefaultClip = 5
  25. SWEP.Primary.Automatic   = false
  26.  
  27. SWEP.ViewModel           = "models/weapons/v_pistol.mdl"
  28. SWEP.WorldModel          = "models/weapons/w_pistol.mdl"
  29. SWEP.ViewModelFlip       = false
  30.  
  31. function SWEP:PrimaryAttack()
  32.    
  33. end
  34.  
  35. function SWEP:SecondaryAttack()
  36.    
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement