Search results

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
  1. T

    Something wrong with FTB download server?

    You can change the repo under the options tab
  2. T

    FTB Server cant download anything...

    Follow the instructions here except use the links from your crash log http://forum.feed-the-beast.com/threads/there-was-a-fatal-error-starting-up-minecraft-and-fml.26005/#post-343907 Also next time read the log before posting and use search! :)
  3. T

    FTB Server cant download anything...

    Post the log to pastebin.
  4. T

    Unix [solved] good hardware suddenly 2fps

    btw Wcubed Linux/GNU isn't Unix, GNU stands for GNU's Not Unix. What OS are you using and what graphics card?
  5. T

    Unix [solved] good hardware suddenly 2fps

    *facepalm* why did I not think of graphics drivers. Glad you solved the problem though :)
  6. T

    Launcher takes 40+ seconds to load

    The game loads a lot more stuff than the launcher, all the launcher loads is the 500kB jar and download a few 1-2kB xml files and up to 50kBs in images, but the game has to load and run over 50 jarfiles. For me that's 2 seconds for the launcher and 50 for the ultimate pack w/o optifine. So, his...
  7. T

    Unix [solved] good hardware suddenly 2fps

    I have no idea what could be wrong then, sorry for wasting so much of your time.
  8. T

    Launcher takes 40+ seconds to load

    Yeah, I've never seen anything like this before.
  9. T

    Launcher takes 40+ seconds to load

    No idea what it could be then, everything in the logs you posted looks fine. Is it really that big of an issue though it's only 40 seconds.
  10. T

    FTB Won't Launch

    Yes, but that's an issue with the launcher loading texturepacks in the texturepack pane and isn't related to minecraft launching.
  11. T

    Launcher takes 40+ seconds to load

    He was trying to say that the launcher was taking too long to load not the game, you misinterpreted it. So, does the .exe version load more quickly because if it does why don't you just use the .exe rather than the jar?
  12. T

    Mindcrack/FTB Problems

    Try reinstalling your graphics drivers.
  13. T

    Server Download Error

    Click on the links you posted here :)
  14. T

    FTB Won't Launch

    There's no error in that one either so I have no idea what's wrong, sorry.
  15. T

    OSX can't launch FTB jar

    Try uninstalling J2SE 5.0 my guess is thatit's defaulting to java 5 rather than 6 which is why you're getting UnsupportedClassVersionError since the launcher is written for java 6.
  16. T

    FTB Won't Launch

    Your issue isn't related to the texturepacks, there's no indication of what's wrong in the log you posted. Try reinstalling java.
  17. T

    Windows .exe Problem using LAN play.

    When you open to lan in the chat it says Local game hosted on x. Add the ip in the multiplayer tab on the other computer and connect or use direct connect. You'll have to do this every time you want to play.
  18. T

    Problem with Texture packs tab

    This is definitely an issue on FTB's side as wlninja said, probably just a typo in the xml file.
  19. T

    Unix [solved] good hardware suddenly 2fps

    The issue is that it's trying to do something weird with textures but there's no way to know what mod is doing it because it's unspecified in the debug screen. This is why in the pie graph tick was taking up most of the resources because of textures. This is also why the methods taking up the...
  20. T

    ComputerCraft Code Problem

    So, basically what you want to do is alternate between 2 blocks of code whenever l.get() returns true? Try this local l = peripheral.wrap("right") l.setFreq(3) local v = true while true do if l.get() then if v then turtle.dig() v = false else turtle.place()...