Advertisement
Good_Pudge

Заказ №1 (доработка)

Jul 8th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. local r = require("robot")
  2. local com = require("component")
  3. local inv = com.inventory_controller
  4.  
  5. while true do
  6.     r.select(1)
  7.     inv.equip()
  8.    
  9.     r.select(4)
  10.    
  11.     r.place()
  12.     r.use()
  13.     r.select(1)
  14.     r.suck()
  15.    
  16.     r.select(2)
  17.     inv.equip()
  18.     r.select(3)
  19.     r.swing()
  20.    
  21.     r.select(3)
  22.     r.dropUp()
  23.    
  24.     r.select(4)
  25.     r.suckDown(1)
  26.    
  27.     r.select(2)
  28.     inv.equip()
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement