
Everything posted by Cadiboo
-
Cannot Launch Modpack
Deleting everything inside /Library/Java/JavaVirtualMachines/ will not delete anything outside of /Library/Java/JavaVirtualMachines/.
-
[1.13.2] Tile Entity not loading contents on world reload and TER struggles
Don't use GL11. Use the GLStateManager. Also consider de-duplicating all that code, you've got the same code 17 times. When your debugging, the first thing that you should do is isolate the issue. If you're repeating the same code many times and have a mistake in one of them, it becomes very hard to track down the issue. Don't use TileEntityLockable or ISidedInventory. Do not use IInventory at all, Forge's ItemStackHandlers replace it entirely.
-
[1.12.2] How do I make bedrock add stat to the player stat. [Solved]
Private instance methods cannot be overriden because the bytecode instructions in the class that uses it for them will still be INVOKE_SPECIAL rather than the INVOKE_VIRTUAL opcodes required for overriding to work.
-
[1.12.2] How do I make bedrock add stat to the player stat. [Solved]
Java 9 removed the ability to definalise Fields with Reflection.
-
Cannot Launch Modpack
Delete everything from /Library/Java/JavaVirtualMachines and then install Java 8 from https://adoptopenjdk.net/
-
Cannot Launch Modpack
What Operating System are you on?
-
Ticking screen error on multiplayer forge Server
Sorry we don't support 1.7.10 (it's 4+ years old!) or any version under 1.10 on this forum anymore due to their age. We simply don't know how to help you anymore. You can go to the Minecraft Forum where I think that they still still support older versions, or update to a modern version of Minecraft (the latest version or the one before it) to receive support on this forum.
-
[1.12.2] How do I make bedrock add stat to the player stat. [Solved]
In some cases they are. They are better when you have a private/protected/package private Field that you want to get/set or you have a private/protected/package private Class that you want to access. They are also when you have a private Method that you want to call (not override). They are also the only solution (aside from ASM) to definalise a Class/Field/Method. In all other cases Reflection should be used
-
[1.12.2] How do I make bedrock add stat to the player stat. [Solved]
Access Transformers exist. Or Access Transformers
-
[1.13] Setting up dev environment / Getting Started
The install commands for eclipse are eclipse and then genEclipseRuns. Everything is now in mods.toml. Example, Example @Instance isn't used anymore. If you need the instance, store it yourself. These events are now fired on the Mod event bus, like registry events. You can subscribe to these methods in the normal way or use the mod loading context given to you from the constructor. Example, Example
-
Forge 1.13.2 - shapeless recipe not working!
don't use metadata in 1.13.2. Also, post your logs
-
Cannot Launch Forge Server 1.12.2 on Mac
Delete any versions other than Java 8 in /Library/Java/JavaVirtualMachines/
-
Novice at using mods at Minecraft(help please)
Forge doesn't support 1.14.2 yet
-
How to move player camera, while also making it smoothly
To smooth stuff out you want linear interpolation
-
Forge 1.12.2 crashes, please help
Post your logs as described in our signatures and the EAQ
-
[1.13] Missing @Config annotation and package
modLoadingContext#registerConfig has a fileName parameter. You can probably use use the system file separator in that name
-
[1.13] Missing @Config annotation and package
Why do you want multiple config files?
-
[1.13] Missing @Config annotation and package
No clue, probably don’t. I know that can change the name of the config somehow, if you really want to look into this that would be a good place to look at.
-
Cannot Launch Forge Server 1.12.2 on Mac
What’s the result of running “java -version” in terminal?
-
[1.13] Missing @Config annotation and package
Client config is in .minecraft/config/<modid>-client.toml, server is in .minecraft/saves/<world>/serverconfig/<modid>-server.toml
-
[1.13.2] JSON model shading too dark
Does your model have AO enabled?
-
Cannot Launch Forge Server 1.12.2 on Mac
You need to use Java 8 on 1.12.2
-
Error on startup
Don’t use runClient, use the run configs from inside your IDE.
-
[1.13] Missing @Config annotation and package
Use the new toml config system. It’s separated based on logical side. Config value holders class: https://github.com/Cadiboo/NoCubes/blob/21969fd434c1711278fd7e1cf8e2f6126ef7b963/src/main/java/io/github/cadiboo/nocubes/config/Config.java “Baking” the configs: https://github.com/Cadiboo/NoCubes/blob/21969fd434c1711278fd7e1cf8e2f6126ef7b963/src/main/java/io/github/cadiboo/nocubes/config/ConfigHelper.java#L100-L135 Config objects holder class: https://github.com/Cadiboo/NoCubes/blob/21969fd434c1711278fd7e1cf8e2f6126ef7b963/src/main/java/io/github/cadiboo/nocubes/config/ConfigHolder.java (Logical) client config: https://github.com/Cadiboo/NoCubes/blob/21969fd434c1711278fd7e1cf8e2f6126ef7b963/src/main/java/io/github/cadiboo/nocubes/config/ClientConfig.java All of the above classes can be in one file. Config change event subscription: https://github.com/Cadiboo/NoCubes/blob/21969fd434c1711278fd7e1cf8e2f6126ef7b963/src/main/java/io/github/cadiboo/nocubes/NoCubes.java#L44-L51 Registering the config specs: https://github.com/Cadiboo/NoCubes/blob/21969fd434c1711278fd7e1cf8e2f6126ef7b963/src/main/java/io/github/cadiboo/nocubes/NoCubes.java#L54-L55
- missing texture
IPS spam blocked by CleanTalk.