Skip to content

Component Crafting

Florian Nücke edited this page Dec 7, 2013 · 3 revisions

This component is provided by the crafting upgrade for robots.

Component name: crafting.
Callbacks:

  • craft([count: number]): boolean
    Tries to craft something from the items in the top left 3x3 area of the robot's inventory. If count is specified will only craft up that number of items. If count is lower than the number of items created in one crafting operation, nothing will be crafted (e.g. trying to craft one stick). Up to one stack can be crafted at a time. The result of the crafting operation will be placed into the selected slot, the first free slot after it, or dropped if the robot's inventory is full.

Example use:

local c = component.crafting -- get primary crafting component
c.craft(10) -- craft up to 10 items

Clone this wiki locally