-
Posts
3284 -
Joined
-
Last visited
-
Days Won
62
Everything posted by ChampionAsh5357
-
Running into an error when starting my server
ChampionAsh5357 replied to GHOST_BRASIL's topic in Support & Bug Reports
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.2 (Latest) and 1.18.2 (LTS). -
Download Java 8 JDK then? You can do so from Adoptium.
-
random crash seconds after server start
ChampionAsh5357 replied to peanut_scp's topic in Support & Bug Reports
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.2 (Latest) and 1.18.2 (LTS). -
I want to add task to play clip sound
ChampionAsh5357 replied to Jongco0331's topic in Modder Support
Don't do this. If you are going to play sound in Minecraft, use the SoundEngine and build sounds around that. What are you trying to do? -
The parameter can be obtained from EndDragonFight#hasPreviouslyKilledDragon which can be obtained from the ServerLevel#dragonFight assuming the ServerLevel is the END which can be obtained from MinecraftServer#getLevel.
-
1.19.2 Make player perform an animation
ChampionAsh5357 replied to Zacomat's topic in Modder Support
This is currently not possible as Forge does not expose the necessary parts in events. It is easier to subclass the item and set the use animation to the bow or apply the transform yourself by overriding #applyForgeHandTransform. -
The model reads data from the living entity, which is synced from the server. This is synced whenever it is changed because they are rendered on the client. For items in the inventory that are not always rendered, they are not synced. You can get the item via LivingEntity#getMainHandItem or #getOffHandItem.
-
Alternative mod folder for diffrent versions
ChampionAsh5357 replied to Socks_M's topic in Support & Bug Reports
The best recommendation is just to change the game directory and live with the copy-paste. You could build a custom locator for mods using `IModDirectoryLocatorFactory`, but at that point it makes no sense to. -
If you have the necessary permissions to transform the mod, you would need the Java JDK 17 (preferably Adoptium) and an IDE like Eclipse or IntelliJ for sanity. The rest is just programming experience and understanding how to make a mod, to which there are some docs and the vanilla source you can view to help you out.
-
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.2 (Latest) and 1.18.2 (LTS).
-
Please provide the entire debug.log from the logs folder in addition to the version of Minecraft you are using.
-
[1.19.2] Automatic local player actions
ChampionAsh5357 replied to Zacomat's topic in Modder Support
May I ask the use case for this? -
Forcing is a server side thing which tells it to tick. Client side rendering is controlled by the chunk render distance in the options settings. Typically that has a hardcoded max on that since the game is not optimized for what you are doing. In my opinion, it would be better to create a pseudo-level which you control such that you can do your own custom rendering, logic, and serialization so you can apply optimizations without needing to do ridiculous workarounds. It additionally has an added benefit of being independent of the main game, so you could have many different RTSes per world. But if you want to keep going down this path, you just need to render and optimize multiple chunks on screen and make sure your force logic is functioning properly. Though you can probably get away without forcing the chunk by just keeping track of how much time has passed and executing all the logic at once or having the logic apply on the world capability in a limited capacity such that when the chunk loads back in, you can apply the transforms immediately.
-
You would have to remove the previous ticket and then add a new one each time the entity steps into a new chunk. I believe the chunk has to be ticking to grab the associated entity, or you need to refer to them by the entity uuid, assuming the entity isn't unloaded when the chunk is. Why are you trying to force a chunk to remain loaded by the way? You can usually do most logic without having to do so.
-
For context: Note that we will not provide support on how to do this due to the specified reasons and that it is an unsupported version.
-
i have problem with ice and fire mod
ChampionAsh5357 replied to Pan_Patrik's topic in Support & Bug Reports
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.2 (Latest) and 1.18.2 (LTS). -
This is a user error. Therefore, 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.2 (Latest) and 1.18.2 (LTS).