Search results

  1. W

    Launcher account problems

    Thanks guys, that really helped me. I got it all sorted out now!
  2. W

    Launcher account problems

    You need one for FTB? I believe I'm using the same account for FTB. The username is exactly the same.
  3. W

    Launcher account problems

    I'm trying to log into my account and it's saying the account is invalid. I didn't change anything, so I deleted the account and am now trying to add it again and it's still not working and I'm not entirely sure what's up or what to do. Any ideas?
  4. W

    Ask a simple question, get a simple answer

    local firstSlot = 1 local lastSlot = 8 -- this can not be above 9 in ComputerCraft before 1.4, or above 16 in ComputerCraft 1.4+ local incrementSize = 1 for selectedSlot =firstSlot,lastSlot, incrementSize do turtle.Select(selectedSlot); print("I've selected slot" .. selectedSlot .. "!")...
  5. W

    Ask a simple question, get a simple answer

    In the CC Turtles programming, how would you say that you want to add 1? I want it to take the current slot the turtle has selected, and just add one to it to make it slot 2. then 2 to 3, and so on. I would like to use it in a function too.
  6. W

    Ask a simple question, get a simple answer

    Yup, extra "end". Thanks. Also, I had a few questions about steam boilers and the like. I'm trying to figure out if I should use steam boilers in the first place, but I'm not sure. From what I've seen, it sounds like steam boilers are a lot of hassle to set up, operate, and maintain. I've got...
  7. W

    Ask a simple question, get a simple answer

    That didn't work. It said it was expecting it on line 34, which is the line my last "end" is on.
  8. W

    Ask a simple question, get a simple answer

    My Turtle program is giving me an error saying I'm missing an "<eof>" at the very end of my program. I know it's an "End of File" but I don't know how to solve the error.
  9. W

    Ask a simple question, get a simple answer

    If the inventory space selector gets to the 16th slot, it won't jump back to the 1 slot? If not, would I have to manually set it back to the 1 slot? Mind answering one more question? I've got; if Power = true then turtle.dropDown(1) end It keeps telling me that it expects a "then" on line 1...
  10. W

    Ask a simple question, get a simple answer

    I'm trying to get my Turtle to obey me, and I'm getting this error, here is the code; function changeSlot() turtle.select() + 1 end while true do if turtle.select() = turtle.getItemCount() < 1 then changeSlot() end end I'm getting an error for an unexpected symbol on line 2. I...
  11. W

    Ask a simple question, get a simple answer

    I copied that, and added some text telling me when the signal was "on" and when it was "off" and it worked for one off and one on, but then it gave me an error on the first "Sleep(1)" section under "turtle.attack()" I'd love to learn how to do this, but right now I'm really nooby, so I don't...
  12. W

    Ask a simple question, get a simple answer

    For CC Turtles, is there a way to get either a Boolean or an int to toggle back and forth? I was it to say that the redstone signal is "on" or "off" and wanted to use a variable of some sorts that just switched between 1 and 0 or true and false to judge this.
  13. W

    Ask a simple question, get a simple answer

    Sweet, thank you so much! Now if only I knew what I was doing... EDIT; After messing around with it for a bit, I've a question; is there a way to tell it to detect only when he signal is on? Right now, it triggers every time the redstone is changed, be it on -> off or off -> on.
  14. W

    Ask a simple question, get a simple answer

    If "rednet" is the equivalent of redstone, than that's exactly what I need. But, is it? http://www.computercraft.info/wiki/Receiving_a_rednet_message_through_os.pullEvent()
  15. W

    Ask a simple question, get a simple answer

    Is there a way for a Turtle to check for a redstone signal? I need it in a program to run 24/7, and every time it gets a signal, (specifically, a pipe signal) to run the program.
  16. W

    Ask a simple question, get a simple answer

    I'm messing around with you Turtle idea, and I got the command to make it dispense one item, but I can't find any tutorials on the syntax of the language or how to make it interact with redstone signals around it. I'm looking at the API for the turtle, and I haven't found anything.
  17. W

    Ask a simple question, get a simple answer

    That's what it's doing? Are there more option when you add a pipe wire?
  18. W

    Ask a simple question, get a simple answer

    I did this, and it doesn't seem to be working. Here's the set up; The engine wont turn off. It kept putting out power even though the machine was full, and then I removed all of the fuel in it, let it burn out, and it still wouldn't stop. The bottom gate is set to- "Can store energy --...
  19. W

    Ask a simple question, get a simple answer

    I can do steam, but I'd go biomass -> biofuel... I'd be taking the long route, I think and that's not set up yet either. I can post a picture of where I want the pipe/gate, give me one second. That's the set up I have now.
  20. W

    Ask a simple question, get a simple answer

    I don't have a ready supply of lava to use in that kind of engine. I understand the code logic, just not how to hook everything up in-game. I can't seem connect a pipe to a Chronotyper, so it won't work anyways. Thanks guys.