Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local uranium = 30047
- local tinyura = 30048
- local enrich = {id = 30243,dmg = 0, qty = 1}
- local rod = {id = 30045, dmg = 0, qty = 1}
- local network = peripheral.wrap("left")
- while true do
- if ( network.countOfItemType(uranium,0) >= 6 and
- network.countOfItemType(tinyura,0) >= 3 ) then
- network.requestCrafting(rod)
- network.requestCrafting(enrich)
- end
- os.sleep(60)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement