Advertisement
Guest User

startup

a guest
Mar 30th, 2013
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.71 KB | None | 0 0
  1. shell.run('clear')
  2. print('RCturtle by Htwray')
  3. print('Please type in the ID of the controlling')
  4. print('Computer. Find it out with the Program <ID>')
  5. print('')
  6. write('Host ID: ')
  7. sender = read()
  8.  
  9. shell.run('clear')
  10.  rednet.open("right")
  11.  while true do
  12.  action, senderID, text = os.pullEvent()
  13.  if action == "rednet_message" then
  14.  if text == 'drop' then
  15.  local int = 0
  16.  repeat
  17.  turtle.drop()
  18.  int = int + 1
  19.  until int == 9
  20.  int = 0
  21.  elseif text == '1' then
  22.  turtle.select(1)
  23.  elseif text == '2' then
  24.  turtle.select(2)
  25.  elseif text == '3' then
  26.  turtle.select(3)
  27.  elseif text == '4' then
  28.  turtle.select(4)
  29.  elseif text == '5' then
  30.  turtle.select(5)
  31.  elseif text == '6' then
  32.  turtle.select(6)
  33.  elseif text == '7' then
  34.  turtle.select(7)
  35.  elseif text == '8' then
  36.  turtle.select(8)
  37.  elseif text == '9' then
  38.  turtle.select(9)
  39.  elseif text == 'forward' then
  40.  turtle.forward()
  41.  elseif text == 'backward' then
  42.  turtle.back()
  43.  elseif text == 'stop' then
  44.  stop = 'stop'
  45.  sleep(0.1)
  46.  stop = ''
  47.  elseif text == 'left' then
  48.  turtle.turnLeft()
  49.  elseif text == 'right' then
  50.  turtle.turnRight()
  51.  elseif text == 'up' then
  52.  if turtle.detectUp() then
  53.  turtle.digUp()
  54.  else
  55.  turtle.up()
  56.  end
  57.  elseif text == 'down2' then
  58.  turtle.down()
  59.  elseif text == 'down' then
  60.  if turtle.detectDown() then
  61.  turtle.digDown()
  62.  else
  63.  turtle.down()
  64.  end
  65.  elseif text == 'disconnect' then
  66.  rednet.close("right")
  67.  os.reboot()
  68.  elseif text == 'dance' then
  69.  print('TURTLE DANCE!')
  70.  end
  71.  
  72.  
  73.  if text == 'dig' then
  74.  turtle.dig()
  75.  end
  76.  if text == 'place' then
  77.  turtle.place()
  78.  end
  79.  if text == 'rs' then
  80.  redstone.setOutput('front', true)
  81.  end
  82.  end
  83.  if action=="key" and senderID == sender then
  84.  x=0
  85.  end
  86.  end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement