Jump to content




turtle.transferTo work around


  • You cannot reply to this topic
3 replies to this topic

#1 Zamithal

  • Members
  • 28 posts

Posted 25 December 2012 - 12:29 PM

I'm running a 1.2.5 minecraft because of tekkit... however I need access to this command to continue my project. The Turtle API wiki thing says this is a 1.4.5 command only (newer than my version). Is there any possible way to use this command even though its newer? (or a work around (API?))

#2 Luanub

    Lua Nub

  • Members
  • 1,135 posts
  • LocationPortland OR

Posted 25 December 2012 - 12:59 PM

Wait for Tekkit to update. From what I can tell they are working on it now that RP2 is released.

#3 Kingdaro

    The Doctor

  • Members
  • 1,636 posts
  • Location'MURICA

Posted 25 December 2012 - 02:27 PM

There's no way to specifically use that command in earlier versions, but you can possibly screw around with some of the functions to make yourself a makeshift transferTo.

function transferTo(slot, num)
  turtle.dropDown(num)
  turtle.select(slot)
  repeat until not turtle.suckDown()
end

Except that suckDown and variants are only available in versions at or above 1.4, I think. As far as I know, the dev build of tekkit is at 1.41, but any version higher version would require a manual install, or another mod pack.

Plus, this function would probably only work provided that there's one empty block below the turtle.

#4 Zamithal

  • Members
  • 28 posts

Posted 25 December 2012 - 02:52 PM

Thank you, This is helpful, the 1 square can be arranged.. things can always be solved with a little creativity :D
I am on 1.41 so this should work

Edited by Zamithal, 25 December 2012 - 02:53 PM.






1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users