Advertisement
Guest User

caravanshotgun

a guest
Jun 22nd, 2017
524
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. --[[
  2. © 2013 CloudSixteen.com do not share, re-distribute or modify
  3. without permission of its author (kurozael@gmail.com).
  4. --]]
  5.  
  6. local ITEM = Clockwork.item:New("weapon_base");
  7. ITEM.name = "Caravan Shotgun";
  8. ITEM.cost = 670
  9. ITEM.model = "models/weapons/tfa_nmrih/w_fa_sv10.mdl";
  10. ITEM.weight = 2;
  11. ITEM.access = "V";
  12. ITEM.classes = {CLASS_EMP, CLASS_EOW};
  13. ITEM.uniqueID = "tfa_nmrih_sv10";
  14. ITEM.business = true;
  15. ITEM.description = "The Caravan Shotgun is a modification from several weapons, primarily used by caravaneers and their guards to combat pests and raiders while on the trail..";
  16. ITEM.isAttachment = false;
  17. ITEM.hasFlashlight = true;
  18. ITEM.loweredAngles = Angle(0, 0, -45);
  19. ITEM.loweredOrigin = Vector(3, 0, -4);
  20. ITEM.attachmentBone = "ValveBiped.Bip01_Spine";
  21. ITEM.attachmentOffsetAngles = Angle(0, 0, 0);
  22. ITEM.attachmentOffsetVector = Vector(-2, 5, 4);
  23. ITEM:Register();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement