Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- The message could be for example "cobblestone 32"
- local modemSide = "right"
- while true do -- Looping for infinite Standby
- sleep(1)
- senderId, message, distance = rednet.receive() -- get request for Item and amount
- -- I will add later here a Check against ID Sproofing.
- -- Code here for splitting the message into 2 variables. "cobblestone" should be variable "item"
- -- and "32" should be variable "amount"
- for z = 1, amount do -- Routine to make the request
- print(newline)
- prozent = math.floor(((100 / amount) * z) + 0.5)
- print("Request in Porgress " .. prozent .. "% of " .. amount .. " Count")
- rs.setBundledOutput(modemSide, bcolor)
- sleep(0.3)
- rs.setBundledOutput(modemSide, 0)
- sleep(0.3)
- end
- -- Here i will add some way of "logging to file" to track the requests.
- -- And here the program sends back a status message if anything was ok or not (I will add it if i figure out the best way to do it).
- -- Just to make sure that the Program does not recive multiple request at the same time.
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement