Paste not found.
Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Submitted by Keridos on January 26, 2015

Section 1 (Lua)

function craftingManager()
    local craftables = ae.getCraftables()
	local networkItems = ae.getItemsInNetwork()
	if craftables == nil then return end
    for label,number in pairs(toCraft) do
        for i,j in pairs(craftables) do            
            if not(i == "n") then
                if (j.getItemStack().label == label) then
                    if checkCrafting(label) and number-networkItems[label].getItemStack().size > 0 then
                        crafting[label] = j.request(number-j.getItemStack().size)
                        if crafting[label] == nil or crafting[label].isCanceled() == true then 
                            printTerm("fail "..number-j.getItemStack().size .. " x " .. label)
							crafting[label] = nil
                        else
                            printTerm("success "..number-j.getItemStack().size .. " x " .. label)
							addCraftingToList(label,number-j.getItemStack().size)
                        end
                    end
					break;
                end
            end
        end
    end
end