Advertisement
urielsalis

replication

May 6th, 2013
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.63 KB | None | 0 0
  1. --api loading
  2. os.stage = {}
  3. function setStage(str)
  4. os.stage[1] = str
  5. end
  6. function getStage()
  7. return os.stage[1]
  8. end
  9. function setDoing(str)
  10. os.stage[2] = str
  11. end
  12. function getDoing()
  13. return os.stage[2]
  14. end
  15. setStage("Loading")
  16. setDoing("Loading apis")
  17. function clear()
  18. term.clear()
  19. term.setCursorPos(1,1)
  20. print("ID: "..os.getComputerID())
  21. print("Stage: "..getStage())
  22. print("Doing: "..getDoing())
  23. local a = #getStage()
  24. local b = #getDoing()
  25. if a > b then
  26. len = a
  27. else
  28. len = b
  29. end
  30. str = ""
  31. for i=1, len do str = str.."-" end
  32. print(str)
  33. str = nil
  34. i = nil
  35. end
  36. clear()
  37. file = fs.open("inventory", "w")
  38. file.write([[function getStackSize(type)
  39. return 64
  40. end
  41.  
  42.  
  43. local function dropIn(inv,type,quantity)
  44. somePlaced=false
  45. for i=1,inv.numSlots,1 do
  46. if inv.slots[i].type==type then
  47. --how many can fit?
  48. if quantity+inv.slots[i].quantity <=64 then
  49. inv.slots[i].quantity=inv.slots[i].quantity+quantity
  50. somePlaced=true
  51. quantity=0
  52. break
  53. else
  54. quantity=quantity-(64-inv.slots[i].quantity)
  55. inv.slots[i].quantity=64
  56. somePlaced=true
  57. end
  58. elseif inv.slots[i].type==0 then
  59. inv.slots[i].type=type
  60. inv.slots[i].quantity=quantity
  61. quantity=0
  62. somePlaced=true
  63. break
  64. end
  65. end
  66.  
  67. if inv.autoSave then
  68. save(inv)
  69. end
  70. return somePlaced, quantity
  71. end
  72.  
  73.  
  74. local function suckOut(inv)
  75. qtyTaken=0
  76. type=0
  77. for i=1,inv.numSlots,1 do
  78. if inv.slots[i].quantity~=0 then
  79. qtyTaken=inv.slots[i].quantity
  80. type=inv.slots[i].type
  81. inv.slots[i].type=0
  82. inv.slots[i].quantity=0
  83. if inv.autoSave then
  84. save(inv)
  85. end
  86. return type, qtyTaken
  87. end
  88. end
  89. return 0, 0
  90. end
  91.  
  92.  
  93. local function getQuantity(inv,type)
  94. count=0
  95. for n,slot in pairs(inv.slots) do
  96. if slot.type==type then
  97. count=count+slot.quantity
  98. end
  99. end
  100. return count
  101. end
  102.  
  103. local function findSlot(inv,type,after)
  104. next=after and after+1 or 1
  105. for i=next,inv.numSlots,1 do
  106. if inv.slots[next].type==type then
  107. return next
  108. end
  109. next=next+1
  110. end
  111. return 0
  112. end
  113.  
  114. function getNextUnknownType(inv)
  115. local i=1
  116. local type="unknown"
  117. while true do
  118. if inv:findSlot(type)==0 then
  119. return type
  120. end
  121. i=i+1
  122. type="unknown"..i
  123. end
  124. end
  125.  
  126.  
  127. function save(inv,filename)
  128. if filename==nil or filename=="" then
  129. filename=inv.fileName
  130. end
  131. if filename==nil or filename=="" then
  132. filename=".inventory"
  133. count=1
  134. while fs.exists(filename) do
  135. count=count+1
  136. filename=".inventory"..count
  137. end
  138. end
  139.  
  140. inv.fileName=filename
  141.  
  142. local file=fs.open(filename,"w")
  143. file.write("inv\n")
  144. file.write(inv.numSlots.."\n")
  145. for i=1,inv.numSlots,1 do
  146. file.write(inv.slots[i].quantity.." "..inv.slots[i].type.."\n")
  147. end
  148. file.close()
  149. end
  150.  
  151.  
  152. function load(filename)
  153. local inv=nil
  154. if not fs.exists(filename) then
  155. return nil
  156. end
  157. local file=fs.open(filename,"r")
  158. local header=file.readLine()
  159. if header=="inv" then
  160. local size=file.readLine()+0
  161. inv=inventory.create(inv,false)
  162. inv.fileName=filename
  163. for i=1,size,1 do
  164. local line=file.readLine()
  165. local spacePos=string.find(line," ")
  166. inv.slots[i].quantity=string.sub(line,1,spacePos-1)+0
  167. inv.slots[i].type=string.sub(line,spacePos+1)
  168. end
  169. end
  170.  
  171. return inv
  172.  
  173. end
  174.  
  175.  
  176. local function display(inv)
  177. str=""
  178. for i=1,inv.numSlots,1 do
  179. str=str..i.." - "..inv.slots[i].type.." x"..inv.slots[i].quantity.."\t"
  180. end
  181. print(str)
  182. end
  183.  
  184. local function setType(inv, slot, type)
  185. prevType=inv.slots[slot].type
  186. inv.slots[slot].type=type
  187.  
  188. --if prevtype was specified at all, get others identified as same
  189. if prevType~=0 then
  190. for i=1,inv.numSlots,1 do
  191. if inv.slots[i].type==prevType then
  192. inv.slots[i].type=type
  193. end
  194. end
  195. end
  196.  
  197. if inv.autoSave then
  198. save(inv)
  199. end
  200. end
  201.  
  202. inventoryTemplate= {
  203. dropIn=dropIn,
  204. suckOut=suckOut,
  205. getQuantity=getQuantity,
  206. display=display,
  207. findSlot=findSlot,
  208. setType=setType,
  209. getNextUnknownType=getNextUnknownType,
  210.  
  211. autoSave=false,
  212. fileName=""
  213. }
  214.  
  215.  
  216. local function initializeTurtleInventory(inv)
  217. --everything will be unknown..
  218. unknownCount=0
  219.  
  220. for i=1,inv.numSlots,1 do
  221. q=turtle.getItemCount(i)
  222. if q>0 then
  223. --compare to previous
  224. turtle.select(i)
  225. inv.slots[i].quantity=q
  226. for j=1,i-1,1 do
  227. if turtle.compareTo(j) then
  228. inv.slots[i].type=inv.slots[j].type
  229. break
  230. end
  231. end
  232. if inv.slots[i].type==0 then
  233. unknownCount=unknownCount+1
  234. inv.slots[i].type="unknown"..unknownCount
  235. end
  236. end
  237. end
  238. end
  239.  
  240.  
  241. function create(numSlots, isMe)
  242. newInv={}
  243. if numSlots==nil then
  244. numSlots=16 --assume minimum, for safety
  245. end
  246.  
  247. newInv.numSlots=numSlots
  248. newInv.slots={}
  249. newInv.isMe=isMe and true or false
  250.  
  251. for i=1,numSlots,1 do
  252. newInv.slots[i]={}
  253. newInv.slots[i].quantity=0
  254. newInv.slots[i].type=0
  255. end
  256.  
  257. setmetatable(newInv,{__index=inventoryTemplate})
  258. --if it's an isMe, initialize automatically
  259. if isMe then
  260. initializeTurtleInventory(newInv)
  261. end
  262.  
  263. return newInv
  264.  
  265. end]])
  266. file.close()
  267. file = fs.open("t", "w")
  268. file.write([[--DEPENDS REQ:inventory
  269. --[[== turtlex api ====================
  270. high-level alternative to turtle api,
  271. adds position and inventory tracking
  272. with persistance through unloading or
  273. reboot.
  274.  
  275. code by GopherAtl
  276. Do whatever you want with it, just
  277. give me credit, and if you redistribute
  278. please link back to the turtlex thread
  279. on the computercraft forums.
  280. =====================================]]
  281. local native=turtle
  282.  
  283. --[[ as-yet unimplemented
  284. function attack()
  285. function attackUp()
  286. function attackDown()
  287. --]]
  288.  
  289. --[[ internal variables ]]--
  290. local dirMap={north=0, east=1, south=2, west=3}
  291. local dirVMap={}
  292. dirVMap[0]= vector.new( 0, 0,-1)
  293. dirVMap[1]= vector.new( 1, 0, 0)
  294. dirVMap[2]= vector.new( 0, 0, 1)
  295. dirVMap[3]= vector.new(-1, 0, 0)
  296.  
  297. local position=vector.new(0,0,0)
  298. local direction=0
  299. local selectedSlot = 1
  300. local myInventory=nil
  301. local posStack={}
  302. local lastReportedPos=vector.new(0,0,0)
  303. local monitorId=nil
  304.  
  305. --[[===== internal methods ======]]--
  306.  
  307. local function reportPos(msg)
  308. if monitorId then
  309. msg = msg or "moved"
  310. rednet.send(monitorId,"update "..position.x.." "..position.y.." "..position.z.." "..msg)
  311. lastReportedPos={x=position.x,y=position.y,z=position.z}
  312. end
  313. end
  314.  
  315. local function reportPosIfChanged()
  316. if monitorId then
  317. local d=math.abs(position.x-lastReportedPos.x) +
  318. math.abs(position.y-lastReportedPos.y) +
  319. math.abs(position.z-lastReportedPos.z)
  320. if d>8 then
  321. reportPos("moved")
  322. end
  323. end
  324. end
  325.  
  326. local function loadHelp(filename)
  327. if fs.exists(filename) then
  328. local file=fs.open(filename,"r")
  329. local text=file.readAll()
  330. file.close()
  331. return text
  332. end
  333. end
  334.  
  335. local function loadAction()
  336. local text=loadHelp(".action")
  337. return text
  338. end
  339.  
  340. local function loadMonitor()
  341. local text=loadHelp(".monitor")
  342. if text then
  343. monitorId=tonumber(text)
  344. end
  345. end
  346.  
  347. function gpsUpdate()
  348. local succ,x,y,z=pcall(gps.locate,1)
  349. if succ and x then
  350. position=vector.new(x,y,z)
  351. if native.forward() then
  352. local nx,ny,nz=gps.locate(1)
  353. native.back()
  354. if nx<x then
  355. direction=3
  356. elseif nx>x then
  357. direction=1
  358. elseif nz<z then
  359. direction=0
  360. else
  361. direction=2
  362. end
  363. elseif native.back() then
  364. local nx,ny,nz=gps.locate(1)
  365. native.forward()
  366. if nx<x then
  367. direction=1
  368. elseif nx>x then
  369. direction=3
  370. elseif nz<z then
  371. direction=2
  372. else
  373. direction=0
  374. end
  375. else
  376. native.turnLeft()
  377. if native.forward() then
  378. local nx,ny,nz=gps.locate(1)
  379. native.back()
  380. if nx<x then
  381. direction=0
  382. elseif nx>x then
  383. direction=2
  384. elseif nz<z then
  385. direction=1
  386. else
  387. direction=3
  388. end
  389. elseif native.back() then
  390. local nx,ny,nz=gps.locate(1)
  391. native.forward()
  392. if nx<x then
  393. direction=2
  394. elseif nx>x then
  395. direction=0
  396. elseif nz<z then
  397. direction=3
  398. else
  399. direction=1
  400. end
  401. end
  402. native.turnRight()
  403. end
  404. end
  405. end
  406.  
  407. local function loadPosition()
  408. local text=loadHelp(".position")
  409. if text then
  410. local x, y, z, d=string.match(text,"^(-?%d+)%s+(-?%d+)%s+(-?%d+)%s+(%d+)$")
  411. position=vector.new(tonumber(x),tonumber(y),tonumber(z))
  412. direction=tonumber(d)
  413. end
  414. end
  415.  
  416. local function loadSelected()
  417. local text=loadHelp(".selected")
  418. if text then
  419. selectedSlot=tonumber(text)
  420. native.select(selectedSlot)
  421. else
  422. --make sure they agree at least
  423. selectedSlot=1
  424. native.select(1)
  425. end
  426. end
  427.  
  428. local function loadPosStack()
  429. local text=loadHelp(".posStack")
  430. if text then
  431. posStack=textutils.unserialize(text)
  432. else
  433. posStack={}
  434. end
  435. end
  436.  
  437. function loadState()
  438. loadMonitor()
  439. loadPosition()
  440. loadSelected()
  441. ---[[
  442. loadPosStack()
  443. --]]
  444. myInventory=inventory.load(".inventory")
  445. if myInventory==nil then
  446. myInventory=inventory.create(16,true)
  447. else
  448. myInventory.isMe=true
  449. end
  450. local action=loadAction()
  451. if action then
  452. --fix...??
  453. local tokens={}
  454. string.gsub(action,"(%S+)",function(t) tokens[#tokens+1]=(tonumber(t) or t) return end)
  455. if tokens[1]=="move" then
  456. --remaining parameters are the position it was moving to.
  457. --replace stored position with this.
  458. position=vector.new(tokens[2],tokens[3],tokens[4])
  459. elseif tokens[1]=="turn" then
  460. direction=tokens[2]
  461. end
  462. fs.delete(".action")
  463. --regardless, delete it now
  464. --saveHelp(".action") --nil or "" as test deletes
  465. end
  466. myInventory.autoSave=true
  467.  
  468. end
  469.  
  470. local function saveHelp(filename, text)
  471. if text and text~="" then
  472. file=fs.open(filename,"w")
  473. file.write(text)
  474. file.close()
  475. else
  476. fs.delete(filename)
  477. end
  478. end
  479.  
  480. local function saveAction(action)
  481. saveHelp(".action",action)
  482. end
  483.  
  484. local function saveMonitor()
  485. if monitorId then
  486. saveHelp(".monitor",monitorId)
  487. end
  488. end
  489.  
  490. local function savePosition()
  491. saveHelp(".position",position.x.." "..position.y.." "..position.z.." "..direction)
  492. reportPosIfChanged()
  493. end
  494.  
  495. local function saveSelected()
  496. saveHelp(".selectedSlot",selectedSlot)
  497. end
  498.  
  499. local function savePosStack()
  500. saveHelp(".posStack",textutils.serialize(posStack))
  501. end
  502.  
  503. function saveState()
  504. savePosition()
  505. saveSelected()
  506. savePosStack()
  507. inventory.save(myInventory,".inventory")
  508. end
  509.  
  510.  
  511. --[[===== public API functions ====]]--
  512.  
  513. function setMonitorId(id)
  514. monitorId=id
  515. saveMonitor()
  516. end
  517.  
  518. function getMonitorId()
  519. return monitorId
  520. end
  521.  
  522. --[[
  523. Convert the parameter into a turtlex
  524. direction value (0=north, 1=east,
  525. 2=south, 3=north). Accepts numbers,
  526. which are range-checked, or strings,
  527. which are matched to "north," "south,"
  528. "east," or "west," ignoring case and
  529. allowing for abitrary abbreviations
  530. (ex, "n", "No", "noR", or "NORTH" all
  531. match "north" and return as "0")
  532. returns nil on invalid values
  533. --]]
  534. function todirection(val)
  535. if type(val) == "number" then
  536. return val>=0 and val<=4 and val or nil
  537. elseif type(val)=="string" then
  538. for i,dir in pairs({"north","east","south","west"}) do
  539. if #val<=#dir and string.sub(dir,1,#val) == string.lower(val) then
  540. return i-1
  541. end
  542. end
  543. end
  544. end
  545.  
  546. --[[
  547. Converts a turtlex direction into a
  548. string, north/south/east/west, if
  549. parameter is invalid returns nil.
  550. --]]
  551. function directionToString(dir)
  552. if dir==0 then return "north"
  553. elseif dir==1 then return "east"
  554. elseif dir==2 then return "south"
  555. elseif dir==3 then return "west"
  556. end
  557. end
  558.  
  559.  
  560. --[[
  561. compares actual turtle inventory to
  562. myInventory, updates all quantities, 0s
  563. type for newly-empty slots and attempts
  564. to identify any new items, attaching
  565. "unknown" tags to those that do not
  566. match available items.
  567.  
  568. return: changed, added, removed
  569. changed : boolean, true if anything
  570. changed.
  571. added/removed: arrays of tables for each
  572. slot which gained or lost items. Each
  573. table has slot, type, and count, where
  574. count is how many were added/removed.
  575. --]]
  576. function updateInventory()
  577. --save selected slot to reselect when done
  578. local changed=false
  579. local prevSlot=selectedSlot
  580. local addedStuff={}
  581. local removedStuff={}
  582. for i=1,16,1 do
  583. local turtleCount=native.getItemCount(i)
  584. local invCount=myInventory.slots[i].quantity
  585. if invCount~=turtleCount then
  586. --item count has changed...
  587. changed=true
  588. if invCount==0 then
  589. --we had none before, have to compare to other types
  590. select(i)
  591. local found=false
  592. for j=1,16,1 do
  593. if i~=j then
  594. if myInventory.slots[j].type~=0 and compareTo(j) then
  595. --got a match
  596. myInventory.slots[i].type=myInventory.slots[j].type
  597. found=true
  598. break
  599. end
  600. end
  601. end
  602. if not found then
  603. myInventory.slots[i].type=myInventory:getNextUnknownType()
  604. end
  605. elseif turtleCount==0 then
  606. --add to dropped
  607. removedStuff[#removedStuff+1]={
  608. type=myInventory.slots[i].type,
  609. count=myInventory.slots[i].quantity,
  610. slot=i,
  611. }
  612. --we don't have anymore, zero type
  613. myInventory.slots[i].type=0
  614. end
  615. --if we have more now...
  616. if turtleCount>invCount then
  617. --add to newstuff list
  618. addedStuff[#addedStuff+1]= {
  619. type=myInventory.slots[i].type,
  620. count=turtleCount-invCount,
  621. slot=i,
  622. }
  623. end
  624. --in ALL cases, update quantity
  625. myInventory.slots[i].quantity=native.getItemCount(i)
  626. end
  627. end
  628. if changed then
  629. inventory.save(myInventory,".inventory")
  630. end
  631. select(prevSlot)
  632. return changed, addedStuff, removedStuff
  633. end
  634.  
  635.  
  636. --[[
  637. internal, helper function for
  638. directional move functions
  639. --]]
  640. local function movehelp(moveFunc, unmoveFunc, digFunc, detectFunc, dirv, count, onFail, onStepCallback)
  641. count=count or 1
  642. for i=1,count,1 do
  643. local nextPosition=position+dirv
  644. saveAction("move "..nextPosition.x.." "..nextPosition.y.." "..nextPosition.z)
  645. local moveRes=moveFunc()
  646. if moveRes==false then
  647. saveAction("")
  648. if onFail=="return" then
  649. local succ,dist
  650. succ,dist=unmoveFunc(i-1,"stop")
  651. return false, i-1-dist
  652. elseif onFail=="dig" then
  653. local res=false
  654. local tries=0
  655. repeat
  656. --retry..
  657. saveAction("")
  658. if detectFunc() then
  659. digFunc()
  660. end
  661. os.sleep(.2)
  662. saveAction("move "..nextPosition.x.." "..nextPosition.y.." "..nextPosition.z)
  663. res=moveFunc()
  664. tries=tries+1
  665. until res==true or tries>=10
  666. if res==false then
  667. saveAction("")
  668. return false,i-1
  669. end
  670. else --default stop
  671. return false, i-1
  672. end
  673. end
  674. if onStepCallback then onStepCallback() end
  675. position=nextPosition
  676. savePosition()
  677. end
  678. saveAction("")
  679. return true, count
  680. end
  681.  
  682. function forward(count, onFail, onStepCallback)
  683. local res1,res2=movehelp(native.forward,back,dig,native.detect,dirVMap[direction], count, onFail, onStepCallback)
  684. return res1,res2
  685. end
  686.  
  687. function back(count, onFail, onStepCallback)
  688. local res1,res2=movehelp(native.back,forward,digBack,detectBack,(dirVMap[(direction+2)%4]), count, onFail, onStepCallback)
  689. return res1,res2
  690. end
  691.  
  692. function up(count, onFail, onStepCallback)
  693. local res1,res2=movehelp(native.up,down,digUp,native.detectUp,vector.new(0,1,0), count, onFail, onStepCallback)
  694. return res1,res2
  695. end
  696.  
  697. function down(count, onFail, onStepCallback)
  698. local res1,res2=movehelp(native.down,up,digDown,native.detectDown,vector.new(0,-1,0), count, onFail, onStepCallback)
  699. return res1,res2
  700. end
  701.  
  702. function left(count, onFail, onStepCallback)
  703. turnLeft()
  704. local res,c=forward(count,onFail, onStepCallback)
  705. turnRight()
  706. return res,c
  707. end
  708.  
  709. function right(count, onFail)
  710. turnRight()
  711. local res,c=forward(count,onFail, onStepCallback)
  712. turnLeft()
  713. return res,c
  714. end
  715.  
  716. function turnLeft()
  717. direction=(direction+3)%4
  718. saveAction("turn "..direction)
  719. native.turnLeft()
  720. savePosition()
  721. saveAction("")
  722. end
  723.  
  724. function turnRight()
  725. direction=(direction+1)%4
  726. saveAction("turn "..direction)
  727. native.turnRight()
  728. savePosition()
  729. saveAction("")
  730. end
  731.  
  732. function turnAround()
  733. direction=(direction+1)%4
  734. saveAction("turn "..direction)
  735. native.turnLeft()
  736. savePosition()
  737. direction=(direction+1)%4
  738. saveAction("turn "..direction)
  739. native.turnLeft()
  740. savePosition()
  741. saveAction("")
  742. end
  743.  
  744.  
  745. function getPosition()
  746. return position.x,position.y,position.z
  747. end
  748.  
  749. --gets the chunk coordinates
  750. function getChunk()
  751. return math.floor(position.x/16), math.floor(position.z/16)
  752. end
  753.  
  754. --gets position within chunk (range 0-15)
  755. function getChunkPosition()
  756. return position.x%16, position.z%16
  757. end
  758.  
  759. function setPosition(x,y,z)
  760. position=vector.new(x,y,z)
  761. end
  762.  
  763. function getDirection()
  764. return direction
  765. end
  766.  
  767. function getDirectionV(dir)
  768. if dir==nil or dir=="forward" then
  769. return dirVMap[direction]
  770. end
  771. if dir=="back" then
  772. return dirVMap[(direction+2)%4]
  773. end
  774. if dir=="left" then
  775. return dirVMap[(direction+3)%4]
  776. end
  777. if dir=="right" then
  778. return dirVMap[(direction+1)%4]
  779. end
  780. if dir=="up" then
  781. return vector.new( 0, 1,0)
  782. end
  783. if dir=="down" then
  784. return vector.new( 0, -1,0)
  785. end
  786. return nil --invalid direction
  787. end
  788.  
  789. function setDirection(dir)
  790. local newdir=todirection(dir)
  791. if newdir then
  792. direction=newdir
  793. end
  794. end
  795.  
  796. function move(x, y, z, onBlocked)
  797. local succ, dist, blocked, done
  798. local prevDir=direction
  799. local moves={}
  800. local dig=false
  801. while true do
  802. blocked=true
  803. done=true
  804. if x>0 then
  805. face("east")
  806. succ,dist=forward(x,"stop")
  807. x=x-dist
  808. if dist>0 then
  809. moves[#moves+1]={dir="east",dist=dist}
  810. blocked=false
  811. end
  812. done=done and succ
  813. elseif x<0 then
  814. face("west")
  815. succ,dist=forward(-x,"stop")
  816. x=x+dist
  817. if dist>0 then
  818. moves[#moves+1]={dir="west",dist=dist}
  819. blocked=false
  820. end
  821. done=done and succ
  822. end
  823. if y>0 then
  824. succ,dist=up(y,"stop")
  825. y=y-dist
  826. if dist>0 then
  827. moves[#moves+1]={dir="up",dist=dist}
  828. blocked=false
  829. end
  830. done=done and succ
  831. elseif y<0 then
  832. succ,dist=down(-y,"stop")
  833. y=y+dist
  834. if dist>0 then
  835. moves[#moves+1]={dir="down",dist=dist}
  836. blocked=false
  837. end
  838. done=done and succ
  839. end
  840. if z>0 then
  841. face("south")
  842. succ,dist=forward(z,"stop")
  843. z=z-dist
  844. if dist>0 then
  845. moves[#moves+1]={dir="south",dist=dist}
  846. blocked=false
  847. end
  848. done=done and succ
  849. elseif z<0 then
  850. face("north")
  851. succ,dist=forward(-z,"stop")
  852. z=z+dist
  853. if dist>0 then
  854. moves[#moves+1]={dir="north",dist=dist}
  855. blocked=false
  856. end
  857. done=done and succ
  858. end
  859. if done then
  860. return true, moves
  861. end
  862. if blocked then
  863. if onBlocked=="return" then
  864. for i=#moves,1,-1 do
  865. if moves[i].dir=="north" then
  866. face("south")
  867. forward(moves[i].dist)
  868. elseif moves[i].dir=="south" then
  869. face("north")
  870. forward(moves[i].dist)
  871. elseif moves[i].dir=="east" then
  872. face("west")
  873. forward(moves[i].dist)
  874. elseif moves[i].dir=="west" then
  875. face("east")
  876. forward(moves[i].dist)
  877. elseif moves[i].dir=="up" then
  878. down(moves[i].dist)
  879. elseif moves[i].dir=="down" then
  880. up(moves[i].dist)
  881. end
  882. end
  883. face(prevDir)
  884. return false
  885. elseif onBlocked=="dig" then
  886. succ=true
  887. if x>0 then
  888. face("east")
  889. succ=forward(x,"dig") and succ
  890. moves[#moves+1]={dir="east",dist=x}
  891. elseif x<0 then
  892. face("west")
  893. succ=forward(-x,"dig") and succ
  894. moves[#moves+1]={dir="west",dist=-x}
  895. end
  896. if z>0 then
  897. face("south")
  898. succ=forward(z,"dig") and succ
  899. moves[#moves+1]={dir="south",dist=z}
  900. elseif z<0 then
  901. face("north")
  902. succ=forward(-z,"dig") and succ
  903. moves[#moves+1]={dir="north",dist=-z}
  904. end
  905. if y>0 then
  906. succ=up(y,"dig") and succ
  907. moves[#moves+1]={dir="up",dist=y}
  908. elseif y<0 then
  909. succ=down(-y,"dig") and succ
  910. moves[#moves+1]={dir="down",dist=-y}
  911. end
  912. return succ, moves
  913. else
  914. return false
  915. end
  916. end
  917. end
  918. end
  919.  
  920. function goto(x,y,z,onBlocked)
  921. return move(x-position.x,y-position.y,z-position.z,onBlocked)
  922. end
  923.  
  924. function face(newDirection)
  925. if type(newDirection)=="string" then
  926. newDirection=dirMap[newDirection]
  927. end
  928. turns=newDirection-direction
  929. if turns>2 then turns=turns-4 end
  930. if turns<-2 then turns=turns+4 end
  931. if turns==-1 then
  932. turnLeft()
  933. elseif turns==1 then
  934. turnRight()
  935. elseif turns~=0 then
  936. turnAround()
  937. end
  938. end
  939.  
  940.  
  941. function pushPos()
  942. posStack[#posStack+1]={position,direction}
  943. savePosStack()
  944. end
  945.  
  946. function popPos()
  947. if #posStack>0 then
  948. local t=posStack[#posStack]
  949. local pos=t[1]
  950. local dir=t[2]
  951. posStack[#posStack]=nil
  952. savePosStack()
  953. if go then
  954. local res=goto(pos.x,pos.y,pos.z)
  955. face(dir)
  956. return res
  957. else
  958. return true
  959. end
  960. end
  961. return nil
  962. end
  963.  
  964. function topPos()
  965. return posStack[#posStack]
  966. end
  967.  
  968. function getPosStackSize()
  969. return #posStack
  970. end
  971.  
  972. function getPosStackItem(index)
  973. if type(index)~="number" then
  974. error("turtlex:getPosStackItem: parameter must be a number!")
  975. end
  976. if index<=0 or index>#posStack then
  977. error("turtlex:getPosStackItem: index out of range!")
  978. end
  979. return posStack[index]
  980. end
  981.  
  982. function clearStack()
  983. posStack={}
  984. savePosStack()
  985. end
  986.  
  987.  
  988. function select(index)
  989. succ,err = pcall(native.select,index)
  990. if succ then
  991. selectedSlot=index
  992. saveSelected()
  993. return succ
  994. else
  995. return false, err
  996. end
  997. end
  998.  
  999. function getSelected()
  1000. return selectedSlot, myInventory.slots[selectedSlot].type
  1001. end
  1002.  
  1003. function getInventory()
  1004. return myInventory
  1005. end
  1006.  
  1007. function getItemType(slot)
  1008. local prevSlot=selectedSlot
  1009. if slot~=nil then
  1010. select(slot)
  1011. else
  1012. slot=selectedSlot
  1013. end
  1014. local res=myInventory.slots[selectedSlot].type
  1015. if slot~=prevSlot then
  1016. select(prevSlot)
  1017. end
  1018. return res
  1019. end
  1020.  
  1021. function setItemType(type, slot)
  1022. if slot==nil then
  1023. slot=selectedSlot
  1024. end
  1025. myInventory:setType(slot,type)
  1026. end
  1027.  
  1028.  
  1029. function getItemCount(ident)
  1030. if ident==nil then
  1031. ident=selectedSlot
  1032. elseif type(ident)~="number" then
  1033. if tonumber(ident) then
  1034. ident=tonumber(ident)
  1035. else
  1036. --slot is not a number, must be a type!
  1037. local total=0
  1038. for slot in typeSlots(ident) do
  1039. total=total+native.getItemCount(slot)
  1040. end
  1041. return total
  1042. end
  1043. end
  1044. --if it gets here, it was a slot#
  1045. return native.getItemCount(ident)
  1046. end
  1047.  
  1048. function getItemSpace(slot)
  1049. if slot==nil then slot=selectedSlot end
  1050. return native.getItemSpace(slot)
  1051. end
  1052.  
  1053. function findItemType(type, after)
  1054. return myInventory:findSlot(type,after)
  1055. end
  1056.  
  1057. function transferTo(slot,qty)
  1058. local res=native.transferTo(slot,qty)
  1059. if res then
  1060. updateInventory()
  1061. end
  1062. return res
  1063. end
  1064.  
  1065. local function iterTypeSlots(type,after)
  1066. local v=findItemType(type,after)
  1067. if v~=0 then
  1068. return v
  1069. end
  1070. end
  1071.  
  1072. function typeSlots(t)
  1073. return iterTypeSlots, t, 0
  1074. end
  1075.  
  1076. function findLastItemType(type, before)
  1077. for i=before-1,1,-1 do
  1078. if myInventory.slots[i].type==type then
  1079. return i
  1080. end
  1081. end
  1082. return 0
  1083. end
  1084.  
  1085. local function iterTypeSlotsRev(type,before)
  1086. local v=findLastItemType(type,before)
  1087. if v~=0 then
  1088. return v
  1089. end
  1090. end
  1091.  
  1092.  
  1093. function typeSlotsRev(t)
  1094. return iterTypeSlotsRev, t, 17
  1095. end
  1096.  
  1097. function displayInv()
  1098. myInventory:display()
  1099. end
  1100.  
  1101.  
  1102. local function digHelp(slot,digFunc)
  1103. local prev=selectedSlot
  1104. local items={}
  1105. if slot~=nil then
  1106. select(slot)
  1107. else
  1108. slot=prev
  1109. end
  1110.  
  1111. local res=digFunc()
  1112. if res then
  1113. --successfully dug, attempt to identify
  1114. local suc,add,sub=updateInventory()
  1115. if suc then
  1116. items=add
  1117. end
  1118. end
  1119.  
  1120. --reselect previous slot
  1121. if slot~=prev then
  1122. select(prev)
  1123. end
  1124.  
  1125. return res, items
  1126. end
  1127.  
  1128. function dig(slot)
  1129. return digHelp(slot,native.dig)
  1130. end
  1131.  
  1132. function digUp(slot)
  1133. return digHelp(slot,native.digUp)
  1134. end
  1135.  
  1136. function digDown(slot)
  1137. return digHelp(slot,native.digDown)
  1138. end
  1139.  
  1140. function digBack(slot)
  1141. turnAround()
  1142. res=dig(slot)
  1143. turnAround()
  1144. return res
  1145. end
  1146.  
  1147. function digLeft(slot)
  1148. turnLeft()
  1149. res=dig(slot)
  1150. turnRight()
  1151. return res
  1152. end
  1153.  
  1154. function digRight(slot)
  1155. turnRight()
  1156. res=dig(slot)
  1157. turnLeft()
  1158. return res
  1159. end
  1160.  
  1161.  
  1162. local function indexHelper(index)
  1163. local slot=selectedSlot
  1164. if index~=nil then
  1165. if type(index)=="string" then
  1166. slot=findItemType(index)
  1167. if slot==0 then
  1168. return nil,"turtlex:compare: no reference sample for type '"..index.."' in inventory!"
  1169. end
  1170. elseif type(index)=="number" then
  1171. slot=index
  1172. else
  1173. return nil, "turtlex:compare: invalid parameter, expected number or string, got "..type(index)
  1174. end
  1175. end
  1176. return slot
  1177. end
  1178.  
  1179. local function placeHelp(index,placeFunc, extra)
  1180. local placeParam=extra
  1181. local slot,err=indexHelper(index)
  1182. if not slot then
  1183. placeParam=index
  1184. slot,err=indexHelper(extra)
  1185. if not slot then
  1186. return nil, err
  1187. end
  1188. end
  1189.  
  1190. local prev=selectedSlot
  1191. if slot~=prev then
  1192. select(slot)
  1193. end
  1194.  
  1195. res=placeFunc(placeParam)
  1196. if res then
  1197. --successfully placed
  1198. updateInventory()
  1199. end
  1200.  
  1201. --restore selected slot
  1202. if slot~=prev then
  1203. select(prev)
  1204. end
  1205. return res
  1206.  
  1207. end
  1208.  
  1209. function place(index,extra)
  1210. return placeHelp(index,native.place,extra)
  1211. end
  1212.  
  1213. function placeUp(index,extra)
  1214. return placeHelp(index,native.placeUp)
  1215. end
  1216.  
  1217. function placeDown(index,extra)
  1218. return placeHelp(index,native.placeDown,extra)
  1219. end
  1220.  
  1221. function placeBack(slot,extra)
  1222. turnAround()
  1223. res=place(slot,native.place,extra)
  1224. turnAround()
  1225. return res
  1226. end
  1227.  
  1228. function placeLeft(slot,extra)
  1229. turnLeft()
  1230. res=place(slot,native.place,extra)
  1231. turnRight()
  1232. return res
  1233. end
  1234.  
  1235. function placeRight(slot,extra)
  1236. turnRight()
  1237. res=place(slot,native.place,extra)
  1238. turnLeft()
  1239. return res
  1240. end
  1241.  
  1242.  
  1243.  
  1244. local function compareHelp(index,compareFunc)
  1245. local prevSlot=selectedSlot
  1246. local slot, err=indexHelper(index)
  1247. if slot==nil then
  1248. return slot, err
  1249. end
  1250. if prevSlot~=slot then
  1251. select(slot)
  1252. end
  1253. local res=compareFunc()
  1254. if slot~=prevSlot then
  1255. select(prevSlot)
  1256. end
  1257. return res
  1258. end
  1259.  
  1260. function compare(index)
  1261. return compareHelp(index,native.compare)
  1262. end
  1263.  
  1264. function compareUp(index)
  1265. return compareHelp(index,native.compareUp)
  1266. end
  1267.  
  1268. function compareDown(index)
  1269. return compareHelp(index,native.compareDown)
  1270. end
  1271.  
  1272. function compareLeft(index)
  1273. turtle.turnLeft()
  1274. local res,err=compare(index)
  1275. turtle.turnRight()
  1276. return res, err
  1277. end
  1278.  
  1279. function compareRight(index)
  1280. turtle.turnRight()
  1281. local res,err=compare(index)
  1282. turtle.turnLeft()
  1283. return res
  1284. end
  1285.  
  1286. function compareBack(index)
  1287. turtle.turnAround()
  1288. local res,err=compare(index)
  1289. turtle.turnAround()
  1290. return res, err
  1291. end
  1292.  
  1293. function compareAll(index)
  1294. local prevSlot=selectedSlot
  1295. local slot, err=indexHelper(index)
  1296. if slot==nil then
  1297. return slot, err
  1298. end
  1299. if prevSlot~=slot then
  1300. select(slot)
  1301. end
  1302. dirs={"forward","right","back","left"}
  1303. matches={}
  1304. if native.compareUp() then
  1305. matches[#matches+1]="up"
  1306. end
  1307. if native.compareDown() then
  1308. matches[#matches+1]="down"
  1309. end
  1310. for i=1,4,1 do
  1311. if native.compare() then
  1312. matches[#matches+1]=dirs[i]
  1313. end
  1314. turtle.turnRight()
  1315. end
  1316.  
  1317. if prevSlot~=slot then
  1318. select(prevSlot)
  1319. end
  1320. return #matches, matches
  1321. end
  1322.  
  1323.  
  1324. function compareTo(slotNum, index)
  1325. local prevSlot=selectedSlot
  1326. local slot,err=indexHelper(index)
  1327.  
  1328. if slot==nil then
  1329. return slot,err
  1330. end
  1331.  
  1332. if prevSlot~=slot then
  1333. select(slot)
  1334. end
  1335. res=native.compareTo(slotNum)
  1336. if prevSlot~=slot then
  1337. select(prevSlot)
  1338. end
  1339.  
  1340. return res
  1341. end
  1342.  
  1343.  
  1344. detect=native.detect
  1345. detectUp=detectUp
  1346. detectDown=detectDown
  1347.  
  1348. function detectLeft()
  1349. turnLeft()
  1350. local res=detect()
  1351. turnRight()
  1352. return res
  1353. end
  1354.  
  1355.  
  1356. function detectRight()
  1357. turnRight()
  1358. local res=detect()
  1359. turnLeft()
  1360. return res
  1361. end
  1362.  
  1363. function detectBack()
  1364. turnAround()
  1365. local res=detect()
  1366. turnAround()
  1367. return res
  1368. end
  1369.  
  1370.  
  1371. local function dropHelp(quantity, index, dropFunc)
  1372. quantity=quantity or 64
  1373. if quantity==0 then
  1374. return true
  1375. end
  1376. local prevSlot=selectedSlot
  1377. local slot,err=indexHelper(index)
  1378. if slot==nil then
  1379. return false, err
  1380. end
  1381. if slot~=prevSlot then
  1382. select(slot)
  1383. end
  1384. local prevCount=native.getItemCount(slot)
  1385. local res=false
  1386. if not index or type(index)=="number" then
  1387. res=dropFunc(quantity)
  1388. else
  1389. local dropped=0
  1390. for slot in typeSlotsRev(index) do
  1391. res=true
  1392. turtlex.select(slot)
  1393. if native.getItemCount(slot)+dropped<quantity then
  1394. dropped=dropped+native.getItemCount(slot)
  1395. dropFunc(math.min(quantity,64))
  1396. else
  1397. dropFunc(quantity-dropped)
  1398. break
  1399. end
  1400. end
  1401. end
  1402. if res then
  1403. updateInventory()
  1404. end
  1405. if selectedSlot~=prevSlot then
  1406. select(prevSlot)
  1407. end
  1408.  
  1409. return res, quantity>=prevCount and prevCount or quantity
  1410. end
  1411.  
  1412. function drop(quantity, index)
  1413. return dropHelp(quantity,index,native.drop)
  1414. end
  1415.  
  1416. function dropUp(quantity, index)
  1417. return dropHelp(quantity,index,native.dropUp)
  1418. end
  1419.  
  1420. function dropDown(quantity, index)
  1421. return dropHelp(quantity,index,native.dropDown)
  1422. end
  1423.  
  1424. function dropLeft(quantity,index)
  1425. turnLeft()
  1426. local res=dropHelp(quantity,index,native.drop)
  1427. turnRight()
  1428. return res
  1429. end
  1430.  
  1431. function dropRight(quantity,index)
  1432. turnRight()
  1433. local res=dropHelp(quantity,index,native.drop)
  1434. turnLeft()
  1435. return res
  1436. end
  1437.  
  1438. function dropBack(quantity,index)
  1439. turnAround()
  1440. local res=dropHelp(quantity,index,native.drop)
  1441. turnAround()
  1442. return res
  1443. end
  1444.  
  1445.  
  1446. local function suckHelp(slot,suckFunc)
  1447. local prevSlot=selectedSlot
  1448. if slot==nil then
  1449. slot=selectedSlot
  1450. end
  1451. if slot~=prevSlot then
  1452. select(slot)
  1453. end
  1454. local res=suckFunc()
  1455.  
  1456. local succ, add={}, rem;
  1457. if res then
  1458. succ,add,rem=updateInventory()
  1459. end
  1460.  
  1461. if slot~=prevSlot then
  1462. select(prevSlot)
  1463. end
  1464. return res, add
  1465. end
  1466.  
  1467. function suck(slot)
  1468. return suckHelp(slot,native.suck)
  1469. end
  1470.  
  1471. function suckUp(slot)
  1472. return suckHelp(slot,native.suckUp)
  1473. end
  1474.  
  1475. function suckDown(slot)
  1476. return suckHelp(slot,native.suckDown)
  1477. end
  1478.  
  1479. function suckLeft(slot)
  1480. turnLeft()
  1481. local res, qty=suckHelp(slot,native.suck)
  1482. turnRight()
  1483. return res,qty
  1484. end
  1485.  
  1486. function suckRight(slot)
  1487. turnRight()
  1488. local res, qty=suckHelp(slot,native.suck)
  1489. turnLeft()
  1490. return res,qty
  1491. end
  1492.  
  1493. function suckBack(slot)
  1494. turnAround()
  1495. local res, qty=suckHelp(slot,native.suck)
  1496. turnAround()
  1497. return res,qty
  1498. end
  1499.  
  1500.  
  1501. getFuelLevel=native.getFuelLevel
  1502.  
  1503.  
  1504. function refuel(quantity, index)
  1505. quantity=quantity or 64
  1506. local prevSlot=selectedSlot
  1507. local res
  1508. if type(index)=="string" then
  1509. for slot in typeSlotsRev(index) do
  1510. if quantity<turtlex.getItemCount(slot) then
  1511. select(slot)
  1512. native.refuel(quantity)
  1513. break
  1514. else
  1515. quantity=quantity-turtlex.getItemCount(slot)
  1516. select(slot)
  1517. native.refuel()
  1518. end
  1519. end
  1520. else
  1521. local slot,err=indexHelper(index)
  1522. if slot==nil then
  1523. return false, err
  1524. end
  1525. if prevSlot~=slot then
  1526. select(slot)
  1527. end
  1528. res=native.refuel(quantity)
  1529. if res==true then
  1530. updateInventory()
  1531. end
  1532. end
  1533. select(prevSlot)
  1534. return res
  1535. end
  1536.  
  1537. function craft(quantity, slot, outputType)
  1538. if turtle.craft==nil then
  1539. return false, "turtlex:craft: Only crafting turtles can craft!"
  1540. end
  1541.  
  1542. local res
  1543. prevSlot=selectedSlot
  1544. if slot==nil then
  1545. slot=selectedSlot
  1546. elseif slot~=prevSlot then
  1547. select(slot)
  1548. end
  1549. if quantity==nil then
  1550. res=native.craft()
  1551. else
  1552. res=native.craft(quantity)
  1553. end
  1554. if slot~=prevSlot then
  1555. select(prevSlot)
  1556. end
  1557. if res==true then
  1558. local wasChange, addedStuff, removedStuff = updateInventory()
  1559. if wasChange==false then
  1560. return res, "inconsistent results from updateInventory - craft reports success, but no change or no added items reported?"
  1561. end
  1562. --did they give us an expected output type?
  1563. if outputType~=nil and outputType~="" and outputType~=0 and outputType~="unknown" then
  1564. local addedType
  1565. if #addedStuff>0 then
  1566. addedType=addedStuff[1].type
  1567. else
  1568. addedType=myInventory.getItemType(slot)
  1569. end
  1570. for i=2,#addedStuff,1 do
  1571. if addedStuff[i].type~=addedType then
  1572. return res, "inconsistent results from updateInventory - multiple new item types detected!"
  1573. end
  1574. end
  1575. setItemType(outputType,addedStuff[1].slot)
  1576. end
  1577. end
  1578. return res
  1579. end
  1580.  
  1581.  
  1582. function attackHelp(attackFunc,untilFalse)
  1583. local res=attackFunc()
  1584. while res and untilFalse do
  1585. sleep(.4)
  1586. res=attackFunc()
  1587. end
  1588. local add
  1589. if res then
  1590. _,add,_=updateInventory()
  1591. end
  1592. return res,add
  1593. end
  1594.  
  1595. function attack(untilFalse)
  1596. return attackHelp(native.attack,untilFalse)
  1597. end
  1598.  
  1599. function attackUp(untilFalse)
  1600. return attackHelp(native.attackUp,untilFalse)
  1601. end
  1602.  
  1603. function attackDown(untilFalse)
  1604. return attackHelp(native.attackDown,untilFalse)
  1605. end
  1606.  
  1607. function attackLeft(untilFalse)
  1608. turtlex.turnLeft()
  1609. res={attackHelp(native.attack,untilFalse)}
  1610. turtlex.turnRight()
  1611. return unpack(res)
  1612. end
  1613.  
  1614. function attackRight(untilFalse)
  1615. turtlex.turnRight()
  1616. res={attackHelp(native.attack,untilFalse)}
  1617. turtlex.turnLeft()
  1618. return unpack(res)
  1619. end
  1620.  
  1621. function attackBack(untilFalse)
  1622. turtlex.turnAround()
  1623. res={attackHelp(native.attack,untilFalse)}
  1624. turtlex.turnAround()
  1625. return unpack(res)
  1626. end
  1627.  
  1628. --[[=== api initialization code ===]]--
  1629. loadState()
  1630. --try to update position from gps, if I even have a modem
  1631. if peripheral.getType("right")=="modem" then
  1632. rednet.open("right")
  1633. gpsUpdate()
  1634. end]])
  1635. --[[needs for 5 turtles:
  1636. wood = 12 ---> planks = 48 ----> 5 chest + crafting table
  1637. iron = 35 (level 10)
  1638. redstone = 8 (level 15)
  1639. diamond = 5 (level 20)
  1640. glass = 6 ---> glasspane = 5
  1641. cobblestone = 50 ---> stone = 42 + furnace ---> computer and disk drive
  1642. sugar cane = 3 ---> disk drive
  1643. 1 turtle for building
  1644. 1 turtle for exploring
  1645. 1 turtle for mining
  1646. 1 turtle for manage the disk drive
  1647. 1 turtle for protection
  1648. ]]--
  1649. file.close()
  1650. os.loadAPI("inventory")
  1651. os.loadAPI("t")
  1652. setStage("Tree Logger")
  1653. setDoing("First tree!")
  1654. function chopTree()
  1655. t.dig()
  1656. t.forward()
  1657. while t.compareUp() do t.up(1, "dig") end
  1658. while not t.detectDown() do t.down() end
  1659. end
  1660. function checkTrees()
  1661. t.move(20, 0, 20)
  1662. t.face("east")
  1663. for o=20, 1 do
  1664. for a=1, 4 do
  1665. for i=1, o do
  1666. if t.compare() then
  1667. chopTree()
  1668. end
  1669. t.forward()
  1670. end
  1671. t.turnLeft()
  1672. end
  1673. t.turnRight()
  1674. t.forward()
  1675. t.turnLeft()
  1676. t.forward()
  1677. end
  1678. t.move(0, 0, 0)
  1679. t.face("north")
  1680. end
  1681. function mine()
  1682. move(21, 0, 21)
  1683. t.face("east")
  1684. for a=1, 4 do
  1685. for i=1, 21 do
  1686. if t.detect() then
  1687. local f = break
  1688. end
  1689. if f then break end
  1690. t.forward()
  1691. end
  1692. if f then break end
  1693. t.turnLeft()
  1694. end
  1695. for i=1, 3 do
  1696. t.dig()
  1697. t.forward()
  1698. t.digDown()
  1699. end
  1700. t.back(3)
  1701. t.turnLeft()
  1702. t.forward()
  1703. t.turnRight()
  1704. for i=1, 3 do
  1705. t.digDown()
  1706. t.forward()
  1707. end
  1708. t.move(21, 0, 21)
  1709. t.face("east")
  1710. t.digDown()
  1711. t.down()
  1712. inventory.setItemType("dirt")
  1713. for i=1, 9 do
  1714. t.digDown()
  1715. t.down()
  1716. end
  1717.  
  1718. end
  1719. function mineF(lenght)
  1720. for o=1, lenght do
  1721. for i=1, lenght do
  1722. t.dig()
  1723. t.forward()
  1724. end
  1725. for i=1, lenght do
  1726. t.back()
  1727. t.place()
  1728. end
  1729. t.turnLeft()
  1730. t.forward()
  1731. t.turnRight()
  1732. end
  1733. t.turnRight()
  1734. t.forward(lenght)
  1735. t.turnLeft()
  1736. end
  1737. function getSlotNum(name)
  1738. for k, v in pairs(myInventory.slots) do
  1739. if v.type==name then return k end
  1740. end
  1741. end
  1742. function mine2()
  1743. inventory.setItemType("Cobblestone")
  1744. mineF(21)
  1745. inventory.setItemType("Redstone")
  1746. t.down(5, "dig")
  1747. mineF(21)
  1748. inventory.setItemType("Iron ore")
  1749. t.down(5, "dig")
  1750. mineF(21)
  1751. inventory.setItemType("Diamond")
  1752. t.down(2, "dig")
  1753. mineF(7)
  1754. t.up(22)
  1755. t.select(getSlotNum("dirt"))
  1756. t.placeDown()
  1757.  
  1758. end
  1759. function craft()
  1760.  
  1761. end
  1762. t.select(1)
  1763. chopTree()
  1764. setDoing("Searching trees")
  1765. checkTrees()
  1766. setStage("Looking for Sugar Cane")
  1767. setDoing("Mining trip!")
  1768. t.select(1)
  1769. inventory.setItemType("Logs")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement