Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chat = peripheral.wrap("front")
- rednet.open("right")
- a = math.random(1,5)
- local function doCommand(a)
- if a == 1 then
- redstone.setOutput("back", true)
- elseif a==2 then
- redstone.setOutput("top", true)
- elseif a == 3 then
- redstone.setOutput("left", true)
- elseif a == 4 then
- redstone.setOutput("bottom", true)
- elseif a == 5 then
- rednet.send(52, "redstone5", "redstone5")
- elseif a == 6 then
- rednet.send(51, "redstone6", "redstone6")
- elseif a == 7 then
- rednet.send(53, "redstone7","redstone 7")
- elseif a == 8 then
- rednet.send(55, "redstone", "redstone8")
- elseif a == 9 then
- rednet.send(54, "redstone", "redstone9")
- elseif a == 10 then
- rednet.send(56, "redstone", "redstone10")
- elseif a == 11 then
- rednet.send(61, "redstone", "redstone11")
- end
- end
- chat.say("Ok, I'm going in spot "..a)
- doCommand(a)
- sleep(2)
- chat.say("What space would you like to go to?")
- local commandNum
- repeat
- local player, event, command= os.pullEvent("chat")
- commandNum = tonumber(command:match("%d+"))
- until commandNum and commandNum> 0 and commandNum<12
- sleep(2)
- doCommand(commandNum)
- sleep(2)
- topBottom = math.random(1,2)
- print("This is top bottom: "..topBottom)
- chat.say("Alright, my turn again.")
- if topBottom == 1 then
- repeat
- aa = math.random(1,5)
- print(aa)
- until aa~= a and aa ~= command
- sleep(2)
- chat.say("I will go to spot "..aa)
- end
- if topBottom == 2 then
- end
- if commandNum == a +5 then
- aa = commandNum +5
- sleep(2)
- chat.say("I will go to spot "..aa)
- elseif commandNum ~= a+5 then
- aa = a+5
- sleep(2)
- chat.say("I will go to spot "..aa)
- end
- doCommand(aa)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement