Advertisement
Guest User

connectthree

a guest
Nov 19th, 2015
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.91 KB | None | 0 0
  1. chat = peripheral.wrap("front")
  2. rednet.open("right")
  3.  a = math.random(1,5)
  4.    local function doCommand(a)
  5.      if a == 1 then
  6.        redstone.setOutput("back", true)
  7.       elseif a==2 then
  8.         redstone.setOutput("top", true)
  9.        elseif a == 3 then
  10.          redstone.setOutput("left", true)
  11.         elseif a == 4 then
  12.           redstone.setOutput("bottom", true)
  13.          elseif a == 5 then
  14.            rednet.send(52, "redstone5", "redstone5")
  15.          elseif a == 6 then
  16.            rednet.send(51, "redstone6", "redstone6")
  17.          elseif a == 7 then
  18.            rednet.send(53, "redstone7","redstone 7")
  19.          elseif a == 8 then
  20.            rednet.send(55, "redstone", "redstone8")
  21.          elseif a == 9 then
  22.            rednet.send(54, "redstone", "redstone9")
  23.          elseif a == 10 then
  24.            rednet.send(56, "redstone", "redstone10")
  25.          elseif a == 11 then
  26.            rednet.send(61, "redstone", "redstone11")
  27.        end
  28.    end                  
  29.          
  30. chat.say("Ok, I'm going in spot "..a)
  31.  
  32. doCommand(a)
  33.  
  34. sleep(2)
  35. chat.say("What space would you like to go to?")
  36. local commandNum
  37. repeat
  38.   local player, event, command= os.pullEvent("chat")
  39.   commandNum = tonumber(command:match("%d+"))
  40.   until commandNum and commandNum> 0 and commandNum<12
  41.  
  42. sleep(2)
  43.  
  44. doCommand(commandNum)
  45.  
  46. sleep(2)
  47. topBottom = math.random(1,2)
  48. print("This is top bottom: "..topBottom)
  49. chat.say("Alright, my turn again.")
  50. if topBottom == 1 then
  51.   repeat
  52.     aa = math.random(1,5)
  53.     print(aa)
  54.     until aa~= a and aa ~= command
  55.     sleep(2)
  56.     chat.say("I will go to spot "..aa)
  57.   end
  58.  
  59. if topBottom == 2 then
  60. end
  61.  
  62.  if commandNum == a +5 then
  63. aa = commandNum +5
  64. sleep(2)
  65. chat.say("I will go to spot "..aa)
  66.  
  67.  elseif commandNum ~= a+5 then
  68.   aa = a+5
  69.   sleep(2)
  70.   chat.say("I will go to spot "..aa)
  71.   end
  72.    
  73.  doCommand(aa)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement