Search results

  • FTB will be shutting down this forum by the end of July. To participate in our community discussions, please join our Discord! https://ftb.team/discord
  1. T

    Whitelist Server OTE Gamers - Unleashed 1.1.7 | Whitelist | TS3 | MyTown | Econ | MultiGaming Community - Est. 2006

    In-Game Name: tyessen24 Name: Tyler E. How long have you been playing Minecraft?: Since beta 1.8 Do you have experience with FTB?: Yes, particularly with Ultimate. I run my own Ultimate server for me and my friends, too. Have you ever been banned from a server?: Nope :) Do you have TS3 and are...
  2. T

    Thermal Expansion Liquid Transposer help?

    I literally just tried that as i looked for responses here :P it does work, i guess i still had the transposer there from when i didn't have the tank built. thanks :)
  3. T

    Thermal Expansion Liquid Transposer help?

    So i have a setup where my magma crucible turns netherrack into lava, waterproof pipes throw that lava into a liquid transposer, and the liquid transposer puts it into an iron tank. The only flaw is that i need to manually switch the liquid transposer from acepting lava to pushing it into the...
  4. T

    [SEVERE] Encountered an unexpected exception t t: Ticking tile entity

    Shoot... I had this exact same issue once we updated to Ultimate 1.1.2... It has something to do with the QuantumChest and DigitalChest names getting mixed up in a .class file for gregtech. I know I found a file somewhere that fixed the mis-namings, but I dont have the link on me :/ Sent from...
  5. T

    Server not responding?

    So our server crashed today (we use a cloud-based linux computer to run it), which happens every few days or so. So i go to restart the host computer as normal, but after restarting the server I encountered a very odd problem: none of the server commands would go through! To be more specific...
  6. T

    Turtle script problem?

    ok, so he was right :D i guess i was getting confused over what commands ran over what and thought the detectUp would take priority... well anways, it's running in a loop now. thanks so much :)
  7. T

    Turtle script problem?

    if i used detectDown(), then as soon as the turtle moved up a block there would be a space below it where it would move right back to the ground. then there would be a space above it, and it would move up, then back down... i tested this without the loop and it ran perfectly, unless adding the...
  8. T

    Turtle script problem?

    ohhh... i think i get it. the program isn't doing anything from what i already have, it's just defining functions, right? the part you gave me just runs them continuously since true == true. and you are right about the inventory management, but i am going to try a few more simple scripts first...
  9. T

    Turtle script problem?

    ok, so i created a script to cut down a 1x1 tree, and whenever i try to run it, the turtle won't do anything besides go back to the terminal to let me type something else in. function plant() turtle.select(1) --select sapling turtle.place() turtle.select(2) --select bonemeal turtle.place()...