Guest User

Untitled

a guest
Nov 15th, 2021
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. module Base
  2. {
  3. item Bag_Schoolbag
  4. {
  5. WeightReduction = 100,
  6. Weight = 1,
  7. Type = Container,
  8. Capacity = 150000,
  9. DisplayName = School Bag,
  10. IconsForTexture = Backpack_Black;Backpack_Blue;Backpack_Spiffo,
  11. CanBeEquipped = Back,
  12. OpenSound = OpenBag,
  13. CloseSound = CloseBag,
  14. PutInSound = PutItemInBag,
  15. ClothingItem = Bag_SchoolBag,
  16. BloodLocation = Bag,
  17. RunSpeedModifier = 0.97,
  18. AttachmentReplacement = Bag,
  19. ReplaceInSecondHand = Bag_Schoolbag_LHand holdingbagleft,
  20. ReplaceInPrimaryHand = Bag_Schoolbag_RHand holdingbagright,
  21. }
  22. item Bag_FannyPackFront
  23. {
  24. WeightReduction = 100,
  25. ClothingItemExtra = Bag_FannyPackBack,
  26. ClothingItemExtraOption = FannyPack_WearBack,
  27. clothingExtraSubmenu = FannyPack_WearFront,
  28. Weight = 1,
  29. Type = Container,
  30. Capacity = 30000,
  31. DisplayName = Fanny Pack (Front),
  32. Icon = FannyPack,
  33. OpenSound = OpenBag,
  34. CloseSound = CloseBag,
  35. PutInSound = PutItemInBag,
  36. BodyLocation = FannyPackFront,
  37. ClothingItem = Bag_FannyPackFront,
  38. CanBeEquipped = FannyPackFront,
  39. RunSpeedModifier = 0.97,
  40. }
  41. item Bag_FannyPackBack
  42. {
  43. WeightReduction = 100,
  44. ClothingItemExtra = Bag_FannyPackFront,
  45. ClothingItemExtraOption = FannyPack_WearFront,
  46. clothingExtraSubmenu = FannyPack_WearBack,
  47. Weight = 1,
  48. Type = Container,
  49. Capacity = 30000,
  50. DisplayName = Fanny Pack (Back),
  51. Icon = FannyPack,
  52. OpenSound = OpenBag,
  53. CloseSound = CloseBag,
  54. PutInSound = PutItemInBag,
  55. BodyLocation = FannyPackBack,
  56. ClothingItem = Bag_FannyPackBack,
  57. CanBeEquipped = FannyPackBack,
  58. RunSpeedModifier = 0.97,
  59. }
  60. }
Advertisement
Add Comment
Please, Sign In to add comment