Item creation

How to create an item

Tgiann_inventory


```lua
rope = {
    name = "rope",
    label = 'Rope',
    weight = 220,
    type = "item", 
    image = "rope.png",
    unique = false,
    useable = true,
    shouldClose = true, 
    description = "It's a Rope!",
    client = {
        export = 'iconic_rope.rope' -- Script Name . Function name
    },
}
```

Last updated