Jump to content

rcmaehl

Members
  • Posts

    669
  • Joined

  • Last visited

Posts posted by rcmaehl

  1. When I started my server, I used minecraft_server.1.6.4.jar file to run the server and it worked perfectly unless I pressed CTRL, then it would crash saying "End of Stream".  Then, the mods wouldn't work and none of the other ores spawned so I looked into this.  Now I tried using the BTeam.jar file and whenever I join the server, it immediately kicks me out and says "End of Stream".  Can anyone help?

     

    Reset your world. You probably messed up the world somehow. (Note: minecraft_server.1.6.4.jar doesn't load mods, but it's REQUIRED by BTeam.jar)

  2. Change whenfull="drop" to whenfull="destroy"

    • This causes items to be destroyed instead of dropped which would cause your server to lag.

    That is wrong ^

    Not sure when that was added to this list but it wont work like that alone and "destroy" is not an option for it.

    What you should do it replace:

    tubebuffer {

                length=-1

                whenfull="drop"

            }

    With:

    tubebuffer {

                length=1

                whenfull="vanish"

            }

     

    Hope this helps :)

     

    EDIT: Proof of how this works and why it works is in the mod itself, just open the RedPower mod with WinRAR or 7Zip and look at the info that pops up with it :) It explains the config and all the updates :D Very helpful!

     

    I must have read the config wrong. It's fixed now.

  3. 1. Reset the pack

    2. Make sure the build is "Always use the Recommended build"

    3. Hit play

     

    Your saves will NOT be compatible if they contain any of the new blocks/entities in TC 3.1.3 that 3.1.2 doesn't have. (Some Railcraft stuff and I forget what else.)

     

    You shouldn't have to delete Sphax unless that Sphax was designed for TC 3.1.3 specifically.

     

    TC 3.1.3 and 3.1.2 both use MC 1.2.5.

     

    Computercraft DOES come with TC 3.1.2 and 3.1.3. The "recent" version is actually about a year old now, OFFICIAL TC development has stopped.

  4.  

    ^What? That "fix" is totally off.

     

    There are several things wrong with that code. When you want multiple if's like that, you need to use the if-elseif structure, otherwise you need to end each if statement. Second, you may not use the word "local" as a variable name, as that name is reserved. Third, "=" assigns value, while "==" compares values. And then there's just syntax errors everywhere. If you want to get your programs to work, you're going to have to type a lot better than that, and at least read some programming tutorials online.

     

    Here's a fix.

    write("Please enter which floor you want to visit: ")
    local eingabe = read()
    
    if eingabe == "1" then
      redstone.setOutput("left", true)
      sleep(3)
      os.shutdown()
    elseif eingabe == "2" then
      redstone.setOutput("right", true)
      sleep(3)
      os.shutdown()
    end

     

    Dude, I just skimmed his code. And was only trying to fix the error that came up. Which I did wrong because my finger was offset.

     

    Also, I improved your fix:

    while true do
      term.clear()
      term.setCursorPos(1,1)
      term.write("Please enter which floor you want to visit: ")
      local eingabe = read()
    
      if eingabe == "1" then
        redstone.setOutput("left", true)
        os.sleep(3)
        os.shutdown()
      elseif eingabe == "2" then
        redstone.setOutput("right", true)
        os.sleep(3)
        os.shutdown()
      else
        term.setCursorPos(1,2)
        term.write(eingable.." is not a valid floor")
        os.sleep(3)
      end
    end
    

    It offers error handling and API calls in case one of the functions (such as sleep) somehow gets overridden.

     

    Finally: Link to the wiki since you didn't provide it: http://computercraft.info/wiki

  5. That's unless you're one of those fortunate few that can still use their IGN for login because they never converted their account. :)

     

    It's both a blessing and a curse. I broke the launcher once because my account was legacy. (Minecraft auth servers kept sending "null" instead of a response.)

  6. 1. Have you tested your modpack in singleplayer yet? If so, move on to #2. If not, test it.

    2. Get the MCPC+ version for whatever minecraft version your mods require (e.g. the latest 1.6.4 MCPC+ if all your mods are 1.6.x)

    3. Create a folder called server.

    4. Put MCPC+ in that folder

    5. Put a folder called mods in the folder called server

    6. Put the mods in the mod folder

    7. Start MCPC+ like you would start a minecraft server.

  7.  

    Hi guys, I want to give you a suggestion that I think could be VERY VERY useful to all those are using this crazy modpack.
    Why don't you publish ( maybe in the main page of the modpack, or even in the forum ) a comprehensive wiki of all the mods in the package? Maybe this is a very long work, but even if you publish a list of the relating wikis of every mod (the available ones at least), I think it could be a great things to do for all the users, because I think that googling every time you need to know something about an item or a recipe sometime is bit annoying. 
    Thank you anyway for the great job you've done assembling this fantastic modpack, it gives to minecraft a new way of playing and I think in future it will became very popular.
     
    eseven_

     

     

    NEI has recipe mode and utility mode which removes the need to have to google recipes and/or what you can do with an item.

×
×
  • Create New...