Jump to content

Portablejim

Members
  • Posts

    202
  • Joined

  • Last visited

Everything posted by Portablejim

  1. Hint: Slimes cannot swim.
  2. Was http://www.minecraftforum.net/topic/1589367-145-forge-is-minecraft-too-hard-get-easy-diamonds/ not included because it is not for 1.4.6?
  3. The duplication is an admin item and has no crafting recipe.
  4. Please note that the current dev of EE3 is NOT the creator of EE2, only the maintainer. Xenophobe is the creator of EE2 and they have said that they cannot release the source code for EE2. It may be because other people contributed to the code under the knowledge that it was not open source, so it would be wrong to release their code when they have not given consent. Pahmiar wanted the mod open source, so he went about creating EE3. He also does not want almost every server to have "NO EE3" signs on them.
  5. The "else if" was not wrong (or "out of date"), it was just doing something you did not expect. To see the difference, have a look at the code below (what you had) os.pullEvent = os.pullEventRaw local loop = true while loop == true do term.clear() term.setCursorPos(1, 1) print("Password?") local input = read("*") if input == "password" then redstone.setOutput("left", true) sleep(3) redstone.setOutput("left", false) else if input == "Maintenance" then print("Maintenance Mode activated.") loop = false else print("Wrong password.") sleep(2) end end end -- Extra end included compared to the following code(uses "elseif"). Hint: Look at the indentation. os.pullEvent = os.pullEventRaw local loop = true while loop == true do term.clear() term.setCursorPos(1, 1) print("Password?") local input = read("*") if input == "password" then redstone.setOutput("left", true) sleep(3) redstone.setOutput("left", false) elseif input == "Maintenance" then print("Maintenance Mode activated.") loop = false else print("Wrong password.") sleep(2) end end If you notice, thh code Teraku quoted was using "elseif" and not "else if".
  6. Change "else if" to "elseif" (remove the space)
  7. The dev version of mystcraft has the new world mechanics, which make it harder to make worlds. Plus you need to find symbols in order to make descriptive books, you don't find symbols by creating descriptive books.
  8. Wouldn't the conversion of EU->MJ->EU loose a substantial amount of energy?
  9. Is there a Forge log that provides more details?
  10. I think it is better put "The also would not help ForgeBukkit".
  11. The nano and quantum armour got a fairly large nerf in an IC2 update (e.g. you cannot swim in lava with nano any more without being hurt and seriously depleting the charge - about 30 seconds to deplete all my health and all the charge on the armour).
  12. Double-click on the search bar to toggle dimming, at least for the items.
  13. If you have already played it once, you can play it offline. However, I would try to sort out the login problem with the vanilla launcher first. Not being able to login (while mojang says everything is good) is a sign of a bad internet connection or trying to play without buying minecraft.
  14. Is there a Forge log anywhere that would contain more info?
  15. There was an official announcement (on the bottom of the one about custom zips) about the removal.
  16. That planner is for the old system. Here are designs for the new system http://forum.industrial-craft.net/index.php?page=Thread&threadID=7681 EDIT: Water sumbmersion does not effect the new reactors. Look at the new nuclear reactor mechanics: Explanation of a Mk1 reactor (by Direwolf20):
  17. It will be fixed in the next update to tekkit lite
  18. It would be Forge essential's fault. Try as op. Otherwise, have a look at http://forums.technicpack.net/threads/forgepermissions-how-it-works-and-how-to-make-it-work.34877/
  19. Have a look at the liquid transposer from thermal expansion.
  20. Not a bug. It is the new behaviour of nuclear reactors. Watch
  21. See http://forums.technicpack.net/threads/craftpackets-always-crash.34892/#post-293678 as it is the same issue. Maybe your id change is better than mine.
  22. Just so you know, two separate continuations of the shaders mod are called "GLSL SHADERS MOD MODIFIED BY KARYONIX" and "GLSL Shaders OF", both are MC 1.4.6 compatible (comatible with tekkit lite). It goes into the jar (i.e. modpack.jar)
  23. For single player games, change one lot of ids to something else. So those two lines I:bagOfHolding=19001 I:itemCraftId=19000 change to I:bagOfHolding=9001 I:itemCraftId=9000 However it will mean you will have ID mismatches between your client and servers (if they don't change it, or change it to a different value than you have). An update to tekkit lite is the proper way to fix it, as they will change it to a set value that everyone will have. A slightly less major but official way to do it is for there to be an official value of the new ids, but will mean even noobs have to mess around with IDs instead of just play. EDIT: Relied on NEI id dump, which did not work properly. EDIT 2: New ids, which actually work
  24. It means the game itself is trying to use the same ID for two different items. Somewhat Related, but not sure if helpful (sorry, it just sprang to mind)
×
×
  • Create New...