Wanders Inventory SystemAboutAboutContactContact (opens in a new tab)
DiscordDiscord (opens in a new tab)
  • Introduction
  • Config
    • Exampleconfig
    • Index
    • Recipes
  • Functions
    • Server
      • Additemtoinventory
      • Additemtoslot
      • Findemptyslot
      • Moveitemwithininventory
      • Removeitemamt
      • Removeitemfrominventory
      • Retrievedata
  • Items
    • Format
    • Custom
      • Internal
      • hooks
        • Equipitem
        • Onuse
        • Unequipitem
    • Data
      • Durability
      • Maxdurability
      • Rarity
      • Strength
      • Stats
        • Armor
        • Crafting Proficiency
        • Damage
        • Healing Efficiency
        • Health
        • Jump
        • Luck
        • Resistance
        • Slots
        • Speed
    • Types
      • Accessory
      • Chest
      • Feet
      • Head
      • Item
      • Legs
      • Stim
  • Introduction
  • About
  • Config
    • Exampleconfig
    • Index
    • Recipes
  • Functions
    • Server
      • Additemtoinventory
      • Additemtoslot
      • Findemptyslot
      • Moveitemwithininventory
      • Removeitemamt
      • Removeitemfrominventory
      • Retrievedata
  • Items
    • Format
    • Custom
      • Internal
      • hooks
        • Equipitem
        • Onuse
        • Unequipitem
    • Data
      • Durability
      • Maxdurability
      • Rarity
      • Strength
      • Stats
        • Armor
        • Crafting Proficiency
        • Damage
        • Healing Efficiency
        • Health
        • Jump
        • Luck
        • Resistance
        • Slots
        • Speed
    • Types
      • Accessory
      • Chest
      • Feet
      • Head
      • Item
      • Legs
      • Stim
  • Contact (opens in a new tab)

On This Page

  • Basic Item with all values
Question? Give us feedback → (opens in a new tab)Edit this page
Items
Format

Item Formatting

Basic Item with all values

{
    name = "Item Name",
    description = "Item Description",
    icon = "path/to/your/file.png",
    quantity = 1,
    maxQuantity = 1,
    value = 0,
    equipable = true,
    type = "Accessory",
    data = {
        strength = 0,
        durability = 0,
        maxDurability = 0,
        stats = {
            health = 0,
            armor = 0,
            resistance = 0,
            damage = 0,
            speed = 0,
            jump = 0,
            luck = 0,
            slots = 0,
            crafting_proficiency = 0,
            healing_efficiency = 0,
        },
        rarity = "Exotic" 
    }
}
RetrievedataInternal

Wanders Inventory System