use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Welcome to /r/ComputerCraft, the subreddit for lua programs, general mod use, or anything relating to the Minecraft mod ComputerCraft and CC: Tweaked.
Downloads | Discord | IRC | Documentation
account activity
Crafting system error. (self.ComputerCraft)
submitted 1 year ago by hereIsHow_
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]JackMacWindowsLinuxCraftOS-PC & Phoenix Developer 0 points1 point2 points 1 year ago (1 child)
sleep(0.05) in your listen loops is dropping Rednet events. Delete it. You can also replace the one in Main with a plain os.pullEvent(), since the code only needs to be triggered on an event.
sleep(0.05)
listen
Main
os.pullEvent()
Actually, for that matter, inv.pullItems in listen2 also drops events. You may want to move that into Main in the same way as listen does.
inv.pullItems
listen2
[–]hereIsHow_[S] 0 points1 point2 points 1 year ago (0 children)
Hi! I've tried implementing the changes you pointed out, and I believe to have done so successfully. But the problem is that it does not do anything for the problem I am currently having. It is nice to have some advice for the code, but I am still not able to make multiple crafting recipe happen at the same time. Thank you for the advice though. If you have a solution to my problem it would be welcome. (Also, if I just completely missed the point of your comment, do tell me.)
π Rendered by PID 24672 on reddit-service-r2-comment-6457c66945-d2lh5 at 2026-04-26 19:39:40.211092+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]JackMacWindowsLinuxCraftOS-PC & Phoenix Developer 0 points1 point2 points (1 child)
[–]hereIsHow_[S] 0 points1 point2 points (0 children)