Item Features

  • Rarityrarity (string) Can be unique, rare, epic, legendary, or mythic. Determines the item’s rarity level.

  • RenamecanRename (boolean) If true, you can rename this item (only if Config.canRenameAllItems = false in config.lua).

  • Change DescriptioncanChangeDescription (boolean) If true, you can change the description for this item (only if Config.canChangeDescription = false in config.lua).

  • ThrowingcanThrow (boolean) If true, you can throw this item (only if Config.throwingSettings.enable = true in pinkFrog_inventoryAddon/config.lua).

  • Throw ProppropThrow (string) Prop to show when you throw the item (only applies if canThrow = true).

  • Place on GroundcanPlaceOnGround (boolean) If true, you can place this item on the ground; it will use the prop defined in propThrow.

['bag_clothes'] = {
	label = 'Bag (Clothes)',
	weight = 1000,
	stack = false,
	close = true,
	consume = 0,
	description = 'A stylish bag to carry your clothes',
	rarity = 'rare', -- can be unique, rare, epic, legendary, mythic
	canRename = true, -- if true, then you can rename this item (only if Config.canRenameAllItems = false in config.lua)
	canChangeDescription = true, -- if true, then you can change description for this item (only if Config.canChangeDescription = false in config.lua)
	canThrow = true, -- if true, then you can throw this item (only if Config.throwingSettings.enable = true in pinkFrog_inventoryAddon/config.lua)
	canPlaceOnGround = true, -- if true, then you can place this item on the ground and takes prop from propThrow
	propThrow = 'prop_nigel_bag_pickup', -- prop to show when you throw item (only if canThrow = true)
	client = {
		export = 'pinkFrog_inventoryAddon.useBagClothes',
	},
},


Last updated