🆘
Documentation
  • 👋Welcome to T3 Dev
  • Resources
    • 🪄t3_lib
      • Installation
    • 🎴t3_tradingcards
      • Installation
      • Snippets
      • Adding new packs
      • Common Issues
    • 💯t3_grading
      • Installation
      • Snippets
    • 💰t3_comicrobbery
      • Installation
      • Snippets
    • 🚴‍♂️t3_deliveroo
      • Installation
    • 🛤️t3_trainjob
      • Installation
  • External Links
    • Tebex
    • Discord
    • GitHub
Powered by GitBook
On this page
  1. Resources
  2. t3_comicrobbery

Snippets

Item Snippets

Here are some snippets to add items to your framework.

    ['comic'] = {
        label  = 'Comic Book',
        weight = 20,
        consume = 1,
        metadata = {},
        stack = true,
        close = true,
        description = ''
    },
    ['actiondoll'] = {
        label  = 'Action Doll',
        weight = 20,
        consume = 1,
        metadata = {},
        stack = true,
        close = true,
        description = ''
    },
    ['boosterbox'] = {
        label  = 'Booster Box',
        weight = 20,
        consume = 1,
        metadata = {},
        server = {export = 't3_comicrobbery.boosterbox'},
        stack = true,
        close = true,
        description = ''
    },
    ['comic'] = {
        ['name'] = 'comic',
        ['label'] = 'Comic Book',
        ['weight'] = 20,
        ['type'] = 'item',
        ['image'] = 'comic.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = true,
        ['combinable'] = nil,
        ['description'] = 'Comic'
    },
    ['actiondoll'] = {
        ['name'] = 'actiondoll',
        ['label'] = 'Action Doll',
        ['weight'] = 20,
        ['type'] = 'item',
        ['image'] = 'actiondoll.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = true,
        ['combinable'] = nil,
        ['description'] = 'Action Doll'
    },
    ['boosterbox'] = {
        ['name'] = 'boosterbox',
        ['label'] = 'boosterbox',
        ['weight'] = 20,
        ['type'] = 'item',
        ['image'] = 'boosterbox.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = true,
        ['combinable'] = nil,
        ['description'] = 'boosterbox'
    },
    ['comic'] = {
        ['name'] = 'comic',
        ['label'] = 'Comic Book',
        ['weight'] = 20,
        ['type'] = 'item',
        ['image'] = 'comic.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = true,
        ['combinable'] = nil,
        ['description'] = 'Comic'
    },
    ['actiondoll'] = {
        ['name'] = 'actiondoll',
        ['label'] = 'Action Doll',
        ['weight'] = 20,
        ['type'] = 'item',
        ['image'] = 'actiondoll.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = true,
        ['combinable'] = nil,
        ['description'] = 'Action Doll'
    },
    ['boosterbox'] = {
        ['name'] = 'boosterbox',
        ['label'] = 'boosterbox',
        ['weight'] = 20,
        ['type'] = 'item',
        ['image'] = 'boosterbox.png',
        ['unique'] = true,
        ['useable'] = true,
        ['shouldClose'] = true,
        ['combinable'] = nil,
        ['description'] = 'boosterbox'
    },

Last updated 1 year ago

💰