Jump to content

update mod from [1.8] to [1.8.8] few errors ??


perromercenary00

Recommended Posts

 

good nigths im trying to update mi mod code to 1.8.8 but i have a lot of red marks in eclipse most of them related to entityes render and gui renders 

 

per example  this is now an error

 

@Override 
protected ResourceLocation getEntityTexture(Entity par1Entity)

 

for the look RenderBiped class has  this method anymore

this come from mi entity_render class  all mi entittyes display this errror

 

 

the next

all this lines show error

        worldrenderer.startDrawingQuads();
              
        worldrenderer.addVertexWithUV( 3.2D, -4.0D, -4.0D, puntoXA , puntoYA );
        worldrenderer.addVertexWithUV( 3.2D, -4.0D, 4.0D,  puntoXA , puntoYB );
        worldrenderer.addVertexWithUV( 3.2D, 4.0D, 4.0D,   puntoXB , puntoYB );
        worldrenderer.addVertexWithUV( 3.2D, 4.0D, -4.0D,  puntoXB , puntoYA );

 

        worldrenderer comes from tesellator

 

        Tessellator tessellator = Tessellator.getInstance();

        WorldRenderer worldrenderer = tessellator.getWorldRenderer();

 

so  Tessellator has no more the methods to render things in screen  ??

this also fucks up mi screen gui clases

 

and

IInventory

has some changes i have not look yet this in deep

 

 

¿¿ there is where some guide o post like guide to make the changes in mi clases to fix the mod for 1.8.8 ??

 

thanks for reading

 

 

 

 

 

 

Link to comment
Share on other sites

.addVertexWithUV(arg1, arg2, arg3, arg4, arg5) is now .pos(arg1, arg2, arg3).tex(arg4, arg5)

I've seen .endVertex() after .tex(arg4, arg5) but do not know if it is 100% definitely needed.

 

.startDrawingQuads is now .begin(7, DefaultVertexFormats.TEXTURE);

NOTE: TEXTURE is an example, depending upon what you are rendering it could be any number of things. If you referred to vanilla code for making it in 1.8, check back and see what was changed there.

Link to comment
Share on other sites

The

Render

class is now generic: it has a type argument

T extends Entity

(i.e. the type of entity that it renders).

Render#getEntityTexture

now takes an argument of type

T

.

 

You could figure this out for yourself if you looked at the source code using your IDE.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

 

good days,

i swear yesterday i writte a post whith this same question and is now dissapears

could be alcoho9l related

who knows

 

 

the thing is i wanna update mi alredy working mod form 1.8 to 1.8.8 but i  find changes causing some errors in mi code

i alredy solve some loking in the new vainilla clases but this one really anoys

 

### 1

entity.getName()  not exist eclipse just mark it as an error and the more elegant solution i find in eclipse was

ow = this.getOwner().getDisplayName().toString();

 

and i need to do an

this.getOwner().getName();

 

to dispaly the name of the ownner of this tropper

is there another way to get and entity unlocalizated name  ???

 

 

### 2

the other thing is whith ModelBakery

eclipse now says that

 

"ModelBakery.addVariantName"  method is deprecated and mi mod crash  on run

 

 

Time: 1/01/16 11:04 AM

Description: Initializing game

 

java.lang.OutOfMemoryError: Java heap space

at net.minecraftforge.client.model.pipeline.UnpackedBakedQuad$Builder.<init>(UnpackedBakedQuad.java:97)

at net.minecraftforge.client.model.ItemLayerModel.buildQuad(ItemLayerModel.java:298)

at net.minecraftforge.client.model.ItemLayerModel.buildSideQuad(ItemLayerModel.java:282)

at net.minecraftforge.client.model.ItemLayerModel.addSideQuad(ItemLayerModel.java:207)

at net.minecraftforge.client.model.ItemLayerModel.getQuadsForSprite(ItemLayerModel.java:146)

 

i set the memory to 2G at gradlew and at java the problem remain,

if i disable most of mi texturex in the  MercenaryModTexturas class   

the game runs  whithout all that item texturex  soo a bunch of purple/black tings

 

¿¿¿ Sooo is still valid to declare textures for items this way

 

ModelBakery.addVariantName(MercenaryModItems.taladroPerforador, new String[]{

		"modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador",
		"modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_A00",
		"modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_A01",
		"modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_A02",
		"modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_A03",
		"modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_encendido",

		"modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador3D"


});

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.taladroPerforador,0 , 
new ModelResourceLocation("modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador", "inventory"));

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.taladroPerforador,1 , 
new ModelResourceLocation("modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_A00", "inventory"));	

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.taladroPerforador,2, 
new ModelResourceLocation("modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_A01", "inventory"));	

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.taladroPerforador,3 , 
new ModelResourceLocation("modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_A02", "inventory"));	

 

 

 

 

 

 

 

 

 

 

 

Picked up _JAVA_OPTIONS: -Xmx2g
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
[11:25:14] [main/INFO] [GradleStart]: Extra: []
[11:25:14] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, /home/usuario/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken{REDACTED}, --version, 1.8.8, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[11:25:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[11:25:16] [main/INFO] [FML]: Forge Mod Loader version 11.15.0.1655 for Minecraft 1.8.8 loading
[11:25:16] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_65, running on Linux:amd64:3.16.0-4-amd64, installed at /opt/jdk1.8.0_65/jre
[11:25:16] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[11:25:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[11:25:16] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[11:25:16] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[11:25:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[11:25:17] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[11:25:22] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[11:25:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[11:25:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[11:25:23] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[11:25:23] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[11:25:23] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[11:25:23] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[11:25:27] [Client thread/INFO]: Setting user: Player341
[11:25:32] [Client thread/INFO]: LWJGL Version: 2.9.4
[11:25:36] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:246]: ---- Minecraft Crash Report ----
// Ooh. Shiny.

Time: 1/01/16 11:25 AM
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.8.8
Operating System: Linux (amd64) version 3.16.0-4-amd64
Java Version: 1.8.0_65, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 887471552 bytes (846 MB) / 1056309248 bytes (1007 MB) up to 2130051072 bytes (2031 MB)
JVM Flags: 4 total; -Xincgc -Xmx1024M -Xms1024M -Xmx2g
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: 
Loaded coremods (and transformers): 
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 340.93' Renderer: 'GeForce GT 520/PCIe/SSE2'
[11:25:36] [Client thread/INFO] [FML]: MinecraftForge v11.15.0.1655 Initialized
[11:25:36] [Client thread/INFO] [FML]: Replaced 204 ore recipies
[11:25:37] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[11:25:37] [Client thread/INFO] [FML]: Searching /home/usuario/Modding/forge-1.8.8-11.15.0.1655-mdk/run/mods for mods
[11:25:37] [Client thread/INFO] [modmercenario]: Mod modmercenario is missing the required element 'name'. Substituting modmercenario
[11:25:40] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
[11:25:40] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, modmercenario] at CLIENT
[11:25:40] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, modmercenario] at SERVER
[11:25:41] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:modmercenario
[11:25:41] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[11:25:41] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations
[11:25:41] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[11:25:41] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[11:25:41] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[11:25:41] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:preInit:123]: 


###########Aggressive=true
###########
[11:25:41] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:preInit:124]: 


###########autoreload=false
###########
[11:25:41] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[11:25:42] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: BETA Target: null
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.ClientProxy:preInit:77]: ########


ClientProxy preInit()
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=1 mobmercenario
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=2 yunoMercenaria
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=3 yukiMercenario
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=4 aldeanoMercenario00
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=5 akCreeper
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=6 akCreeperDesert
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=12 fantasmaMercenario
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=13 perdigon_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=14 agujero_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=30 c4_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=15 bala9mm_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=16 bala5728mm_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=17 bala45acp_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=18 balaRedClub_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=19 bala55645mm_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=20 bala76239mm_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=21 granadaMercenariaExplosiva_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=22 fragmento_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=23 flechaMercenariaVainilla_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=24 flechaMercenariaAcero_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=25 flechaMercenariaRedstone_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=26 flechaMercenariaObsidiana_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=27 flechaMercenariaExplosiva_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=29 greenMan
[11:25:43] [Client thread/INFO] [FML]: Applying holder lookups
[11:25:43] [Client thread/INFO] [FML]: Holder lookups applied
[11:25:43] [Client thread/INFO] [FML]: Injecting itemstacks
[11:25:43] [Client thread/INFO] [FML]: Itemstack injection complete
[11:25:43] [Client thread/INFO] [sTDOUT]: [tv.twitch.StandardCoreAPI:<init>:16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's.
[11:25:43] [Client thread/ERROR]: Couldn't initialize twitch stream
[11:25:43] [sound Library Loader/INFO]: Starting up SoundSystem...
[11:25:43] [Thread-8/INFO]: Initializing LWJGL OpenAL
[11:25:43] [Thread-8/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[11:25:44] [Thread-8/INFO]: OpenAL initialized.
[11:25:44] [sound Library Loader/INFO]: Sound engine started
[11:25:46] [Client thread/INFO] [FML]: Max texture size: 16384
[11:25:46] [Client thread/INFO]: Created: 16x16 textures-atlas
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaFM92_9mm#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola1911colt_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:revolverMagnum_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:lanzagranadas79M_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaFM93R_9mm#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusilMP5T5_9mm#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMauserC92#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusilAresFMG_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaDesertEagle_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola1911colt_45acp#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMauserC92_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusil90PNF_5728#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoCarcaj#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaRedClub_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:taladroPerforador#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenarioDeMadera_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack01#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenaria_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:bandanaRoja#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocom#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaSPAS12_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenario_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaDesertEagle_45acp#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01_blocke#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:revolverMagnum_45acp#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00_blocke#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenariaDeMadera_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocom_Dummy#inventory not found
[11:25:48] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaWinchester1200_Dummy#inventory not found
[11:25:48] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusil57ar_5728#inventory not found
[11:25:48] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack02#inventory not found
[11:25:48] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola57NF_5728#inventory not found
[11:25:48] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS#inventory not found
[11:25:48] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack00#inventory not found
[11:25:48] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS_Dummy#inventory not found
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.ClientProxy:init:102]: ########


ClientProxy init()
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[0]Forest
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[1]ForestHills
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[2]Jungle
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[3]JungleHills
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[4]JungleEdge
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[5]Birch Forest
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[6]Birch Forest Hills
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[7]Roofed Forest
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[8]Flower Forest
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[9]Jungle M
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[10]JungleEdge M
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[11]Birch Forest M
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[12]Birch Forest Hills M
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[13]Roofed Forest M
[11:25:48] [Client thread/INFO] [FML]: Injecting itemstacks
[11:25:48] [Client thread/INFO] [FML]: Itemstack injection complete
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.ClientProxy:postInit:171]: ########


ClientProxy postInit()
[11:25:49] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
[11:25:49] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:modmercenario
[11:25:49] [Client thread/INFO]: SoundSystem shutting down...
[11:25:49] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
[11:25:49] [sound Library Loader/INFO]: Starting up SoundSystem...
[11:25:49] [Thread-10/INFO]: Initializing LWJGL OpenAL
[11:25:49] [Thread-10/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[11:25:49] [Thread-10/INFO]: OpenAL initialized.
[11:25:49] [sound Library Loader/INFO]: Sound engine started
[11:25:51] [Client thread/INFO] [FML]: Max texture size: 16384
[11:25:57] [Client thread/INFO]: Created: 8192x4096 textures-atlas
[11:28:01] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:612]: ---- Minecraft Crash Report ----
// Don't do that.

Time: 1/01/16 11:28 AM
Description: Initializing game

java.lang.OutOfMemoryError: Java heap space
at net.minecraftforge.client.model.pipeline.UnpackedBakedQuad$Builder.<init>(UnpackedBakedQuad.java:97)
at net.minecraftforge.client.model.ItemLayerModel.buildQuad(ItemLayerModel.java:298)
at net.minecraftforge.client.model.ItemLayerModel.buildSideQuad(ItemLayerModel.java:282)
at net.minecraftforge.client.model.ItemLayerModel.addSideQuad(ItemLayerModel.java:207)
at net.minecraftforge.client.model.ItemLayerModel.getQuadsForSprite(ItemLayerModel.java:154)
at net.minecraftforge.client.model.ItemLayerModel.bake(ItemLayerModel.java:89)
at net.minecraftforge.client.model.ModelLoader$VanillaModelWrapper.bake(ModelLoader.java:464)
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146)
at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28)
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130)
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111)
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772)
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:323)
at net.minecraft.client.Minecraft.startGame(Minecraft.java:532)
at net.minecraft.client.Minecraft.run(Minecraft.java:360)
at net.minecraft.client.main.Main.main(Main.java:116)
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:497)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
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:497)
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97)
at GradleStart.main(GradleStart.java:26)


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- Head --
Stacktrace:
at net.minecraftforge.client.model.pipeline.UnpackedBakedQuad$Builder.<init>(UnpackedBakedQuad.java:97)
at net.minecraftforge.client.model.ItemLayerModel.buildQuad(ItemLayerModel.java:298)
at net.minecraftforge.client.model.ItemLayerModel.buildSideQuad(ItemLayerModel.java:282)
at net.minecraftforge.client.model.ItemLayerModel.addSideQuad(ItemLayerModel.java:207)
at net.minecraftforge.client.model.ItemLayerModel.getQuadsForSprite(ItemLayerModel.java:154)
at net.minecraftforge.client.model.ItemLayerModel.bake(ItemLayerModel.java:89)
at net.minecraftforge.client.model.ModelLoader$VanillaModelWrapper.bake(ModelLoader.java:464)
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146)
at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28)
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130)
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111)
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772)
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:323)
at net.minecraft.client.Minecraft.startGame(Minecraft.java:532)

-- Initialization --
Details:
Stacktrace:
at net.minecraft.client.Minecraft.run(Minecraft.java:360)
at net.minecraft.client.main.Main.main(Main.java:116)
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:497)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
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:497)
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97)
at GradleStart.main(GradleStart.java:26)

-- System Details --
Details:
Minecraft Version: 1.8.8
Operating System: Linux (amd64) version 3.16.0-4-amd64
Java Version: 1.8.0_65, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 1297928 bytes (1 MB) / 2130051072 bytes (2031 MB) up to 2130051072 bytes (2031 MB)
JVM Flags: 4 total; -Xincgc -Xmx1024M -Xms1024M -Xmx2g
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP 9.18 Powered by Forge 11.15.0.1655 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
UCHIJA	mcp{9.18} [Minecraft Coder Pack] (minecraft.jar) 
UCHIJA	FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.8.8-11.15.0.1655.jar) 
UCHIJA	Forge{11.15.0.1655} [Minecraft Forge] (forgeSrc-1.8.8-11.15.0.1655.jar) 
UCHIJA	modmercenario{1.8} [modmercenario] (bin) 
Loaded coremods (and transformers): 
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 340.93' Renderer: 'GeForce GT 520/PCIe/SSE2'
Launched Version: 1.8.8
LWJGL: 2.9.4
OpenGL: GeForce GT 520/PCIe/SSE2 GL version 4.4.0 NVIDIA 340.93, NVIDIA Corporation
GL Caps: Using GL 1.3 multitexturing.
Using GL 1.3 texture combiners.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Shaders are available because OpenGL 2.1 is supported.
VBOs are available because OpenGL 1.5 is supported.

Using VBOs: No
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs: 
Current Language: English (US)
Profiler Position: N/A (disabled)
CPU: 2x Intel(R) Celeron(R) CPU G1610 @ 2.60GHz
[11:28:01] [Thread-7/ERROR] [FML]: Splash thread Exception
java.lang.OutOfMemoryError: Java heap space
at java.util.Arrays.copyOf(Arrays.java:3332) ~[?:1.8.0_65]
at java.lang.AbstractStringBuilder.expandCapacity(AbstractStringBuilder.java:137) ~[?:1.8.0_65]
at java.lang.AbstractStringBuilder.ensureCapacityInternal(AbstractStringBuilder.java:121) ~[?:1.8.0_65]
at java.lang.AbstractStringBuilder.append(AbstractStringBuilder.java:421) ~[?:1.8.0_65]
at java.lang.StringBuilder.append(StringBuilder.java:136) ~[?:1.8.0_65]
at net.minecraftforge.fml.client.SplashProgress$3.drawBar(SplashProgress.java:414) ~[splashProgress$3.class:?]
at net.minecraftforge.fml.client.SplashProgress$3.run(SplashProgress.java:327) ~[splashProgress$3.class:?]
at java.lang.Thread.run(Thread.java:745) [?:1.8.0_65]
[11:28:01] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:612]: #@!@# Game crashed! Crash report saved to: #@!@# /home/usuario/Modding/forge-1.8.8-11.15.0.1655-mdk/run/./crash-reports/crash-2016-01-01_11.28.01-client.txt
AL lib: (EE) alc_cleanup: 1 device not closed

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.