When I try to decompile with mcp (Modloader, no forge) It won't place the decompiled files in eclipse. The just dissapear. And It makes a random folder "eclipse" in every other folder. Help?!?
please SCMowns, upload the Forge Tutorial Episode 5 of the series, because I keep crashing when following the post even though I follow the same steps... Maybe I could follow better if you make the video...
Stephen, thank you so much for taking your time to help out the minecraft community with this. I have an idea for a magic based mod and it may just be able to come to life with your help. I understand that you have a busy schedule and probably a ton of request, but could you find the time to make tutorials for the following:
- A magic(mana) system. In which players can do variable defined take that can drain mana. The mana would have to regenerate.
- Custom brewing
- Custom Chest (That possible give off properties like particles light ect.)
-Brewing (Adding new potions and the craft of more efficient brewing stands)
-An item being shot causing an effect on whatever is getting shot (Example: Shooting a "Lightning arrows causes lightning to strike where the arrow lands") or causing an effect on the player that shot the item (For example I player being teleported after shooting a certain type of arrow)
-Achievements
-Loot in randomly generated chest.
-Spells (Particles and some type of entity/effect is shot in whatever direction the player is
looking in based on some type of user input)
-Items being held or equipped giving player affects like haste or invisibility
Thank you so much Stephen for all the work you're doing and are continuing to do!
i just watched LETS Make a mod forge ep. 4 and it shows how to make a solid block. i did it and i want my block to only be able to break with a diamond pick but it can break with any pick. first i had the block hardness at 10 then i changed it to 25 and it still could break with any pick PLZ HELP
This is one of the best threads on the forum. The service you provide for the community is Grade A, diamond encrusted kick ass. The vids are well produced. It helps when the host is engaging and not a bore to listen to. The content/tutorials are spot on and easy to follow. Everyone that asks me 'how to mod' I send them here. I had been away from Minecraft for about a year. And your tuts helped tremendously in updating my code. Thanks for an awesome thread and keep up the great work.
This is one of the best threads on the forum. The service you provide for the community is Grade A, diamond encrusted kick ass. The vids are well produced. It helps when the host is engaging and not a bore to listen to. The content/tutorials are spot on and easy to follow. Everyone that asks me 'how to mod' I send them here. I had been away from Minecraft for about a year. And your tuts helped tremendously in updating my code. Thanks for an awesome thread and keep up the great work.
-LK
And also the best thing is you wont get any errors because he tests and corrects it all on cam so you know exactly what to do
Umm....i followed tutorial 5 for forge and it works fine...but im wondering how to add vanilla items to the crafting grid
i found it really easy you add Item. and then the list of items show up and you can chose or you can type the whole thing in an example is Item.ingot (which i used for my mod) so that should work for blocks i think its the same block.dirt or something i don't known because i have not tried it yet hope this helped.
Edit: I just noticed if you look at the shapeless recipe code he uses the vanilla emerald for the trio gem
After making your Mod class, now paste the following code your class:
package SCMowns.Tutorial; //Package directory
/*
* Basic importing
*/
import net.minecraft.block.Block;
import net.minecraft.item.EnumToolMaterial;
import net.minecraft.item.Item;
import net.minecraft.item.ItemFood;
import net.minecraft.item.ItemStack;
import net.minecraftforge.common.EnumHelper;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.Init;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.network.NetworkMod;
import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.common.registry.LanguageRegistry;
/*
* Basic needed forge stuff
*/
@Mod(modid="TutorialMod",name="Tutorial Mod",version="v1")
@NetworkMod(clientSideRequired=true,serverSideRequired=false)
public class TutorialMod {
/*
* ToolMaterial
*/
//Telling forge that we are creating these
public static Item topaz;
//Declaring Init
@Init
public void load(FMLInitializationEvent event){
// define items/blocks
topaz = new GemItems(2013).setUnlocalizedName("topaz");
//adding names
LanguageRegistry.addName(topaz, "Topaz Gem");
//crafting
}
}
Watch the video tutorial for information about what some lines mean.
Time to make a class for the GemItems. Here's what you add in that class:
package SCMowns.Tutorial;
import net.minecraft.item.Item;
import cpw.mods.fml.relauncher.*;
import net.minecraft.creativetab.CreativeTabs;
public class GemItems extends Item {
public GemItems(int par1) {
super(par1); /Returns super constructor: par1 is ID
setCreativeTab(CreativeTabs.tabMaterials); //Tells the game what creative mode tab it goes in
}
}
alright, after importing everything we need, now lets make the block,
in your public class brackets, make a new public static block.
public static Block BlockName;
now we need to declare what BlockName is,
in your public void load brackets, put there lines of code inside:
BlockName= new NewBlockClass(3608, "BlockName_Whatever").setUnlocalizedName("Texture_For_Block").setHardness(2.0F).setStepSound(Block.soundMetalFootstep).setResistance(10.0F);
GameRegistry.registerBlock(BlockName, "BlockName");
LanguageRegistry.addName(BlockName, "Blood Name");
setHardness = how hard your block will be, to see the list of vanilla blocks, you can check out the Block.java file
setResistance is how much resistence would the block have against impacts.
You can follow the video tutorial for the little things.
Now we need to define our new NewBlockClass.java.
Make a new class, for example: NewBlockClass
Now paste these lines of code inside:
package Your.Package;
import java.util.Random;
import cpw.mods.fml.common.Mod.Init;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.registry.LanguageRegistry;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
public class NewBlockClass extends Block {
public BlockName(int par1, String texture) {
super(par1, Material.rock);
setCreativeTab(CreativeTabs.tabBlock); //place in creative tabs
}
//drops when broken with pickaxe
public int idDropped(int par1, Random par2Random, int par3)
{
return MainClass.ITEM.itemID;
}
public int quantityDropped(Random random)
{
return 3;
}
//texure the block (Not sure if it's required)
public String getTextureFile(){
return "/textures/blocks/TEXTURE_NAME.png";
}
}
Src: Basic Crafting:
In your main class, paste the code in your public void load():
GameRegistry.addRecipe(new ItemStack(topazblock,1), new Object[]{
"TTT","TTT","TTT",'T',topaz,
});
To read this code, we are making a topaz block with 9 topaz. T = 1 topaz, (topazblock,1) = we are crafting a topaz block and only getting one of them.
Here is an example using numbers in the crafting grid. Do you see the "TTT","TTT","TTT"
Not think of this code:
"TTT","TTT","TTT"
as:
"123","456","789"
That is how you can tell the crafting grid in java. (Watch my video for a better explanation.)
Sharpless Crafting:
sharpless crafting is making anything freely in the crafting table, without having any specific order.
(watch the video for a better explanation)
GameRegistry.addShapelessRecipe(new ItemStack(TrioItem,1), new Object[]{
RubyItem, SapphireItem, Item.emerald });
The coding is a lot similar to the Basic Crafting, but worded differently.
To make a Trio Gem, You need a Rubie, Sapphire, and an Emerald. These gems can be placed in the crafting table without any order to make a Trio Gem. ( This mod is Copyrighted. TrioGems Mod.)
Hey scmowns, when you come to Dimentions, could you teach us how to make portals like the end where you have to put objects to finish it.
the errors I got were
2013-05-31 21:12:08 [INFO] [ForgeModLoader] Forge Mod Loader version 5.2.2.684 for Minecraft 1.5.2 loading
2013-05-31 21:12:08 [INFO] [ForgeModLoader] Java is Java HotSpotâ„¢ 64-Bit Server VM, version 1.7.0_21, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7
2013-05-31 21:12:08 [INFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
2013-05-31 21:12:10 [INFO] [STDOUT] 229 recipes
2013-05-31 21:12:10 [INFO] [STDOUT] 27 achievements
2013-05-31 21:12:10 [INFO] [Minecraft-Client] Setting user: Player744
2013-05-31 21:12:10 [INFO] [STDOUT] (Session ID is -)
2013-05-31 21:12:10 [INFO] [STDERR] Client asked for parameter: server
2013-05-31 21:12:10 [INFO] [Minecraft-Client] LWJGL Version: 2.4.2
2013-05-31 21:12:11 [INFO] [MinecraftForge] Attempting early MinecraftForge initialization
2013-05-31 21:12:11 [INFO] [STDOUT] MinecraftForge v7.8.0.684 Initialized
2013-05-31 21:12:11 [INFO] [ForgeModLoader] MinecraftForge v7.8.0.684 Initialized
2013-05-31 21:12:11 [INFO] [STDOUT] Replaced 85 ore recipies
2013-05-31 21:12:11 [INFO] [MinecraftForge] Completed early MinecraftForge initialization
2013-05-31 21:12:11 [INFO] [ForgeModLoader] Reading custom logging properties from D:\Users\Nicholas and Benjami\Desktop\glowstone & emeralds mod\jars\config\logging.properties
2013-05-31 21:12:11 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL
2013-05-31 21:12:11 [INFO] [ForgeModLoader] Searching D:\Users\Nicholas and Benjami\Desktop\glowstone & emeralds mod\jars\mods for mods
2013-05-31 21:12:13 [INFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load
2013-05-31 21:12:13 [INFO] [mcp] Activating mod mcp
2013-05-31 21:12:13 [INFO] [FML] Activating mod FML
2013-05-31 21:12:13 [INFO] [Forge] Activating mod Forge
2013-05-31 21:12:13 [INFO] [glowstone & emeralds] Activating mod glowstone & emeralds
2013-05-31 21:12:13 [INFO] [ForgeModLoader] Configured a dormant chunk cache size of 0
2013-05-31 21:12:13 [INFO] [STDOUT]
2013-05-31 21:12:13 [INFO] [STDOUT] Starting up SoundSystem...
2013-05-31 21:12:13 [INFO] [STDOUT] Initializing LWJGL OpenAL
2013-05-31 21:12:13 [INFO] [STDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
2013-05-31 21:12:13 [INFO] [STDOUT] OpenAL initialized.
2013-05-31 21:12:14 [INFO] [STDOUT]
2013-05-31 21:12:15 [INFO] [STDERR] java.lang.NoSuchFieldException: GL_ARB_copy_image
2013-05-31 21:12:15 [INFO] [STDERR] at java.lang.Class.getField(Unknown Source)
2013-05-31 21:12:15 [INFO] [STDERR] at cpw.mods.fml.client.TextureFXManager.getHelper(TextureFXManager.java:122)
2013-05-31 21:12:15 [INFO] [STDERR] at net.minecraft.client.renderer.texture.TextureStitched.init(TextureStitched.java:74)
2013-05-31 21:12:15 [INFO] [STDERR] at net.minecraft.client.renderer.texture.TextureMap.refreshTextures(TextureMap.java:154)
2013-05-31 21:12:15 [INFO] [STDERR] at net.minecraft.client.renderer.RenderEngine.refreshTextureMaps(RenderEngine.java:520)
2013-05-31 21:12:15 [INFO] [STDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:443)
2013-05-31 21:12:15 [INFO] [STDERR] at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)
2013-05-31 21:12:15 [INFO] [STDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:732)
2013-05-31 21:12:15 [INFO] [STDERR] at java.lang.Thread.run(Unknown Source)
2013-05-31 21:12:15 [INFO] [ForgeModLoader] Forge Mod Loader has detected an older LWJGL version, new advanced texture animation features are disabled
2013-05-31 21:12:15 [INFO] [ForgeModLoader] Not using advanced OpenGL 4.3 advanced capability for animations : OpenGL 4.3 is not available
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/blocks/lava_flow.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/blocks/water_flow.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_0.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_1.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/blocks/lava.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/blocks/portal.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/blocks/water.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/items/clock.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/items/compass.txt
2013-05-31 21:12:15 [SEVERE] [ForgeModLoader] Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue
2013-05-31 21:12:15 [SEVERE] [ForgeModLoader]
mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
FML{5.2.2.684} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
Forge{7.8.0.684} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
glowstone & emeralds{v1} [glowstone&emeralds] (bin) Unloaded->Constructed->Pre-initialized->Errored
2013-05-31 21:12:15 [SEVERE] [ForgeModLoader] The following problems were captured during this phase
2013-05-31 21:12:15 [SEVERE] [ForgeModLoader] Caught exception from glowstone & emeralds
java.lang.Error: Unresolved compilation problems:
The method addName(Object, String) in the type LanguageRegistry is not applicable for the arguments (String)
Syntax error on tokens, delete these tokens
at ronnyboy95.glowstoneandemeralds.load(glowstoneandemeralds.java:57)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:494)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
at com.google.common.eventbus.EventBus.post(EventBus.java:267)
at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:165)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
at com.google.common.eventbus.EventBus.post(EventBus.java:267)
at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:98)
at cpw.mods.fml.common.Loader.initializeMods(Loader.java:690)
at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:206)
at net.minecraft.client.Minecraft.startGame(Minecraft.java:447)
at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)
at net.minecraft.client.Minecraft.run(Minecraft.java:732)
at java.lang.Thread.run(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] cpw.mods.fml.common.LoaderException: java.lang.Error: Unresolved compilation problems:
2013-05-31 21:12:25 [INFO] [STDERR] The method addName(Object, String) in the type LanguageRegistry is not applicable for the arguments (String)
2013-05-31 21:12:25 [INFO] [STDERR] Syntax error on tokens, delete these tokens
2013-05-31 21:12:25 [INFO] [STDERR]
2013-05-31 21:12:25 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:142)
2013-05-31 21:12:25 [INFO] [STDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691)
2013-05-31 21:12:25 [INFO] [STDERR] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:206)
2013-05-31 21:12:25 [INFO] [STDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:447)
2013-05-31 21:12:25 [INFO] [STDERR] at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)
2013-05-31 21:12:25 [INFO] [STDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:732)
2013-05-31 21:12:25 [INFO] [STDERR] at java.lang.Thread.run(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] Caused by: java.lang.Error: Unresolved compilation problems:
2013-05-31 21:12:25 [INFO] [STDERR] The method addName(Object, String) in the type LanguageRegistry is not applicable for the arguments (String)
2013-05-31 21:12:25 [INFO] [STDERR] Syntax error on tokens, delete these tokens
2013-05-31 21:12:25 [INFO] [STDERR]
2013-05-31 21:12:25 [INFO] [STDERR] at ronnyboy95.glowstoneandemeralds.load(glowstoneandemeralds.java:57)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:494)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)
2013-05-31 21:12:25 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:165)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)
2013-05-31 21:12:25 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:98)
2013-05-31 21:12:25 [INFO] [STDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:690)
2013-05-31 21:12:25 [INFO] [STDERR] ... 5 more
2013-05-31 21:12:28 [INFO] [STDERR] Someone is closing me!
- A magic(mana) system. In which players can do variable defined take that can drain mana. The mana would have to regenerate.
- Custom brewing
- Custom Chest (That possible give off properties like particles light ect.)
-Brewing (Adding new potions and the craft of more efficient brewing stands)
-An item being shot causing an effect on whatever is getting shot (Example: Shooting a "Lightning arrows causes lightning to strike where the arrow lands") or causing an effect on the player that shot the item (For example I player being teleported after shooting a certain type of arrow)
-Achievements
-Loot in randomly generated chest.
-Spells (Particles and some type of entity/effect is shot in whatever direction the player is
looking in based on some type of user input)
-Items being held or equipped giving player affects like haste or invisibility
Thank you so much Stephen for all the work you're doing and are continuing to do!
This is one of the best threads on the forum. The service you provide for the community is Grade A, diamond encrusted kick ass. The vids are well produced. It helps when the host is engaging and not a bore to listen to. The content/tutorials are spot on and easy to follow. Everyone that asks me 'how to mod' I send them here. I had been away from Minecraft for about a year. And your tuts helped tremendously in updating my code. Thanks for an awesome thread and keep up the great work.
-LK
And also the best thing is you wont get any errors because he tests and corrects it all on cam so you know exactly what to do
Edit: I just noticed if you look at the shapeless recipe code he uses the vanilla emerald for the trio gem
Hey scmowns, when you come to Dimentions, could you teach us how to make portals like the end where you have to put objects to finish it.
2013-05-31 21:12:08 [INFO] [ForgeModLoader] Forge Mod Loader version 5.2.2.684 for Minecraft 1.5.2 loading
2013-05-31 21:12:08 [INFO] [ForgeModLoader] Java is Java HotSpotâ„¢ 64-Bit Server VM, version 1.7.0_21, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7
2013-05-31 21:12:08 [INFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
2013-05-31 21:12:10 [INFO] [STDOUT] 229 recipes
2013-05-31 21:12:10 [INFO] [STDOUT] 27 achievements
2013-05-31 21:12:10 [INFO] [Minecraft-Client] Setting user: Player744
2013-05-31 21:12:10 [INFO] [STDOUT] (Session ID is -)
2013-05-31 21:12:10 [INFO] [STDERR] Client asked for parameter: server
2013-05-31 21:12:10 [INFO] [Minecraft-Client] LWJGL Version: 2.4.2
2013-05-31 21:12:11 [INFO] [MinecraftForge] Attempting early MinecraftForge initialization
2013-05-31 21:12:11 [INFO] [STDOUT] MinecraftForge v7.8.0.684 Initialized
2013-05-31 21:12:11 [INFO] [ForgeModLoader] MinecraftForge v7.8.0.684 Initialized
2013-05-31 21:12:11 [INFO] [STDOUT] Replaced 85 ore recipies
2013-05-31 21:12:11 [INFO] [MinecraftForge] Completed early MinecraftForge initialization
2013-05-31 21:12:11 [INFO] [ForgeModLoader] Reading custom logging properties from D:\Users\Nicholas and Benjami\Desktop\glowstone & emeralds mod\jars\config\logging.properties
2013-05-31 21:12:11 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL
2013-05-31 21:12:11 [INFO] [ForgeModLoader] Searching D:\Users\Nicholas and Benjami\Desktop\glowstone & emeralds mod\jars\mods for mods
2013-05-31 21:12:13 [INFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load
2013-05-31 21:12:13 [INFO] [mcp] Activating mod mcp
2013-05-31 21:12:13 [INFO] [FML] Activating mod FML
2013-05-31 21:12:13 [INFO] [Forge] Activating mod Forge
2013-05-31 21:12:13 [INFO] [glowstone & emeralds] Activating mod glowstone & emeralds
2013-05-31 21:12:13 [INFO] [ForgeModLoader] Configured a dormant chunk cache size of 0
2013-05-31 21:12:13 [INFO] [STDOUT]
2013-05-31 21:12:13 [INFO] [STDOUT] Starting up SoundSystem...
2013-05-31 21:12:13 [INFO] [STDOUT] Initializing LWJGL OpenAL
2013-05-31 21:12:13 [INFO] [STDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
2013-05-31 21:12:13 [INFO] [STDOUT] OpenAL initialized.
2013-05-31 21:12:14 [INFO] [STDOUT]
2013-05-31 21:12:15 [INFO] [STDERR] java.lang.NoSuchFieldException: GL_ARB_copy_image
2013-05-31 21:12:15 [INFO] [STDERR] at java.lang.Class.getField(Unknown Source)
2013-05-31 21:12:15 [INFO] [STDERR] at cpw.mods.fml.client.TextureFXManager.getHelper(TextureFXManager.java:122)
2013-05-31 21:12:15 [INFO] [STDERR] at net.minecraft.client.renderer.texture.TextureStitched.init(TextureStitched.java:74)
2013-05-31 21:12:15 [INFO] [STDERR] at net.minecraft.client.renderer.texture.TextureMap.refreshTextures(TextureMap.java:154)
2013-05-31 21:12:15 [INFO] [STDERR] at net.minecraft.client.renderer.RenderEngine.refreshTextureMaps(RenderEngine.java:520)
2013-05-31 21:12:15 [INFO] [STDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:443)
2013-05-31 21:12:15 [INFO] [STDERR] at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)
2013-05-31 21:12:15 [INFO] [STDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:732)
2013-05-31 21:12:15 [INFO] [STDERR] at java.lang.Thread.run(Unknown Source)
2013-05-31 21:12:15 [INFO] [ForgeModLoader] Forge Mod Loader has detected an older LWJGL version, new advanced texture animation features are disabled
2013-05-31 21:12:15 [INFO] [ForgeModLoader] Not using advanced OpenGL 4.3 advanced capability for animations : OpenGL 4.3 is not available
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/blocks/lava_flow.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/blocks/water_flow.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_0.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_1.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/blocks/lava.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/blocks/portal.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/blocks/water.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/items/clock.txt
2013-05-31 21:12:15 [INFO] [Minecraft-Client] Found animation info for: textures/items/compass.txt
2013-05-31 21:12:15 [SEVERE] [ForgeModLoader] Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue
2013-05-31 21:12:15 [SEVERE] [ForgeModLoader]
mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
FML{5.2.2.684} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
Forge{7.8.0.684} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
glowstone & emeralds{v1} [glowstone&emeralds] (bin) Unloaded->Constructed->Pre-initialized->Errored
2013-05-31 21:12:15 [SEVERE] [ForgeModLoader] The following problems were captured during this phase
2013-05-31 21:12:15 [SEVERE] [ForgeModLoader] Caught exception from glowstone & emeralds
java.lang.Error: Unresolved compilation problems:
The method addName(Object, String) in the type LanguageRegistry is not applicable for the arguments (String)
Syntax error on tokens, delete these tokens
at ronnyboy95.glowstoneandemeralds.load(glowstoneandemeralds.java:57)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:494)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
at com.google.common.eventbus.EventBus.post(EventBus.java:267)
at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:165)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
at com.google.common.eventbus.EventBus.post(EventBus.java:267)
at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:98)
at cpw.mods.fml.common.Loader.initializeMods(Loader.java:690)
at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:206)
at net.minecraft.client.Minecraft.startGame(Minecraft.java:447)
at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)
at net.minecraft.client.Minecraft.run(Minecraft.java:732)
at java.lang.Thread.run(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] cpw.mods.fml.common.LoaderException: java.lang.Error: Unresolved compilation problems:
2013-05-31 21:12:25 [INFO] [STDERR] The method addName(Object, String) in the type LanguageRegistry is not applicable for the arguments (String)
2013-05-31 21:12:25 [INFO] [STDERR] Syntax error on tokens, delete these tokens
2013-05-31 21:12:25 [INFO] [STDERR]
2013-05-31 21:12:25 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:142)
2013-05-31 21:12:25 [INFO] [STDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691)
2013-05-31 21:12:25 [INFO] [STDERR] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:206)
2013-05-31 21:12:25 [INFO] [STDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:447)
2013-05-31 21:12:25 [INFO] [STDERR] at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)
2013-05-31 21:12:25 [INFO] [STDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:732)
2013-05-31 21:12:25 [INFO] [STDERR] at java.lang.Thread.run(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] Caused by: java.lang.Error: Unresolved compilation problems:
2013-05-31 21:12:25 [INFO] [STDERR] The method addName(Object, String) in the type LanguageRegistry is not applicable for the arguments (String)
2013-05-31 21:12:25 [INFO] [STDERR] Syntax error on tokens, delete these tokens
2013-05-31 21:12:25 [INFO] [STDERR]
2013-05-31 21:12:25 [INFO] [STDERR] at ronnyboy95.glowstoneandemeralds.load(glowstoneandemeralds.java:57)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:494)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)
2013-05-31 21:12:25 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:165)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
2013-05-31 21:12:25 [INFO] [STDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)
2013-05-31 21:12:25 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:98)
2013-05-31 21:12:25 [INFO] [STDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:690)
2013-05-31 21:12:25 [INFO] [STDERR] ... 5 more
2013-05-31 21:12:28 [INFO] [STDERR] Someone is closing me!
I would give you the crash screen from minecraft but it wouldn't let me copy and paste.