-
Posts
3284 -
Joined
-
Last visited
-
Days Won
62
Everything posted by ChampionAsh5357
-
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).
-
java.net.UnknownHostException: libraries.minecraft.net
ChampionAsh5357 replied to Dyp1xy's topic in Support & Bug Reports
Potentially? Though usually the vpn infers there's something wrong with the traffic between the two, so I don't know. You would need to verify that the network isn't the issue using a separate network before then. -
How can I add ${} variable to use in mods.toml
ChampionAsh5357 replied to ___exploit___'s topic in Modder Support
Ah, that's currently not supported, so most likely you would need to do that manually since I believe the Forge screen uses a literal component. You could bring that up as an issue on Forge, however, since that would be a good feature to have. -
How can I add ${} variable to use in mods.toml
ChampionAsh5357 replied to ___exploit___'s topic in Modder Support
I mean, what values are your trying to reflect and when? If you want it done during build time, you can just use gradle during the processResources task to replace the values in the mods.toml for you. -
java.net.UnknownHostException: libraries.minecraft.net
ChampionAsh5357 replied to Dyp1xy's topic in Support & Bug Reports
Currently throwing this over to the discord to see if they have any new ideas since I've run out. One of them suggested seeing if your Java version is out of date (e.g. at least latest Java 8 for the launcher, but recommended Java 17 since that's what 1.19.2 uses). -
Create an IItemDecorator and attach it for your item via RegisterItemDecorationsEvent on the mod bud if you want it on the item hud. On the tooltip, you can use RenderTooltipEvent$GatherComponents on the forge event bus to add your specific thing to the tooltip. If you want something custom to render for the tooltip, you can create a new ClientTooltipComponent and register it via RegisterClientTooltipComponentFactoriesEvent on the mod event bus.
-
[1.19] Where is mc.objectMouseOver in 1.19??
ChampionAsh5357 replied to zjabaxdxd's topic in Modder Support
I believe it's now called `Minecraft#crosshairPickEntity`. -
Please provide the entire debug.log from the logs folder in the game directory via a pastebin or gist. But a missing class likely means that a mod is missing (in this case probably AutoRegLib).
-
[1.8.9] How to get the item name. (For Hypixel skyblock)
ChampionAsh5357 replied to godbrigero's topic in Modder Support
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS).- 1 reply
-
- 1
-
Can't get my GUI,container working(1.16.5)
ChampionAsh5357 replied to ReinierTheGhost's topic in Modder Support
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently supported versions are 1.19.3 (Latest), 1.19.2, and 1.18.2 (LTS). -
How to get world save folder name as string?
ChampionAsh5357 replied to X66Herobrine66X's topic in Modder Support
I mean...it's kinda important since we don't support MCreator help, so it would be rude to not provide support and not tell you why. Because, as I said, there's no reason for you to directly touch the world folder itself. There are plenty of other systems that allows you to write/read arbitrary data without it. Apologies for the misunderstanding, but again, it doesn't matter the question if there is a better way to solve it or we don't support it. -
Crash Simple Storage Network - Life in the Village 3
ChampionAsh5357 replied to Hugolerat's topic in Support & Bug Reports
Typically the mods will say so itself. Then it could just be an issue with the mods after startup which might need to be reported to StorageNetwork if you can replicate this on a new world. -
When ore is mined nothing is being dropped.
ChampionAsh5357 replied to yusufgamer's topic in Modder Support
No loot table? -
Need to know the meaning of the function "getInputVector"
ChampionAsh5357 replied to Vat1n's topic in Modder Support
To set the movement of the entity towards the direction of the passed in vector. -
Game keeps crashing whilst initializing
ChampionAsh5357 replied to skydiamond44's topic in Support & Bug Reports
You most likely need to download AutoRegLib and put it in your mods folder. -
Crash Simple Storage Network - Life in the Village 3
ChampionAsh5357 replied to Hugolerat's topic in Support & Bug Reports
It seems to be an incompatibility between JEI and StorageNetwork. You should try removing one of them or upgrading/downgrading one to a supported version of the other.