larsgerrits
Members-
Posts
3462 -
Joined
-
Last visited
-
Days Won
17
Everything posted by larsgerrits
-
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.
-
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.
-
Forge 1.10.2 Issue: Java Binary Stops Working
larsgerrits replied to C.L.'s topic in Support & Bug Reports
It's described in the EAQ. -
1.7.10 is no longer supported on this forum. You should update to 1.10.2 or 1.11.2.
-
(Forge 1.10) onEntityDeath + Adding Item (UNRESOLVED)
larsgerrits replied to DireDoesGames's topic in Modder Support
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. -
(Forge 1.10) onEntityDeath + Adding Item (UNRESOLVED)
larsgerrits replied to DireDoesGames's topic in Modder Support
Not a lot of places, really. 1.7.10 is really old. Why? 1.7.10 is almost 3 years old. -
(Forge 1.10) onEntityDeath + Adding Item (UNRESOLVED)
larsgerrits replied to DireDoesGames's topic in Modder Support
1.7.10 is no longer supported on this forum. You should update to 1.10.2 or 1.11.2. -
[1.11.2] Getting A Changeable Resource
larsgerrits replied to Socratic_Phoenix's topic in Modder Support
This is true. Mods' resources can be overwritten by a resource pack. -
Install the Forge MDK like you always would. Then add the Optifine mod to the mods or libs folder. Bu why Optifine?
-
Introducing Mercurius! Stats and Analytics for Forge
larsgerrits replied to a topic in Site News (non-forge)
You can already see that, it's the "Java Versions by Install" at the Forge Mercurius sited linked in the OP. -
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(...);
-
My Forge doesnt recognise my mods
larsgerrits replied to fernseher99's topic in Support & Bug Reports
1.7.10 is no longer supported on this forum. Please update to the latest version. -
Forge keeps crashing and i'm on 1.9.4 plz help me
larsgerrits replied to Raider2747's topic in Support & Bug Reports
You have MalisisCore for 1.10.2 installed for Minecraft 1.9.4. -
Custom resources not working in modding environment only
larsgerrits replied to winnetrie's topic in Modder Support
Post the latest logs (fml-client-latest.log). -
[1.11.2][SOLVED] Correct way to register item renders
larsgerrits replied to lieywe's topic in Modder Support
What the hell is this? Also, do not use the ItemModelMesher, use the ModelLoader in preInit. -
He shouldn't even be using those classes, as there's a new way of client/server communication (SimpleNetworkWrapper).
-
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?).
-
[1.11.2] [SOLVED] Identify type of Energy Acceptor
larsgerrits replied to Bektor's topic in Modder Support
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). -
[1.11.2] [SOLVED] Identify type of Energy Acceptor
larsgerrits replied to Bektor's topic in Modder Support
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. -
1.7.10 is no longer supported on this forum. You should update to 1.10.2 or, preferably, 1.11.2.
-
The fix is in the latest release (13.20.0.2284). You can download it from the file server.
-
Froge Server kicking me after a couple of seconds
larsgerrits replied to Joshee's topic in Support & Bug Reports
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. -
Froge Server kicking me after a couple of seconds
larsgerrits replied to Joshee's topic in Support & Bug Reports
1.7.10 is no longer supported on this forum.