Jump to content

larsgerrits

Members
  • Posts

    3462
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by larsgerrits

  1. I know. He just wasn't really specific about when a user can press the key (maybe he can only "ghost" when he's dead and presses a key). But that doesn't matter, as he said it's for an actual mod.
  2. It depends. If the player has to die before he can "ghost", it's not really a hack. And he could put heavy limits to the "ghost". @OP, take a look at how Minecraft handles spectator mode.
  3. It's described in the EAQ.
  4. 1.7.10 is no longer supported on this forum. You should update to 1.10.2 or 1.11.2.
  5. Well, you should fix that, don't you? Well, this is something you're going to have to live with. More and more stuff is going to the JSON format, like advancements (new achievements) and recipes. One day you're going to have to learn it.
  6. Not a lot of places, really. 1.7.10 is really old. Why? 1.7.10 is almost 3 years old.
  7. 1.7.10 is no longer supported on this forum. You should update to 1.10.2 or 1.11.2.
  8. This is true. Mods' resources can be overwritten by a resource pack.
  9. Install the Forge MDK like you always would. Then add the Optifine mod to the mods or libs folder. Bu why Optifine?
  10. You can already see that, it's the "Java Versions by Install" at the Forge Mercurius sited linked in the OP.
  11. Post the FML log (fml-client-latest.log). And did you check you're connected to the internet and don't get blocked by the firewall?
  12. Minecraft.getMinecraft().addScheduledTask(new Runnable(){ public void run(){ handle(message, ctx, player); } }); You are sending the packet to the server, while the Minecraft is a client-only class. This doesn't work. Use the WorldServer of the player to schedule a task: ((WorldServer) ctx.getServerHandler().playerEntity.worldObj).addScheduledTask(...);
  13. 1.7.10 is no longer supported on this forum. Please update to the latest version.
  14. Post the logs (fml-client-latest.log). From your mod list, it looks like you have TMI for 1.8 installed. And don't make your post longer by placing a single dot after a lot of empty space. It's doing nothing but being annoying.
  15. You have MalisisCore for 1.10.2 installed for Minecraft 1.9.4.
  16. Post the latest logs (fml-client-latest.log).
  17. What the hell is this? Also, do not use the ItemModelMesher, use the ModelLoader in preInit.
  18. He shouldn't even be using those classes, as there's a new way of client/server communication (SimpleNetworkWrapper).
  19. A lot of internal changes have been made since 1.6. You'd most likely be better of with rewriting the mod instead of updating the mod. BuildCraft is now using the Forge energy capability (or is it still using the RF API?).
  20. As far as I know, there's no way to distinguish them apart except for calling IEnergyStorage#canExtract and IEnergyStorage#canReceive, but that won't guarantee anything (e.g. power banks are both inputs and outputs).
  21. There are multiple ways of handling energy. A few I can think of: Have a main "controller" block which handles everything in the network. (e.g. Applied Energistics, Refined Storage) Have the cables extract energy from outputs and move it around per block (to stop energy from bouncing around, save the block latest received from) until it finds an energy user. Have energy users go down a line of cables to find the nearest energy output and extract it from them instantly. This way the cables don't have to do anything and just serve as a guide.
  22. 1.7.10 is no longer supported on this forum. You should update to 1.10.2 or, preferably, 1.11.2.
  23. The fix is in the latest release (13.20.0.2284). You can download it from the file server.
  24. Because it's very old version of Minecraft released almost 3 years ago. And with almost every Minecraft version changing a lot of stuff, it is very hard for the forum team to keep up. support for 5 different versions. They usually offer support for the latest 2 major versions, which right now are 1.10.2 and 1.11.2, and sometimes 1.8.9/1.9.4 (practically the same codebase) with a message they should update.
  25. 1.7.10 is no longer supported on this forum.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.