custom simple f3

This commit is contained in:
lfirmin
2025-12-08 15:05:01 +01:00
commit 49c3760a1f
102 changed files with 11865 additions and 0 deletions
+57
View File
@@ -0,0 +1,57 @@
# Configuration file
general {
# Set to true to disable Forge's version check mechanics. Forge queries a small json file on our server for version information. For more details see the ForgeVersion class in our github.
B:disableVersionCheck=false
# Controls the number threshold at which Packet51 is preferred over Packet52, default and minimum 64, maximum 1024
I:clumpingThreshold=64
# Set to true to enable the post initialization sorting of crafting recipes using Forge's sorter. May cause desyncing on conflicting recipies. MUST RESTART MINECRAFT IF CHANGED FROM THE CONFIG GUI.
B:sortRecipies=true
# Set this to true to remove any Entity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES.
B:removeErroringEntities=false
# Set this to true to remove any TileEntity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES.
B:removeErroringTileEntities=false
# Set this to true to check the entire entity's collision bounding box for ladders instead of just the block they are in. Causes noticable differences in mechanics so default is vanilla behavior. Default: false
B:fullBoundingBoxLadders=false
# Control the range of sky blending for colored skies in biomes.
I:biomeSkyBlendRange <
2
4
6
8
10
12
14
16
18
20
22
24
26
28
30
32
34
>
# Base zombie summoning spawn chance. Allows changing the bonus zombie summoning mechanic.
D:zombieBaseSummonChance=0.1
# Chance that a zombie (or subclass) is a baby. Allows changing the zombie spawning mechanic.
D:zombieBabyChance=0.05
# The spawn fuzz when a player respawns in the world, this is controlable by WorldType, this config option is for the default overworld.
I:defaultSpawnFuzz=20
# If the overworld has ANY spawn fuzz at all. If not, the spawn will always be the exact same location.
B:spawnHasFuzz=true
B:enableGlobalConfig=false
}
+47
View File
@@ -0,0 +1,47 @@
# Configuration file
##########################################################################################################
# Forge
#--------------------------------------------------------------------------------------------------------#
# Sample mod specific control section.
# Copy this section and rename the with the modid for the mod you wish to override.
# A value of zero in either entry effectively disables any chunkloading capabilities
# for that mod
##########################################################################################################
Forge {
# Maximum chunks per ticket for the mod.
I:maximumChunksPerTicket=25
# Maximum ticket count for the mod. Zero disables chunkloading capabilities.
I:maximumTicketCount=200
}
##########################################################################################################
# defaults
#--------------------------------------------------------------------------------------------------------#
# Default configuration for forge chunk loading control
##########################################################################################################
defaults {
# Are mod overrides enabled?
B:enabled=true
# The default maximum number of chunks a mod can force, per ticket,
# for a mod without an override. This is the maximum number of chunks a single ticket can force.
I:maximumChunksPerTicket=25
# The default maximum ticket count for a mod which does not have an override
# in this file. This is the number of chunk loading requests a mod is allowed to make.
I:maximumTicketCount=200
# The number of tickets a player can be assigned instead of a mod. This is shared across all mods and it is up to the mods to use it.
I:playerTicketCount=500
# Unloaded chunks can first be kept in a dormant cache for quicker
# loading times. Specify the size (in chunks) of that cache here
I:dormantChunkCacheSize=0
}
+14
View File
@@ -0,0 +1,14 @@
#Splash screen properties
#Mon Dec 08 14:25:56 CET 2025
logoTexture=textures/gui/title/mojang.png
background=0xFFFFFF
font=0x0
barBackground=0xFFFFFF
barBorder=0xC0C0C0
rotate=false
bar=0xCB3D35
enabled=true
resourcePackPath=resources
logoOffset=0
forgeTexture=fml\:textures/gui/forge.gif
fontTexture=textures/font/ascii.png
+20
View File
@@ -0,0 +1,20 @@
# Configuration file
display {
# Custom text shown at the top [default: VANADIUM V1]
S:customText=VANADIUM V1
# Show current biome [default: true]
B:showBiome=true
# Show player coordinates [default: true]
B:showCoords=true
# Show player direction [default: true]
B:showDirection=true
# Show RAM usage [default: true]
B:showRAM=true
}
@@ -0,0 +1,137 @@
---- Minecraft Crash Report ----
// Uh... Did I do that?
Time: 05/12/25 15:55
Description: Invalid Biome id
java.lang.NullPointerException: Invalid Biome id
at net.minecraft.world.biome.WorldChunkManager.getRainfall(WorldChunkManager.java:76)
at net.minecraft.world.biome.BiomeCache$Block.<init>(SourceFile:26)
at net.minecraft.world.biome.BiomeCache.getBiomeCacheBlock(SourceFile:52)
at net.minecraft.world.biome.BiomeCache.getBiomeGenAt(SourceFile:61)
at net.minecraft.world.biome.WorldChunkManager.getBiomeGenAt(WorldChunkManager.java:58)
at net.minecraft.world.chunk.Chunk.getBiomeGenForWorldCoords(Chunk.java:1288)
at net.minecraft.world.World.getBiomeGenForCoordsBody(World.java:141)
at net.minecraft.world.WorldProvider.getBiomeGenForCoords(WorldProvider.java:365)
at net.minecraft.world.World.getBiomeGenForCoords(World.java:130)
at net.minecraftforge.client.ForgeHooksClient.getSkyBlendColour(ForgeHooksClient.java:407)
at net.minecraft.world.World.getSkyColorBody(World.java:1597)
at net.minecraft.world.WorldProvider.getSkyColor(WorldProvider.java:399)
at net.minecraft.world.World.getSkyColor(World.java:1575)
at net.minecraft.client.renderer.EntityRenderer.updateFogColor(EntityRenderer.java:1672)
at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1154)
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1015)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1001)
at net.minecraft.client.Minecraft.run(Minecraft.java:898)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
at GradleStart.main(Unknown Source)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Stacktrace:
at net.minecraft.world.biome.WorldChunkManager.getRainfall(WorldChunkManager.java:76)
-- DownfallBlock --
Details:
biome id: 0
downfalls[] size: 256
x: 0
z: 0
w: 16
h: 16
Stacktrace:
at net.minecraft.world.biome.WorldChunkManager.getRainfall(WorldChunkManager.java:76)
at net.minecraft.world.biome.BiomeCache$Block.<init>(SourceFile:26)
at net.minecraft.world.biome.BiomeCache.getBiomeCacheBlock(SourceFile:52)
at net.minecraft.world.biome.BiomeCache.getBiomeGenAt(SourceFile:61)
at net.minecraft.world.biome.WorldChunkManager.getBiomeGenAt(WorldChunkManager.java:58)
at net.minecraft.world.chunk.Chunk.getBiomeGenForWorldCoords(Chunk.java:1288)
-- Coordinates of biome request --
Details:
Location: World: (250,0,78), Chunk: (at 10,0,14 in 15,4; contains blocks 240,0,64 to 255,255,79), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
Stacktrace:
at net.minecraft.world.World.getBiomeGenForCoordsBody(World.java:141)
at net.minecraft.world.WorldProvider.getBiomeGenForCoords(WorldProvider.java:365)
at net.minecraft.world.World.getBiomeGenForCoords(World.java:130)
at net.minecraftforge.client.ForgeHooksClient.getSkyBlendColour(ForgeHooksClient.java:407)
at net.minecraft.world.World.getSkyColorBody(World.java:1597)
at net.minecraft.world.WorldProvider.getSkyColor(WorldProvider.java:399)
at net.minecraft.world.World.getSkyColor(World.java:1575)
at net.minecraft.client.renderer.EntityRenderer.updateFogColor(EntityRenderer.java:1672)
at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1154)
-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['Player236'/235, l='MpServer', x=276,32, y=70,62, z=104,98]]
Chunk stats: MultiplayerChunkCache: 0, 0
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options:
Level spawn location: World: (204,64,252), Chunk: (at 12,4,12 in 12,15; contains blocks 192,0,240 to 207,255,255), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
Level time: 88414 game time, 28472 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
Forced entities: 12 total; [EntitySheep['Sheep'/240, l='MpServer', x=348,16, y=67,00, z=36,19], EntityBat['Bat'/242, l='MpServer', x=206,00, y=15,75, z=41,50], EntityZombie['Zombie'/243, l='MpServer', x=205,84, y=45,00, z=34,00], EntityPig['Pig'/245, l='MpServer', x=350,69, y=67,00, z=28,88], EntityClientPlayerMP['Player236'/235, l='MpServer', x=276,32, y=70,62, z=104,98], EntitySheep['Sheep'/247, l='MpServer', x=353,38, y=67,00, z=40,72], EntityPig['Pig'/249, l='MpServer', x=355,09, y=67,00, z=38,25], EntityPig['Pig'/250, l='MpServer', x=353,94, y=67,00, z=36,06], EntitySkeleton['Skeleton'/236, l='MpServer', x=256,50, y=52,00, z=28,50], EntitySkeleton['Skeleton'/237, l='MpServer', x=213,34, y=29,00, z=46,44], EntitySkeleton['Skeleton'/238, l='MpServer', x=347,50, y=21,00, z=37,50], EntityCreeper['Creeper'/239, l='MpServer', x=349,00, y=26,00, z=39,53]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:373)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2444)
at net.minecraft.client.Minecraft.run(Minecraft.java:919)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
at GradleStart.main(Unknown Source)
-- System Details --
Details:
Minecraft Version: 1.7.10
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_202, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 636159480 bytes (606 MB) / 789053440 bytes (752 MB) up to 7618953216 bytes (7266 MB)
JVM Flags: 0 total;
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 11, tcache: 33, allocated: 13, tallocated: 124
FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 4 mods loaded, 4 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
UCHIJAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
UCHIJAAAA FML{7.10.99.99} [Forge Mod Loader] (forgeBin-1.7.10-10.13.4.1614-1.7.10.jar)
UCHIJAAAA Forge{10.13.4.1614} [Minecraft Forge] (forgeBin-1.7.10-10.13.4.1614-1.7.10.jar)
UCHIJAAAA vanamod{0.1} [VanaMod] (VanaMod-0.1.jar)
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 581.15' Renderer: 'NVIDIA GeForce RTX 3070/PCIe/SSE2'
Launched Version: 1.7.10
LWJGL: 2.9.1
OpenGL: NVIDIA GeForce RTX 3070/PCIe/SSE2 GL version 4.6.0 NVIDIA 581.15, NVIDIA Corporation
GL Caps: Using GL 1.3 multitexturing.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Anisotropic filtering is supported and maximum anisotropy is 16.
Shaders are available because OpenGL 2.1 is supported.
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs: []
Current Language: ~~ERROR~~ NullPointerException: null
Profiler Position: N/A (disabled)
Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Anisotropic Filtering: On (16)
@@ -0,0 +1,137 @@
---- Minecraft Crash Report ----
// Why did you do that?
Time: 06/12/25 05:07
Description: Invalid Biome id
java.lang.NullPointerException: Invalid Biome id
at net.minecraft.world.biome.WorldChunkManager.getRainfall(WorldChunkManager.java:76)
at net.minecraft.world.biome.BiomeCache$Block.<init>(SourceFile:26)
at net.minecraft.world.biome.BiomeCache.getBiomeCacheBlock(SourceFile:52)
at net.minecraft.world.biome.BiomeCache.getBiomeGenAt(SourceFile:61)
at net.minecraft.world.biome.WorldChunkManager.getBiomeGenAt(WorldChunkManager.java:58)
at net.minecraft.world.chunk.Chunk.getBiomeGenForWorldCoords(Chunk.java:1288)
at net.minecraft.world.World.getBiomeGenForCoordsBody(World.java:141)
at net.minecraft.world.WorldProvider.getBiomeGenForCoords(WorldProvider.java:365)
at net.minecraft.world.World.getBiomeGenForCoords(World.java:130)
at net.minecraftforge.client.ForgeHooksClient.getSkyBlendColour(ForgeHooksClient.java:407)
at net.minecraft.world.World.getSkyColorBody(World.java:1597)
at net.minecraft.world.WorldProvider.getSkyColor(WorldProvider.java:399)
at net.minecraft.world.World.getSkyColor(World.java:1575)
at net.minecraft.client.renderer.EntityRenderer.updateFogColor(EntityRenderer.java:1672)
at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1154)
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1015)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1001)
at net.minecraft.client.Minecraft.run(Minecraft.java:898)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
at GradleStart.main(Unknown Source)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Stacktrace:
at net.minecraft.world.biome.WorldChunkManager.getRainfall(WorldChunkManager.java:76)
-- DownfallBlock --
Details:
biome id: 0
downfalls[] size: 256
x: 0
z: 0
w: 16
h: 16
Stacktrace:
at net.minecraft.world.biome.WorldChunkManager.getRainfall(WorldChunkManager.java:76)
at net.minecraft.world.biome.BiomeCache$Block.<init>(SourceFile:26)
at net.minecraft.world.biome.BiomeCache.getBiomeCacheBlock(SourceFile:52)
at net.minecraft.world.biome.BiomeCache.getBiomeGenAt(SourceFile:61)
at net.minecraft.world.biome.WorldChunkManager.getBiomeGenAt(WorldChunkManager.java:58)
at net.minecraft.world.chunk.Chunk.getBiomeGenForWorldCoords(Chunk.java:1288)
-- Coordinates of biome request --
Details:
Location: World: (218,0,6), Chunk: (at 10,0,6 in 13,0; contains blocks 208,0,0 to 223,255,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
Stacktrace:
at net.minecraft.world.World.getBiomeGenForCoordsBody(World.java:141)
at net.minecraft.world.WorldProvider.getBiomeGenForCoords(WorldProvider.java:365)
at net.minecraft.world.World.getBiomeGenForCoords(World.java:130)
at net.minecraftforge.client.ForgeHooksClient.getSkyBlendColour(ForgeHooksClient.java:407)
at net.minecraft.world.World.getSkyColorBody(World.java:1597)
at net.minecraft.world.WorldProvider.getSkyColor(WorldProvider.java:399)
at net.minecraft.world.World.getSkyColor(World.java:1575)
at net.minecraft.client.renderer.EntityRenderer.updateFogColor(EntityRenderer.java:1672)
at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1154)
-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['Player230'/190, l='MpServer', x=244,17, y=72,62, z=32,92]]
Chunk stats: MultiplayerChunkCache: 0, 0
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options:
Level spawn location: World: (204,64,252), Chunk: (at 12,4,12 in 12,15; contains blocks 192,0,240 to 207,255,255), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
Level time: 91646 game time, 31704 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
Forced entities: 9 total; [EntityEnderman['Enderman'/192, l='MpServer', x=238,31, y=14,00, z=45,16], EntitySpider['Spider'/193, l='MpServer', x=225,94, y=20,41, z=30,28], EntitySkeleton['Skeleton'/194, l='MpServer', x=233,50, y=41,00, z=17,50], EntitySkeleton['Skeleton'/195, l='MpServer', x=242,50, y=45,00, z=12,50], EntitySkeleton['Skeleton'/196, l='MpServer', x=251,50, y=60,00, z=11,50], EntityZombie['Zombie'/197, l='MpServer', x=252,50, y=60,00, z=10,50], EntityCreeper['Creeper'/198, l='MpServer', x=251,97, y=51,00, z=15,44], EntityBat['Bat'/203, l='MpServer', x=224,53, y=51,09, z=15,59], EntityClientPlayerMP['Player230'/190, l='MpServer', x=244,17, y=72,62, z=32,92]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:373)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2444)
at net.minecraft.client.Minecraft.run(Minecraft.java:919)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
at GradleStart.main(Unknown Source)
-- System Details --
Details:
Minecraft Version: 1.7.10
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_202, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 646393272 bytes (616 MB) / 793247744 bytes (756 MB) up to 7618953216 bytes (7266 MB)
JVM Flags: 0 total;
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 18, tcache: 95, allocated: 5, tallocated: 59
FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 4 mods loaded, 4 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
UCHIJAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
UCHIJAAAA FML{7.10.99.99} [Forge Mod Loader] (forgeBin-1.7.10-10.13.4.1614-1.7.10.jar)
UCHIJAAAA Forge{10.13.4.1614} [Minecraft Forge] (forgeBin-1.7.10-10.13.4.1614-1.7.10.jar)
UCHIJAAAA vanamod{0.1} [VanaMod] (VanaMod-0.1.jar)
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 581.15' Renderer: 'NVIDIA GeForce RTX 3070/PCIe/SSE2'
Launched Version: 1.7.10
LWJGL: 2.9.1
OpenGL: NVIDIA GeForce RTX 3070/PCIe/SSE2 GL version 4.6.0 NVIDIA 581.15, NVIDIA Corporation
GL Caps: Using GL 1.3 multitexturing.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Anisotropic filtering is supported and maximum anisotropy is 16.
Shaders are available because OpenGL 2.1 is supported.
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs: []
Current Language: ~~ERROR~~ NullPointerException: null
Profiler Position: N/A (disabled)
Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Anisotropic Filtering: On (16)
@@ -0,0 +1,111 @@
---- Minecraft Crash Report ----
// Hi. I'm Minecraft, and I'm a crashaholic.
Time: 06/12/25 05:11
Description: Rendering screen
java.lang.NullPointerException: Rendering screen
at net.minecraft.client.gui.GuiScreen.drawWorldBackground(GuiScreen.java:336)
at net.minecraft.client.gui.GuiScreenRealmsProxy.drawWorldBackground(SourceFile:83)
at net.minecraft.client.gui.GuiScreen.drawDefaultBackground(GuiScreen.java:331)
at net.minecraft.client.gui.GuiScreenRealmsProxy.drawDefaultBackground(SourceFile:74)
at net.minecraft.realms.RealmsScreen.renderBackground(SourceFile:76)
at com.mojang.realmsclient.gui.RealmsGenericErrorScreen.render(RealmsGenericErrorScreen.java:66)
at net.minecraft.client.gui.GuiScreenRealmsProxy.drawScreen(SourceFile:88)
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1061)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1001)
at net.minecraft.client.Minecraft.run(Minecraft.java:898)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
at GradleStart.main(Unknown Source)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Stacktrace:
at net.minecraft.client.gui.GuiScreen.drawWorldBackground(GuiScreen.java:336)
at net.minecraft.client.gui.GuiScreenRealmsProxy.drawWorldBackground(SourceFile:83)
at net.minecraft.client.gui.GuiScreen.drawDefaultBackground(GuiScreen.java:331)
at net.minecraft.client.gui.GuiScreenRealmsProxy.drawDefaultBackground(SourceFile:74)
at net.minecraft.realms.RealmsScreen.renderBackground(SourceFile:76)
at com.mojang.realmsclient.gui.RealmsGenericErrorScreen.render(RealmsGenericErrorScreen.java:66)
at net.minecraft.client.gui.GuiScreenRealmsProxy.drawScreen(SourceFile:88)
-- Screen render details --
Details:
Screen name: net.minecraft.client.gui.GuiScreenRealmsProxy
Mouse location: Scaled: (415, 236). Absolute: (1720, 688)
Screen size: Scaled: (1147, 459). Absolute: (3440, 1377). Scale factor of 3
-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['Player44'/186, l='MpServer', x=255,30, y=71,62, z=92,96]]
Chunk stats: MultiplayerChunkCache: 50, 50
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options:
Level spawn location: World: (204,64,252), Chunk: (at 12,4,12 in 12,15; contains blocks 192,0,240 to 207,255,255), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
Level time: 93821 game time, 33879 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
Forced entities: 50 total; [EntityBat['Bat'/52, l='MpServer', x=198,45, y=24,41, z=64,57], EntityBat['Bat'/53, l='MpServer', x=202,28, y=40,10, z=76,09], EntitySquid['Squid'/54, l='MpServer', x=198,50, y=59,25, z=78,50], EntitySquid['Squid'/55, l='MpServer', x=196,50, y=59,00, z=77,50], EntitySquid['Squid'/56, l='MpServer', x=196,50, y=58,00, z=76,50], EntitySkeleton['Skeleton'/57, l='MpServer', x=196,09, y=22,00, z=98,50], EntitySkeleton['Skeleton'/58, l='MpServer', x=192,50, y=22,00, z=98,50], EntityBat['Bat'/187, l='MpServer', x=228,62, y=18,52, z=35,77], EntitySkeleton['Skeleton'/59, l='MpServer', x=196,50, y=22,00, z=99,50], EntityBat['Bat'/188, l='MpServer', x=233,54, y=36,04, z=47,14], EntitySquid['Squid'/60, l='MpServer', x=203,44, y=57,38, z=123,47], EntityClientPlayerMP['Player44'/186, l='MpServer', x=255,30, y=71,62, z=92,96], EntitySquid['Squid'/61, l='MpServer', x=202,50, y=58,00, z=129,50], EntityBat['Bat'/190, l='MpServer', x=244,76, y=59,85, z=21,47], EntitySkeleton['Skeleton'/191, l='MpServer', x=230,50, y=20,44, z=23,50], EntityCreeper['Creeper'/63, l='MpServer', x=210,50, y=26,00, z=49,50], EntityBat['Bat'/192, l='MpServer', x=195,49, y=42,74, z=35,69], EntitySkeleton['Skeleton'/64, l='MpServer', x=219,50, y=24,00, z=71,50], EntityBat['Bat'/193, l='MpServer', x=198,74, y=42,46, z=32,32], EntityBat['Bat'/65, l='MpServer', x=208,01, y=16,65, z=78,05], EntityZombie['Zombie'/194, l='MpServer', x=220,50, y=27,44, z=19,50], EntitySkeleton['Skeleton'/66, l='MpServer', x=221,50, y=56,00, z=66,50], EntityCreeper['Creeper'/195, l='MpServer', x=222,50, y=27,44, z=20,50], EntityZombie['Zombie'/67, l='MpServer', x=218,69, y=49,00, z=75,31], EntityCreeper['Creeper'/196, l='MpServer', x=181,50, y=36,44, z=41,50], EntitySkeleton['Skeleton'/68, l='MpServer', x=212,50, y=15,00, z=82,50], EntitySheep['Sheep'/197, l='MpServer', x=190,94, y=63,44, z=40,06], EntitySquid['Squid'/69, l='MpServer', x=211,24, y=58,77, z=129,10], EntitySheep['Sheep'/198, l='MpServer', x=183,75, y=65,44, z=38,28], EntityBat['Bat'/199, l='MpServer', x=192,75, y=43,10, z=24,28], EntityZombie['Zombie'/200, l='MpServer', x=291,50, y=57,44, z=30,50], EntitySkeleton['Skeleton'/73, l='MpServer', x=225,50, y=56,00, z=64,50], EntityBat['Bat'/202, l='MpServer', x=226,74, y=53,10, z=14,53], EntityBat['Bat'/74, l='MpServer', x=226,27, y=51,07, z=80,11], EntitySheep['Sheep'/203, l='MpServer', x=183,72, y=66,44, z=29,16], EntityZombie['Zombie'/75, l='MpServer', x=228,50, y=49,00, z=80,50], EntitySkeleton['Skeleton'/205, l='MpServer', x=199,50, y=22,44, z=13,50], EntityBat['Bat'/84, l='MpServer', x=241,23, y=29,09, z=63,49], EntityCreeper['Creeper'/85, l='MpServer', x=252,09, y=51,00, z=65,69], EntitySpider['Spider'/86, l='MpServer', x=252,47, y=51,00, z=67,06], EntityZombie['Zombie'/87, l='MpServer', x=254,59, y=50,00, z=69,66], EntityZombie['Zombie'/88, l='MpServer', x=244,72, y=51,00, z=72,47], EntityCreeper['Creeper'/89, l='MpServer', x=246,50, y=54,00, z=129,50], EntityZombie['Zombie'/95, l='MpServer', x=260,94, y=44,00, z=62,44], EntityEnderman['Enderman'/96, l='MpServer', x=257,06, y=48,00, z=88,03], EntityBat['Bat'/97, l='MpServer', x=261,67, y=51,22, z=101,28], EntityZombie['Zombie'/102, l='MpServer', x=298,50, y=44,00, z=86,50], EntitySkeleton['Skeleton'/103, l='MpServer', x=301,50, y=39,00, z=85,50], EntityZombie['Zombie'/109, l='MpServer', x=316,50, y=38,00, z=71,84], EntityBat['Bat'/110, l='MpServer', x=317,75, y=31,87, z=71,39]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:373)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2444)
at net.minecraft.client.Minecraft.run(Minecraft.java:919)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
at GradleStart.main(Unknown Source)
-- System Details --
Details:
Minecraft Version: 1.7.10
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_202, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 332305568 bytes (316 MB) / 779091968 bytes (743 MB) up to 7618953216 bytes (7266 MB)
JVM Flags: 0 total;
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94
FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 4 mods loaded, 4 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
UCHIJAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
UCHIJAAAA FML{7.10.99.99} [Forge Mod Loader] (forgeBin-1.7.10-10.13.4.1614-1.7.10.jar)
UCHIJAAAA Forge{10.13.4.1614} [Minecraft Forge] (forgeBin-1.7.10-10.13.4.1614-1.7.10.jar)
UCHIJAAAA vanamod{0.1} [VanaMod] (VanaMod-0.1.jar)
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 581.15' Renderer: 'NVIDIA GeForce RTX 3070/PCIe/SSE2'
Launched Version: 1.7.10
LWJGL: 2.9.1
OpenGL: NVIDIA GeForce RTX 3070/PCIe/SSE2 GL version 4.6.0 NVIDIA 581.15, NVIDIA Corporation
GL Caps: Using GL 1.3 multitexturing.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Anisotropic filtering is supported and maximum anisotropy is 16.
Shaders are available because OpenGL 2.1 is supported.
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs: []
Current Language: ~~ERROR~~ NullPointerException: null
Profiler Position: N/A (disabled)
Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Anisotropic Filtering: On (16)
@@ -0,0 +1,116 @@
---- Minecraft Crash Report ----
// Daisy, daisy...
Time: 06/12/25 05:13
Description: Getting biome
java.lang.NullPointerException: Getting biome
at net.minecraft.world.chunk.Chunk.getBiomeGenForWorldCoords(Chunk.java:1289)
at net.minecraft.world.World.getBiomeGenForCoordsBody(World.java:141)
at net.minecraft.world.WorldProvider.getBiomeGenForCoords(WorldProvider.java:365)
at net.minecraft.world.World.getBiomeGenForCoords(World.java:130)
at net.minecraftforge.client.ForgeHooksClient.getSkyBlendColour(ForgeHooksClient.java:407)
at net.minecraft.world.World.getSkyColorBody(World.java:1597)
at net.minecraft.world.WorldProvider.getSkyColor(WorldProvider.java:399)
at net.minecraft.world.World.getSkyColor(World.java:1575)
at net.minecraft.client.renderer.EntityRenderer.updateFogColor(EntityRenderer.java:1672)
at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1154)
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1015)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1001)
at net.minecraft.client.Minecraft.run(Minecraft.java:898)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
at GradleStart.main(Unknown Source)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Stacktrace:
at net.minecraft.world.chunk.Chunk.getBiomeGenForWorldCoords(Chunk.java:1289)
-- Coordinates of biome request --
Details:
Location: World: (229,0,66), Chunk: (at 5,0,2 in 14,4; contains blocks 224,0,64 to 239,255,79), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
Stacktrace:
at net.minecraft.world.World.getBiomeGenForCoordsBody(World.java:141)
at net.minecraft.world.WorldProvider.getBiomeGenForCoords(WorldProvider.java:365)
at net.minecraft.world.World.getBiomeGenForCoords(World.java:130)
at net.minecraftforge.client.ForgeHooksClient.getSkyBlendColour(ForgeHooksClient.java:407)
at net.minecraft.world.World.getSkyColorBody(World.java:1597)
at net.minecraft.world.WorldProvider.getSkyColor(WorldProvider.java:399)
at net.minecraft.world.World.getSkyColor(World.java:1575)
at net.minecraft.client.renderer.EntityRenderer.updateFogColor(EntityRenderer.java:1672)
at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1154)
-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['Player339'/187, l='MpServer', x=255,30, y=71,62, z=92,96]]
Chunk stats: MultiplayerChunkCache: 0, 0
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options:
Level spawn location: World: (204,64,252), Chunk: (at 12,4,12 in 12,15; contains blocks 192,0,240 to 207,255,255), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
Level time: 93835 game time, 33893 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
Forced entities: 12 total; [EntityBat['Bat'/195, l='MpServer', x=195,91, y=42,06, z=36,25], EntityZombie['Zombie'/196, l='MpServer', x=220,50, y=28,00, z=19,50], EntityCreeper['Creeper'/197, l='MpServer', x=222,50, y=28,00, z=20,50], EntityCreeper['Creeper'/198, l='MpServer', x=181,50, y=37,00, z=41,50], EntitySheep['Sheep'/199, l='MpServer', x=190,94, y=64,00, z=40,06], EntitySheep['Sheep'/200, l='MpServer', x=183,75, y=66,00, z=38,28], EntityBat['Bat'/201, l='MpServer', x=192,75, y=43,09, z=24,28], EntityBat['Bat'/202, l='MpServer', x=198,38, y=42,63, z=31,41], EntityClientPlayerMP['Player339'/187, l='MpServer', x=255,30, y=71,62, z=92,96], EntityBat['Bat'/189, l='MpServer', x=228,41, y=18,28, z=35,75], EntityBat['Bat'/190, l='MpServer', x=245,59, y=59,94, z=21,66], EntitySkeleton['Skeleton'/191, l='MpServer', x=230,50, y=21,00, z=23,50]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:373)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2444)
at net.minecraft.client.Minecraft.run(Minecraft.java:919)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
at GradleStart.main(Unknown Source)
-- System Details --
Details:
Minecraft Version: 1.7.10
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_202, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 624090528 bytes (595 MB) / 775421952 bytes (739 MB) up to 7618953216 bytes (7266 MB)
JVM Flags: 0 total;
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 15, tcache: 131, allocated: 3, tallocated: 4
FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 4 mods loaded, 4 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
UCHIJAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
UCHIJAAAA FML{7.10.99.99} [Forge Mod Loader] (forgeBin-1.7.10-10.13.4.1614-1.7.10.jar)
UCHIJAAAA Forge{10.13.4.1614} [Minecraft Forge] (forgeBin-1.7.10-10.13.4.1614-1.7.10.jar)
UCHIJAAAA vanamod{0.1} [VanaMod] (VanaMod-0.1.jar)
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 581.15' Renderer: 'NVIDIA GeForce RTX 3070/PCIe/SSE2'
Launched Version: 1.7.10
LWJGL: 2.9.1
OpenGL: NVIDIA GeForce RTX 3070/PCIe/SSE2 GL version 4.6.0 NVIDIA 581.15, NVIDIA Corporation
GL Caps: Using GL 1.3 multitexturing.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Anisotropic filtering is supported and maximum anisotropy is 16.
Shaders are available because OpenGL 2.1 is supported.
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs: []
Current Language: ~~ERROR~~ NullPointerException: null
Profiler Position: N/A (disabled)
Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Anisotropic Filtering: On (16)
@@ -0,0 +1,111 @@
---- Minecraft Crash Report ----
// There are four lights!
Time: 08/12/25 14:22
Description: Rendering screen
java.lang.NullPointerException: Rendering screen
at net.minecraft.client.gui.GuiScreen.drawWorldBackground(GuiScreen.java:336)
at net.minecraft.client.gui.GuiScreenRealmsProxy.drawWorldBackground(SourceFile:83)
at net.minecraft.client.gui.GuiScreen.drawDefaultBackground(GuiScreen.java:331)
at net.minecraft.client.gui.GuiScreenRealmsProxy.drawDefaultBackground(SourceFile:74)
at net.minecraft.realms.RealmsScreen.renderBackground(SourceFile:76)
at com.mojang.realmsclient.gui.RealmsGenericErrorScreen.render(RealmsGenericErrorScreen.java:66)
at net.minecraft.client.gui.GuiScreenRealmsProxy.drawScreen(SourceFile:88)
at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1061)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1001)
at net.minecraft.client.Minecraft.run(Minecraft.java:898)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
at GradleStart.main(Unknown Source)
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Stacktrace:
at net.minecraft.client.gui.GuiScreen.drawWorldBackground(GuiScreen.java:336)
at net.minecraft.client.gui.GuiScreenRealmsProxy.drawWorldBackground(SourceFile:83)
at net.minecraft.client.gui.GuiScreen.drawDefaultBackground(GuiScreen.java:331)
at net.minecraft.client.gui.GuiScreenRealmsProxy.drawDefaultBackground(SourceFile:74)
at net.minecraft.realms.RealmsScreen.renderBackground(SourceFile:76)
at com.mojang.realmsclient.gui.RealmsGenericErrorScreen.render(RealmsGenericErrorScreen.java:66)
at net.minecraft.client.gui.GuiScreenRealmsProxy.drawScreen(SourceFile:88)
-- Screen render details --
Details:
Screen name: net.minecraft.client.gui.GuiScreenRealmsProxy
Mouse location: Scaled: (568, 214). Absolute: (1720, 688)
Screen size: Scaled: (1147, 459). Absolute: (3440, 1377). Scale factor of 3
-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['Player17'/438, l='MpServer', x=-23,49, y=70,62, z=257,87]]
Chunk stats: MultiplayerChunkCache: 30, 30
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options:
Level spawn location: World: (-44,64,256), Chunk: (at 4,4,0 in -3,16; contains blocks -48,0,256 to -33,255,271), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
Level time: 4080 game time, 4080 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
Forced entities: 37 total; [EntityBat['Bat'/258, l='MpServer', x=23,63, y=25,84, z=225,92], EntityZombie['Zombie'/259, l='MpServer', x=17,50, y=36,00, z=232,94], EntityCreeper['Creeper'/260, l='MpServer', x=30,50, y=55,00, z=231,50], EntitySkeleton['Skeleton'/261, l='MpServer', x=19,50, y=21,00, z=270,50], EntitySkeleton['Skeleton'/262, l='MpServer', x=31,47, y=26,00, z=298,56], EntityZombie['Zombie'/263, l='MpServer', x=31,64, y=23,00, z=298,70], EntitySkeleton['Skeleton'/264, l='MpServer', x=19,50, y=17,00, z=301,50], EntityCreeper['Creeper'/265, l='MpServer', x=31,50, y=18,00, z=289,50], EntitySheep['Sheep'/204, l='MpServer', x=-17,97, y=71,00, z=233,03], EntitySheep['Sheep'/205, l='MpServer', x=-18,84, y=70,00, z=224,16], EntitySheep['Sheep'/206, l='MpServer', x=-24,13, y=70,00, z=232,88], EntitySheep['Sheep'/207, l='MpServer', x=-26,19, y=70,00, z=235,50], EntitySheep['Sheep'/208, l='MpServer', x=-20,50, y=71,00, z=257,34], EntitySpider['Spider'/217, l='MpServer', x=-8,13, y=30,00, z=263,78], EntityZombie['Zombie'/218, l='MpServer', x=-3,50, y=38,00, z=256,50], EntityZombie['Zombie'/219, l='MpServer', x=-3,53, y=59,00, z=263,97], EntityZombie['Zombie'/228, l='MpServer', x=6,50, y=38,00, z=224,50], EntityCreeper['Creeper'/229, l='MpServer', x=4,16, y=37,00, z=255,44], EntitySkeleton['Skeleton'/230, l='MpServer', x=0,84, y=37,00, z=252,63], EntitySheep['Sheep'/231, l='MpServer', x=8,66, y=71,00, z=248,75], EntityItem['item.tile.gravel'/232, l='MpServer', x=14,59, y=37,13, z=268,44], EntityItem['item.item.arrow'/233, l='MpServer', x=10,00, y=34,13, z=270,88], EntitySkeleton['Skeleton'/234, l='MpServer', x=11,50, y=39,00, z=271,50], EntitySkeleton['Skeleton'/235, l='MpServer', x=7,75, y=37,00, z=260,84], EntitySpider['Spider'/236, l='MpServer', x=2,06, y=37,00, z=256,53], EntityCreeper['Creeper'/237, l='MpServer', x=4,00, y=37,00, z=256,75], EntityCreeper['Creeper'/238, l='MpServer', x=2,97, y=38,00, z=259,50], EntitySkeleton['Skeleton'/239, l='MpServer', x=3,13, y=59,00, z=271,25], EntitySheep['Sheep'/240, l='MpServer', x=5,91, y=71,00, z=257,13], EntityItem['item.item.bone'/241, l='MpServer', x=13,13, y=38,13, z=272,69], EntitySkeleton['Skeleton'/242, l='MpServer', x=13,50, y=31,00, z=297,50], EntityZombie['Zombie'/180, l='MpServer', x=-61,91, y=31,00, z=229,66], EntityBat['Bat'/181, l='MpServer', x=-57,45, y=32,15, z=234,24], EntityBat['Bat'/182, l='MpServer', x=-60,72, y=34,10, z=236,75], EntityBat['Bat'/183, l='MpServer', x=-59,09, y=32,32, z=235,31], EntityClientPlayerMP['Player17'/438, l='MpServer', x=-23,49, y=70,62, z=257,87], EntityBat['Bat'/184, l='MpServer', x=-57,25, y=32,00, z=235,44]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:373)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2444)
at net.minecraft.client.Minecraft.run(Minecraft.java:919)
at net.minecraft.client.main.Main.main(SourceFile:148)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
at GradleStart.main(Unknown Source)
-- System Details --
Details:
Minecraft Version: 1.7.10
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_202, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 390501040 bytes (372 MB) / 767557632 bytes (732 MB) up to 7618953216 bytes (7266 MB)
JVM Flags: 0 total;
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 4, tcache: 0, allocated: 13, tallocated: 95
FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 4 mods loaded, 4 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
UCHIJAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
UCHIJAAAA FML{7.10.99.99} [Forge Mod Loader] (forgeBin-1.7.10-10.13.4.1614-1.7.10.jar)
UCHIJAAAA Forge{10.13.4.1614} [Minecraft Forge] (forgeBin-1.7.10-10.13.4.1614-1.7.10.jar)
UCHIJAAAA vanaf3{1.0} [Vanaf HUD] (VanaMod-0.1.jar)
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 581.15' Renderer: 'NVIDIA GeForce RTX 3070/PCIe/SSE2'
Launched Version: 1.7.10
LWJGL: 2.9.1
OpenGL: NVIDIA GeForce RTX 3070/PCIe/SSE2 GL version 4.6.0 NVIDIA 581.15, NVIDIA Corporation
GL Caps: Using GL 1.3 multitexturing.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Anisotropic filtering is supported and maximum anisotropy is 16.
Shaders are available because OpenGL 2.1 is supported.
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs: []
Current Language: ~~ERROR~~ NullPointerException: null
Profiler Position: N/A (disabled)
Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Anisotropic Filtering: On (16)
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+262
View File
@@ -0,0 +1,262 @@
[14:25:52] [main/INFO]: Extra: []
[14:25:53] [main/INFO]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/leo/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[14:25:53] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[14:25:53] [main/INFO]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[14:25:53] [main/INFO]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[14:25:53] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
[14:25:53] [main/INFO]: Forge Mod Loader version 7.99.40.1614 for Minecraft 1.7.10 loading
[14:25:53] [main/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_202, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_202\jre
[14:25:53] [main/INFO]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[14:25:53] [main/INFO]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[14:25:53] [main/INFO]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin
[14:25:53] [main/INFO]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[14:25:53] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[14:25:53] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
[14:25:53] [main/INFO]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[14:25:53] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[14:25:53] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[14:25:53] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[14:25:53] [main/ERROR]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[14:25:54] [main/ERROR]: FML appears to be missing any signature data. This is not a good thing
[14:25:54] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[14:25:54] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
[14:25:54] [main/INFO]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[14:25:54] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
[14:25:54] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
[14:25:54] [main/INFO]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[14:25:55] [main/INFO]: Setting user: Player249
[14:25:55] [Client thread/INFO]: LWJGL Version: 2.9.1
[14:25:56] [Client thread/INFO]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ----
// Don't do that.
Time: 08/12/25 14:25
Description: Loading screen debug info
This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- System Details --
Details:
Minecraft Version: 1.7.10
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_202, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 223755400 bytes (213 MB) / 376963072 bytes (359 MB) up to 7618953216 bytes (7266 MB)
JVM Flags: 0 total;
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML:
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 581.15' Renderer: 'NVIDIA GeForce RTX 3070/PCIe/SSE2'
[14:25:56] [Client thread/INFO]: Attempting early MinecraftForge initialization
[14:25:56] [Client thread/INFO]: MinecraftForge v10.13.4.1614 Initialized
[14:25:56] [Client thread/INFO]: Replaced 183 ore recipies
[14:25:56] [Client thread/INFO]: Completed early MinecraftForge initialization
[14:25:56] [Client thread/INFO]: Found 0 mods from the command line. Injecting into mod discoverer
[14:25:56] [Client thread/INFO]: Searching C:\Users\leo\Desktop\vanamod\run\mods for mods
[14:25:59] [Client thread/ERROR]: The mcmod.info file in VanaMod-0.1.jar cannot be parsed as valid JSON. It will be ignored
com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 6
at com.google.gson.JsonParser.parse(JsonParser.java:65) ~[JsonParser.class:?]
at cpw.mods.fml.common.MetadataCollection.from(MetadataCollection.java:55) [MetadataCollection.class:?]
at cpw.mods.fml.common.discovery.JarDiscoverer.discover(JarDiscoverer.java:53) [JarDiscoverer.class:?]
at cpw.mods.fml.common.discovery.ContainerType.findMods(ContainerType.java:42) [ContainerType.class:?]
at cpw.mods.fml.common.discovery.ModCandidate.explore(ModCandidate.java:71) [ModCandidate.class:?]
at cpw.mods.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:131) [ModDiscoverer.class:?]
at cpw.mods.fml.common.Loader.identifyMods(Loader.java:364) [Loader.class:?]
at cpw.mods.fml.common.Loader.loadMods(Loader.java:489) [Loader.class:?]
at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:208) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:480) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:878) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(SourceFile:148) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_202]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_202]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_202]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_202]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 6
at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1505) ~[JsonReader.class:?]
at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1386) ~[JsonReader.class:?]
at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:531) ~[JsonReader.class:?]
at com.google.gson.stream.JsonReader.peek(JsonReader.java:414) ~[JsonReader.class:?]
at com.google.gson.JsonParser.parse(JsonParser.java:60) ~[JsonParser.class:?]
... 19 more
[14:25:59] [Client thread/INFO]: Forge Mod Loader has identified 4 mods to load
[14:25:59] [Client thread/INFO]: Attempting connection with missing mods [mcp, FML, Forge, vanaf3] at CLIENT
[14:25:59] [Client thread/INFO]: Attempting connection with missing mods [mcp, FML, Forge, vanaf3] at SERVER
[14:26:00] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Vanaf HUD
[14:26:00] [Client thread/INFO]: Processing ObjectHolder annotations
[14:26:00] [Client thread/INFO]: Found 341 ObjectHolder annotations
[14:26:00] [Client thread/INFO]: Identifying ItemStackHolder annotations
[14:26:00] [Client thread/INFO]: Found 0 ItemStackHolder annotations
[14:26:00] [Client thread/INFO]: Configured a dormant chunk cache size of 0
[14:26:00] [Client thread/INFO]: Applying holder lookups
[14:26:00] [Client thread/INFO]: Holder lookups applied
[14:26:00] [Client thread/INFO]: Injecting itemstacks
[14:26:00] [Client thread/INFO]: Itemstack injection complete
[14:26:00] [Sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]:
[14:26:00] [Sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[14:26:00] [Forge Version Check/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1
[14:26:00] [Forge Version Check/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.gson.Gson.fromJson(Gson.java:815)
[14:26:00] [Forge Version Check/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.gson.Gson.fromJson(Gson.java:768)
[14:26:00] [Forge Version Check/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.gson.Gson.fromJson(Gson.java:717)
[14:26:00] [Forge Version Check/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.gson.Gson.fromJson(Gson.java:689)
[14:26:00] [Forge Version Check/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraftforge.common.ForgeVersion$1.run(ForgeVersion.java:94)
[14:26:00] [Forge Version Check/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1
[14:26:00] [Forge Version Check/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:374)
[14:26:00] [Forge Version Check/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:183)
[14:26:00] [Forge Version Check/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145)
[14:26:00] [Forge Version Check/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.google.gson.Gson.fromJson(Gson.java:803)
[14:26:00] [Forge Version Check/INFO]: [java.lang.Throwable$WrappedPrintStream:println:748]: ... 4 more
[14:26:00] [Client thread/INFO]: Created: 32x32 textures/blocks-atlas
[14:26:00] [Client thread/INFO]: Created: 16x16 textures/items-atlas
[14:26:00] [Client thread/INFO]: Injecting itemstacks
[14:26:00] [Client thread/INFO]: Itemstack injection complete
[14:26:00] [Thread-8/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[14:26:00] [Thread-8/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
[14:26:00] [Thread-8/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[14:26:00] [Client thread/INFO]: Forge Mod Loader has successfully loaded 4 mods
[14:26:00] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Vanaf HUD
[14:26:00] [Sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]:
[14:26:00] [Sound Library Loader/INFO]: Sound engine started
[14:26:00] [Client thread/INFO]: Created: 1024x512 textures/blocks-atlas
[14:26:00] [Client thread/INFO]: Created: 256x256 textures/items-atlas
[14:26:00] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]:
[14:26:00] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
[14:26:01] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com
[14:26:01] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]:
[14:26:01] [Sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]:
[14:26:01] [Sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[14:26:01] [Thread-10/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[14:26:01] [Thread-10/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
[14:26:01] [Thread-10/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[14:26:01] [Sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]:
[14:26:01] [Sound Library Loader/INFO]: Sound engine started
[14:26:06] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:music.menu
[14:26:12] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:music.menu
[14:26:22] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:gui.button.press
[14:26:23] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10
[14:26:23] [Server thread/INFO]: Generating keypair
[14:26:23] [Server thread/INFO]: Injecting existing block and item data into this server instance
[14:26:23] [Server thread/INFO]: Applying holder lookups
[14:26:23] [Server thread/INFO]: Holder lookups applied
[14:26:23] [Server thread/INFO]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@58280a13)
[14:26:23] [Server thread/INFO]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@58280a13)
[14:26:23] [Server thread/INFO]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@58280a13)
[14:26:23] [Server thread/INFO]: Preparing start region for level 0
[14:26:23] [Server thread/INFO]: Changing view distance to 12, from 10
[14:26:24] [Netty Client IO #0/INFO]: Server protocol version 2
[14:26:24] [Netty IO #1/INFO]: Client protocol version 2
[14:26:24] [Netty IO #1/INFO]: Client attempting to join with 4 mods : FML@7.10.99.99,Forge@10.13.4.1614,mcp@9.05,vanaf3@1.0
[14:26:24] [Netty IO #1/INFO]: Attempting connection with missing mods [] at CLIENT
[14:26:24] [Netty Client IO #0/INFO]: Attempting connection with missing mods [] at SERVER
[14:26:24] [Client thread/INFO]: [Client thread] Client side modded connection established
[14:26:24] [Server thread/INFO]: [Server thread] Server side modded connection established
[14:26:24] [Server thread/INFO]: Player249[local:E:1df0ea93] logged in with entity id 440 at (-46.17182251240485, 71.0, 303.15656869195703)
[14:26:24] [Server thread/INFO]: Player249 joined the game
[14:26:25] [Server thread/INFO]: Player249 has just earned the achievement [Taking Inventory]
[14:26:25] [Client thread/INFO]: [CHAT] Player249 has just earned the achievement [Taking Inventory]
[14:26:28] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:28] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:29] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:29] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:29] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:29] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:30] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:30] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:dig.grass
[14:26:30] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:31] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:31] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:34] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:music.game.creative
[14:26:35] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:35] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:36] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:36] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:37] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:37] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:37] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:38] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:38] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:39] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:39] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:41] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:41] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:41] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:41] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:42] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:26:46] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:dig.grass
[14:26:49] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:dig.grass
[14:26:52] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.say
[14:26:52] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:dig.grass
[14:26:52] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:dig.grass
[14:26:58] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.bat.takeoff
[14:26:58] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.bat.takeoff
[14:27:01] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.bat.takeoff
[14:27:02] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:dig.grass
[14:27:03] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.bat.takeoff
[14:27:03] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.bat.takeoff
[14:27:03] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.say
[14:27:04] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.say
[14:27:05] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.say
[14:27:05] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.say
[14:27:05] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.step
[14:27:07] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.say
[14:27:07] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.step
[14:27:08] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.step
[14:27:08] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.step
[14:27:08] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.say
[14:27:09] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.step
[14:27:10] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.step
[14:27:10] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.step
[14:27:11] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.say
[14:27:13] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.step
[14:27:14] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.step
[14:27:14] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.step
[14:27:14] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.say
[14:27:14] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.say
[14:27:14] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.step
[14:27:15] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.step
[14:27:15] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.step
[14:27:16] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.step
[14:27:16] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.step
[14:27:17] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.step
[14:27:17] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.say
[14:27:17] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.step
[14:27:17] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.step
[14:27:18] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.step
[14:27:18] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.step
[14:27:19] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.step
[14:27:19] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.say
[14:27:19] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.step
[14:27:19] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:27:19] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:27:19] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.say
[14:27:20] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.step
[14:27:20] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.pig.say
[14:27:20] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.sheep.say
[14:27:28] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:27:29] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:27:30] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:27:34] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:dig.grass
[14:27:35] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.zombie.step
[14:27:36] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:27:36] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:step.grass
[14:27:36] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:mob.zombie.step
[14:27:36] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:game.hostile.swim.splash
[14:27:37] [Client thread/INFO]: Stopping!
[14:27:37] [Server thread/INFO]: Stopping server
[14:27:37] [Server thread/INFO]: Saving players
[14:27:37] [Server thread/INFO]: Saving worlds
[14:27:37] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
[14:27:37] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]:
[14:27:37] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
[14:27:37] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
[14:27:37] [Server thread/INFO]: Saving chunks for level 'New World'/The End
[14:27:37] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com
[14:27:37] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]:
[14:27:37] [Client Shutdown Thread/INFO]: Stopping server
[14:27:37] [Client Shutdown Thread/INFO]: Saving players
+96
View File
@@ -0,0 +1,96 @@
invertYMouse:false
mouseSensitivity:0.3309859
fov:1.0
gamma:1.0
saturation:0.0
renderDistance:12
guiScale:3
particles:0
bobView:true
anaglyph3d:false
advancedOpengl:false
maxFps:260
fboEnable:true
difficulty:2
fancyGraphics:true
ao:2
clouds:true
resourcePacks:[]
lastServer:
lang:en_US
chatVisibility:0
chatColors:true
chatLinks:true
chatLinksPrompt:true
chatOpacity:1.0
snooperEnabled:true
fullscreen:false
enableVsync:false
hideServerAddress:false
advancedItemTooltips:false
pauseOnLostFocus:true
showCape:true
touchscreen:false
overrideWidth:0
overrideHeight:0
heldItemTooltips:true
chatHeightFocused:1.0
chatHeightUnfocused:0.44366196
chatScale:1.0
chatWidth:1.0
showInventoryAchievementHint:false
mipmapLevels:4
anisotropicFiltering:16
streamBytesPerPixel:0.5
streamMicVolume:1.0
streamSystemVolume:1.0
streamKbps:0.5412844
streamFps:0.31690142
streamCompression:1
streamSendMetadata:true
streamPreferredServer:
streamChatEnabled:0
streamChatUserFilter:0
streamMicToggleBehavior:0
forceUnicodeFont:false
key_key.attack:-100
key_key.use:-99
key_key.forward:17
key_key.left:30
key_key.back:31
key_key.right:32
key_key.jump:57
key_key.sneak:-96
key_key.drop:16
key_key.inventory:18
key_key.chat:20
key_key.playerlist:15
key_key.pickItem:-98
key_key.command:53
key_key.screenshot:60
key_key.togglePerspective:63
key_key.smoothCamera:0
key_key.sprint:42
key_key.streamStartStop:64
key_key.streamPauseUnpause:65
key_key.streamCommercial:0
key_key.streamToggleMic:0
key_key.fullscreen:87
key_key.hotbar.1:2
key_key.hotbar.2:3
key_key.hotbar.3:4
key_key.hotbar.4:5
key_key.hotbar.5:6
key_key.hotbar.6:7
key_key.hotbar.7:8
key_key.hotbar.8:9
key_key.hotbar.9:10
soundCategory_master:1.0
soundCategory_music:1.0
soundCategory_record:1.0
soundCategory_weather:1.0
soundCategory_block:1.0
soundCategory_hostile:1.0
soundCategory_neutral:1.0
soundCategory_player:1.0
soundCategory_ambient:1.0
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
{"stat.playOneMinute":7}
@@ -0,0 +1 @@
{"stat.flyOneCm":9814,"stat.walkOneCm":4620,"stat.jump":38,"stat.playOneMinute":677,"achievement.openInventory":1,"achievement.exploreAllBiomes":{"value":0,"progress":["Plains"]}}
@@ -0,0 +1 @@
{"stat.flyOneCm":33542,"stat.walkOneCm":3035,"stat.jump":13,"stat.playOneMinute":1447,"achievement.openInventory":4,"achievement.exploreAllBiomes":{"value":0,"progress":["Plains"]}}
@@ -0,0 +1 @@
{"stat.flyOneCm":1499,"stat.walkOneCm":4844,"stat.jump":9,"stat.playOneMinute":2231,"achievement.exploreAllBiomes":{"value":0,"progress":["Plains"]}}
@@ -0,0 +1 @@
{"stat.flyOneCm":84,"stat.walkOneCm":2905,"stat.jump":3,"stat.playOneMinute":1767,"achievement.openInventory":1,"achievement.exploreAllBiomes":{"value":0,"progress":["Plains"]}}
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 892 KiB

+53
View File
@@ -0,0 +1,53 @@
{
"29308414-ff71-3cdd-a4fa-c0ef7b0196d4": "Player327",
"4ed9b5cf-d91a-3bc8-9000-b0476eccd342": "Player514",
"4bb7849b-3b46-3d6a-81b9-13bb408e8517": "Player101",
"336cdb69-b175-3ad2-a556-740278ca80ab": "Player667",
"3fff7d86-24d6-33b1-8ce1-9423a13c7c89": "Player517",
"e0b801b1-6b73-363a-a46f-105be4f0f90f": "Player530",
"53335878-3f56-39c8-893b-77b74c9ca2e1": "Player60",
"9f706b9c-a5d7-3950-a693-97c335e2631f": "Player122",
"c21e574d-957a-383a-949a-73e33ee66435": "Player639",
"ccf0c278-c21f-3ec3-a87c-05202673a5dd": "Player197",
"6ae8fe40-3ccb-3755-8fd2-c5445728b386": "Player579",
"9345ca96-31f6-3ef6-a1e6-265e7320184d": "Player381",
"c9700ac2-fb69-36ca-b322-09edfc5786fb": "Player251",
"92f8a523-1476-36c1-a74b-ef7c8b1d0bfd": "Player758",
"8773eef5-d9ab-33f4-b901-5d723e8af879": "Player795",
"651bbe0e-980e-38d7-8fbb-83ebfec85347": "Player858",
"3eec9f18-1d0e-3f17-917c-6994e7d034d1": "Player87",
"83f835f2-20fa-325d-8039-400fcc96db8c": "Player224",
"4e460400-9f4b-3a1c-89fb-10907a37bce7": "Player236",
"b6738008-cb59-3498-a817-418e36d006f2": "Player978",
"07f066df-e334-33b1-a24c-2ec414c5ef02": "Player764",
"56a259bf-cc44-38c1-8061-dd05953c60e0": "Player632",
"d6021e41-7343-3bee-bb0e-33bf78c6e47d": "Player230",
"71f66ac1-c861-3de2-8cda-9d0f80277f27": "Player426",
"25d814e7-4101-3c44-9bf7-65f7d6c6dd55": "Player44",
"0aee4775-e8b4-37ed-8049-6be96ef5de8e": "Player339",
"c72e77a5-a3ff-38a0-b468-253b21a4bd27": "Player759",
"19487181-3859-391a-bf75-143cc8396d12": "Player341",
"31a9aee6-8c2b-389d-b14e-b75d71479611": "Player172",
"0ecc5f64-1f20-34a1-a889-f88d84dd36f3": "Player936",
"a3e619b4-d03e-3df6-bc8e-533c5d67e6da": "Player166",
"1455153c-1276-3617-8489-c22f3316fb17": "Player857",
"e479674e-ef3e-3736-9f9e-94f79aafe9d7": "Player349",
"25b11e49-a7c5-3d9c-8271-d4f68f211051": "Player578",
"11e8c009-da15-3a5d-81f0-ba0017af511c": "Player114",
"130bfefb-ac8d-3a05-b27c-6205f9d12a06": "Player570",
"39ce36e8-f4b8-3b30-a1f4-bfdbbc990254": "Player442",
"bdc5f32b-6d6c-3510-b82f-68a782d73b82": "Player634",
"fbd6852d-44fe-3331-a1df-a34f42de9037": "Player915",
"681f539b-8bb8-3f85-85e5-a2945f6c6539": "Player1",
"5a8b675a-352f-385b-94f4-369e3f70aa83": "Player439",
"1ef891cf-32a6-31f4-b463-6277834cb67f": "Player774",
"5b0c46c0-894b-30a6-bd31-bf02da63882f": "Player505",
"f733c99c-383b-397f-9c2e-c0657633d4c1": "Player497",
"fafe4ed7-8e8e-3030-a8e4-3ca9d4ada870": "Player481",
"ac42e7c5-bf90-3ead-ba50-c551df161044": "Player453",
"a0803941-42b2-30d8-878b-d5bba587b8ae": "Player900",
"c17a5542-4699-3d3f-81f1-a187d3ec58fe": "Player255",
"1e8814df-4b51-3d88-9dcd-89145d90282f": "Player17",
"5cc48495-676c-3721-aed2-7336730ff405": "Player132",
"77058a27-9ed9-3577-ba3a-f426b243548e": "Player249"
}