Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- shell.run('clear')
- print('RCturtle by Htwray')
- print('Please type in the ID of the controlling')
- print('Computer. Find it out with the Program <ID>')
- print('')
- write('Host ID: ')
- sender = read()
- shell.run('clear')
- rednet.open("right")
- while true do
- action, senderID, text = os.pullEvent()
- if action == "rednet_message" then
- if text == 'drop' then
- local int = 0
- repeat
- turtle.drop()
- int = int + 1
- until int == 9
- int = 0
- elseif text == '1' then
- turtle.select(1)
- elseif text == '2' then
- turtle.select(2)
- elseif text == '3' then
- turtle.select(3)
- elseif text == '4' then
- turtle.select(4)
- elseif text == '5' then
- turtle.select(5)
- elseif text == '6' then
- turtle.select(6)
- elseif text == '7' then
- turtle.select(7)
- elseif text == '8' then
- turtle.select(8)
- elseif text == '9' then
- turtle.select(9)
- elseif text == 'forward' then
- turtle.forward()
- elseif text == 'backward' then
- turtle.back()
- elseif text == 'stop' then
- stop = 'stop'
- sleep(0.1)
- stop = ''
- elseif text == 'left' then
- turtle.turnLeft()
- elseif text == 'right' then
- turtle.turnRight()
- elseif text == 'up' then
- if turtle.detectUp() then
- turtle.digUp()
- else
- turtle.up()
- end
- elseif text == 'down2' then
- turtle.down()
- elseif text == 'down' then
- if turtle.detectDown() then
- turtle.digDown()
- else
- turtle.down()
- end
- elseif text == 'disconnect' then
- rednet.close("right")
- os.reboot()
- elseif text == 'dance' then
- print('TURTLE DANCE!')
- end
- if text == 'dig' then
- turtle.dig()
- end
- if text == 'place' then
- turtle.place()
- end
- if text == 'rs' then
- redstone.setOutput('front', true)
- end
- end
- if action=="key" and senderID == sender then
- x=0
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement