Everything posted by Luis_ST
-
help me pls
Why is this than logged?
-
Spawn structure from inventory
Since I don't write mods for 1.18.2 anymore, i use code 1.19 for the following explanation. i hope the classes exists and the code work first of all you need to call Structure#generate this will return a StructureStart. Before you continue make sure StructureStart#isValid returns true. Then make sure all Chunks in the BoundingBox of the Structure is fully load. Then call StructureStart#placeInChunk for each Chunk which is inside the Structure BoundingBox, therefore you can use something like this: BoundingBox structureBox = structureStart.getBoundingBox(); ChunkPos minPos = new ChunkPos(SectionPos.blockToSectionCoord(structureBox.minX()), SectionPos.blockToSectionCoord(structureBox.minZ())); ChunkPos maxPos = new ChunkPos(SectionPos.blockToSectionCoord(structureBox.maxX()), SectionPos.blockToSectionCoord(structureBox.maxZ())); ChunkPos.rangeClosed(minPos, maxPos).forEach((pos) -> { // load structure here }); Note the BoundingBox of StructureStart#placeInChunk is not the Structure BoundingBox it's the BoundingBox of the Chunk in which you currently generate the Structure, means you need to create inside the #forEach a BoundingBox for the current chunk pos from the min x, y, z to the max x, y, z should be looks like this: new BoundingBox(pos.getMinBlockX(), ServerLevel#getMinBuildHeight(), pos.getMinBlockZ(), pos.getMaxBlockX(), erverLevel#getMaxBuildHeight(), pos.getMaxBlockZ())
-
exit code -1073741819
the letter number combination after: --accessToken in the Command line info
-
[1.18] Call when Block has removed
Block#onDestroyedByPlayer or Block#destroy
-
Every time I open Minecraft of any version through the launcher with forge for that version it gives me error code #1.
make sure this the full debug.log if this is the full log please post launcher_log.txt as well
-
The game crashed whilst exception in server tick loop Error: java.lang.NoSuchFieldError: ENTITIES Exit Code: -1
have you done this?
-
Can someone help me solve this Problem?
Forge 1.19 has breaking changes recently, mods need to update for them. Check if there are updated versions of your mods or downgrade Forge.
-
Texture bug
could you please provide a screenshot or a video (if necessary)
-
help me pls
Please answer this question
-
Mod Loading has failed (1.19)
post debug.log of version 41.0.60 Note on CurseForge you need to enable the debug.log in the settings Minecraft 1.19 requires java 17
-
[] function to get the top highes solid block in a chunk
you can try Level#getHeight with Heightmap.Types.MOTION_BLOCKING_NO_LEAVES
-
Forge Installer will not start. Help!
you don't need a JDK for only running .jar file, a JRE is sufficient run the installer from the command line and post full output
-
help me pls
Why did you run ther server in offline mode?
-
1.18.2 Exit code -1 Registry is already frozen
Problem with Solar Flux. Make sure you are using the latest version. If the Mod is already up to date, report this bug to the Mod author.
-
Mod Loading has failed (1.19)
Forge 1.19 has breaking changes recently, mods need to update for them. Check if there are updated versions of your mods or downgrade Forge.
-
Error -1 Minecraft Launcher Forge 1.19 41.0.100
Forge 1.19 has breaking changes recently, mods need to update for them. Check if there are updated versions of your mods or downgrade Forge.
-
Forge Crash Exit Code 1
you have file extensions disabled, i would recommend you to enable them, if this is the full content of the debug(.log), please post launcher_log(.txt) as well
-
My modpack 168 mods in 1.18.2 is crashing
this is a Fabric Mod
-
My modpack 168 mods in 1.18.2 is crashing
Industrial Foregoing requires Titanium. Unfortunately the mod does not properly indicate this dependency, so the mod simply crashes instead of Forge showing a helpful error message.
-
How do i get the Position of things ?
For entities (include Players) you can use Entity#getX, Entity#getY and Entity#getZ or if you need a BlockPos Entity#blockPosition. Blocks you normally get from a Level via a BlockPos, if you need the Position of a Block you need to iterate over the Blocks in a area but this is not recommended to do, since there could be a performance leak (depends on the area size)
-
Crash: mods not loading
Cloud Storage needs to update to the recent breaking changes of Forge. Make sure you are using the latest version.
-
My modpack 168 mods in 1.18.2 is crashing
- Forge Crash Exit Code 1
it's a part of the debug.log please post the full log- error 255; Description: Unexpected error; java.lang.NullPointerException: Cannot invoke HELP ME please
- Spawn structure from inventory
you can take a look a the PlaceCommand - Forge Crash Exit Code 1
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.