Advertisement
Guest User

test

a guest
Apr 9th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.67 KB | None | 0 0
  1. function show()
  2.  for slot = 1, 5 do
  3.   if table[slot] ~= false then
  4.     print("Objednavka je: " .. table[slot][1] .. " x " .. table[slot][2] .. " pro podnik: " .. table[slot][4])
  5.     print("Za splneni se vyplati: " .. table[slot][3] .. " kreditu.")
  6.     print(" ----------------------------------------")
  7.   else print("nothing here")
  8.   end
  9.  end
  10. end
  11.  
  12. f1 = false
  13. f2 = false
  14. m1 = false
  15. m2 = false
  16. m3 = false
  17.  
  18. table = {}
  19.   table[1] = f1
  20.   table[2] = f2
  21.   table[3] = m1
  22.   table[4] = m2
  23.   table[5] = m3
  24.  
  25. -- core  
  26.  
  27. show()
  28. rednet.open("right")
  29. while true do
  30.   local id, msg, protocol = rednet.receive("offer")
  31.   f1 = textutils.unserialize(msg)
  32.   show()
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement