CRAFT(<item[:damage]>,[amount],[throw],[verbose])
Queues an auto-crafting request
Example
// Crafts only once
CRAFT("planks")
// Crafts 12 planks
CRAFT("planks",12)
// Crafts 12 planks and throws it on the ground
CRAFT("planks",12,true)
// Logs additional messages to the chat window
CRAFT("planks",12,false,true)