Advertisement
Guest User

Untitled

a guest
May 28th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. function restricted_weapon(item)
  2. local section = item:section()
  3. if(section=="wpn_beretta")
  4. or(section=="wpn_colt1911")
  5. or(section=="wpn_desert_eagle")
  6. or(section=="wpn_desert_eagle_nimble")
  7. or(section=="wpn_desert_eagle_gold")
  8. or(section=="wpn_fort")
  9. or(section=="wpn_hpsa")
  10. or(section=="wpn_pm")
  11. or(section=="wpn_cz75")
  12. or(section=="wpn_sig220")
  13. or(section=="wpn_aps")
  14. or(section=="wpn_usp")
  15. or(section=="wpn_usp_nimble")
  16. or(section=="wpn_fort_snag")
  17. or(section=="wpn_pm_actor")
  18. or(section=="wpn_mp412")
  19. or(section=="wpn_binoc")
  20. or(section=="wpn_knife")
  21. or(section=="wpn_beretta93r")
  22. or(section=="wpn_sig220_nimble") then
  23. return true
  24. end
  25.  
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement