Advertisement
Guest User

Untitled

a guest
Jun 11th, 2018
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 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("armor_clothes_base");
  7.  
  8. ITEM.name = "Caravaneer Outfit";
  9. ITEM.group = "group058";
  10. ITEM.weight = 1;
  11. ITEM.invSpace = 20;
  12. ITEM.access = "";
  13. ITEM.business = false;
  14. ITEM.protection = 0;
  15. ITEM.description = "A suit commonly worn by caravaneers.";
  16. ITEM.model = "models/thespireroleplay/items/clothes/group058.mdl";
  17. ITEM.maxArmor = 0;
  18. ITEM.hasGasmask = false;
  19. ITEM.hasRebreather = false;
  20. ITEM.isPA = false;
  21. ITEM.isAnonymous = false;
  22. ITEM.useText = "Wear";
  23. ITEM.category = "Outfits";
  24. ITEM.specialBoost = {
  25. P = 1
  26. };
  27.  
  28. function ITEM:GetReplacement(player)
  29. return "models/thespireroleplay/humans/" .. self("group") .. "/" .. self:GetModelName(player);
  30. end;
  31.  
  32. ITEM:Register();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement