Advertisement
Guest User

Untitled

a guest
Sep 21st, 2012
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.04 KB | None | 0 0
  1. -- The message could be for example "cobblestone 32"
  2. local modemSide = "right"
  3.  
  4.  
  5. while true do -- Looping for infinite Standby
  6.     sleep(1)
  7.     senderId, message, distance = rednet.receive() -- get request for Item and amount
  8.     -- I will add later here a Check against ID Sproofing.
  9.    
  10.     -- Code here for splitting the message into 2 variables. "cobblestone" should be variable "item"
  11.     -- and "32" should be variable "amount"
  12.        
  13.     for z = 1, amount do  -- Routine to make the request
  14.         print(newline)
  15.         prozent = math.floor(((100 / amount) * z) + 0.5)
  16.         print("Request in Porgress " .. prozent .. "% of " .. amount .. " Count")
  17.         rs.setBundledOutput(modemSide, bcolor)
  18.         sleep(0.3)
  19.         rs.setBundledOutput(modemSide, 0)
  20.         sleep(0.3)                     
  21.     end
  22.    
  23.     -- Here i will add some way of "logging to file" to track the requests.
  24.    
  25.     -- 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).
  26.     -- Just to make sure that the Program does not recive multiple request at the same time.
  27.    
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement