Advertisement
Guest User

Untitled

a guest
May 12th, 2018
3,436
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. STUN NADE
  2.  
  3. � 2013 CloudSixteen.com do not share, re-distribute or modify
  4. without permission of its author (kurozael@gmail.com).
  5. --]]
  6.  
  7. local ITEM = Clockwork.item:New("grenade_base");
  8. ITEM.name = "Stun Grenade";
  9. ITEM.cost = 50;
  10. ITEM.model = "models/weapons/b_flashbang.mdl";
  11. ITEM.weight = 0.8;
  12. ITEM.access = "V";
  13. ITEM.classes = {CLASS_EOW};
  14. ITEM.uniqueID = "weapon_sim_fas_flashgrenade";
  15. ITEM.business = true;
  16. ITEM.description = "A medium-sized hand grenade with two pins and a metal shell around a shiny core.";
  17. ITEM.isAttachment = true;
  18. ITEM.loweredOrigin = Vector(3, 0, -4);
  19. ITEM.loweredAngles = Angle(0, 45, 0);
  20. ITEM.attachmentBone = "ValveBiped.Bip01_Pelvis";
  21. ITEM.attachmentOffsetAngles = Angle(90, 0, 0);
  22. ITEM.attachmentOffsetVector = Vector(0, 6.55, 8.72);
  23. ITEM:Register();
  24.  
  25.  
  26. SMOKE NADE RED
  27.  
  28. � 2013 CloudSixteen.com do not share, re-distribute or modify
  29. without permission of its author (kurozael@gmail.com).
  30. --]]
  31.  
  32. local ITEM = Clockwork.item:New("grenade_base");
  33. ITEM.name = "M18 Smoke Grenade - Red";
  34. ITEM.cost = 50;
  35. ITEM.model = "models/weapons/b_smoke.mdl";
  36. ITEM.weight = 0.8;
  37. ITEM.access = "V";
  38. ITEM.classes = {CLASS_EOW};
  39. ITEM.uniqueID = "weapon_ins_sim_m18";
  40. ITEM.business = true;
  41. ITEM.description = "An old smoke grenade, with a UU sticker on it. It says 'M18 SMOKE RED.'";
  42. ITEM.isAttachment = true;
  43. ITEM.loweredOrigin = Vector(3, 0, -4);
  44. ITEM.loweredAngles = Angle(0, 45, 0);
  45. ITEM.attachmentBone = "ValveBiped.Bip01_Pelvis";
  46. ITEM.attachmentOffsetAngles = Angle(90, 0, 0);
  47. ITEM.attachmentOffsetVector = Vector(0, 6.55, 8.72);
  48. ITEM:Register();
  49.  
  50.  
  51. SMOKE NADE GREEN
  52.  
  53.  
  54. � 2013 CloudSixteen.com do not share, re-distribute or modify
  55. without permission of its author (kurozael@gmail.com).
  56. --]]
  57.  
  58. local ITEM = Clockwork.item:New("grenade_base");
  59. ITEM.name = "M18 Smoke Grenade - Green";
  60. ITEM.cost = 50;
  61. ITEM.model = "models/weapons/b_smoke.mdl";
  62. ITEM.weight = 0.8;
  63. ITEM.access = "V";
  64. ITEM.classes = {CLASS_EOW};
  65. ITEM.uniqueID = "weapon_sim_fas_smokegrenade";
  66. ITEM.business = true;
  67. ITEM.description = "An old smoke grenade, with a UU sticker on it. It says 'M18 SMOKE GREEN.'";
  68. ITEM.isAttachment = true;
  69. ITEM.loweredOrigin = Vector(3, 0, -4);
  70. ITEM.loweredAngles = Angle(0, 45, 0);
  71. ITEM.attachmentBone = "ValveBiped.Bip01_Pelvis";
  72. ITEM.attachmentOffsetAngles = Angle(90, 0, 0);
  73. ITEM.attachmentOffsetVector = Vector(0, 6.55, 8.72);
  74. ITEM:Register();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement