Jump to content

Recommended Posts

Posted

i just recently installed Forge with the install download link and whenever i install a mod it either doesn't load and when it does it goes to the black screen then says my game crashed.

Crash Log

http://pastebin.com/u4fDtC4K

I've tried looking to see whats wrong but i am not smart with java script. i also tried installing different mods after clearing the mods that i had before and the same thing happens.

Posted
  On 1/7/2014 at 5:19 AM, Chance9025 said:

To save you from someone looking to rip your head off, you may want to use spoiler tags when posting that huge report. Here's how below.

 

[spoiler]
Text here
[/spoiler]

How i do that I'm stupid with stuff like that?

Posted

Or perhaps, maybe using pastebin....

 

Did you perhaps use the proper installer file on the downloads page? Also they are going to want your FML Log-0. So unless you provide that expect this report to be ignored/locked/or yourself reprimanded for not reading the EAQ first.

“If a cluttered desk is a sign of a cluttered mind, of what, then, is an empty desk a sign?” -Albert Einstein

 

“Any intelligent fool can make things bigger, more complex, and more violent. It takes a touch of genius — and a lot of courage to move in the opposite direction.”  -Ernst F. Schumacher

 

“If you can't explain it to a six year old, you don't understand it yourself.” - Albert Einstein

Posted

I've tried the updated aether mod, the more ore mod etc and it just kept crashing the game so I don't know what I should do at this point. any suggestions on mods I should try and see if they work?

Posted

I HIGHLY doubt any of those mods are updated yet, make sure you are using mods for the correct version on minecraft you're trying to install.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

I probably sound like a idiot. Okay I have 2 last questions how do I know if its updated to its current version? And my second one is say if I did find some mods that were updated and I install them and I put them in the mods folder and startup minecraft and then I get to the main menu and they didn't load in, then I unzip them into the mods folder and they still don't load in what do I do?

Posted
  On 1/7/2014 at 1:22 PM, Death51 said:

I probably sound like a idiot. Okay I have 2 last questions how do I know if its updated to its current version?

 

Generally speaking if the mod's thread says "1.7" in the title or if the mod zip/jar file has "1.7" in the file name.

 

If it says "1.6.4" then it's not going to work.  Easy as pie.

 

If that isn't sufficient, then it's also probably not updated.  Especially if you had the mod before 1.7 came out.  NOTHING FROM 1.6 IS COMPATIBLE WITH 1.7

 

How hard is that?

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

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.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Different problem now. https://paste.ee/p/iDo8lS35
    • I would like to have a BoP sapling drop from my block if it is also installed. I think I have done everything and I cannot pinpoint the problem, which is the error in the logs that appears when joining a world:   [Worker-Main-11/ERROR] [ne.mi.co.ForgeHooks/]: Couldn't parse element loot_tables:grasses:blocks/leaves_block com.google.gson.JsonSyntaxException: Expected name to be an item, was unknown string 'biomesoplenty:magic_sapling' My code:   LootItemConditions.CONDITIONS.register(modEventBus); public class LootItemConditions { public static final DeferredRegister<LootItemConditionType> CONDITIONS = DeferredRegister.create(Registries.LOOT_CONDITION_TYPE, Grasses.MOD_ID); public static final RegistryObject<LootItemConditionType> IS_MOD_LOADED = CONDITIONS.register("is_mod_loaded", () -> new LootItemConditionType(new IsModLoaded.ConditionSerializer())); } public class IsModLoaded implements LootItemCondition { private final boolean exists; private final String modID; public IsModLoaded(String modID) { this.exists = ModList.get().isLoaded(modID); this.modID = modID; } @Override public LootItemConditionType getType() { return LootItemConditions.IS_MOD_LOADED.get(); } @Override public boolean test(LootContext context) { return this.exists; } public static LootItemCondition.Builder builder(String modid) { return () -> new IsModLoaded(modid); } public static class ConditionSerializer implements Serializer<IsModLoaded> { @Override public void serialize(JsonObject json, IsModLoaded instance, JsonSerializationContext ctx) { json.addProperty("modid", instance.modID); } @Override public IsModLoaded deserialize(JsonObject json, JsonDeserializationContext ctx) { return new IsModLoaded(GsonHelper.getAsString(json, "modid")); } } } protected LootTable.Builder createLeavesDropsWithModIDCheck(Block selfBlock, Item sapling, Property<?>[] properties, String modIDToCheck, float... chances) { CopyBlockState.Builder blockStateCopyBuilder = CopyBlockState.copyState(selfBlock); for(Property<?> property : properties) { blockStateCopyBuilder.copy(property); } return LootTable.lootTable() .withPool(LootPool.lootPool().setRolls(ConstantValue.exactly(1.0F)) .add(LootItem.lootTableItem(selfBlock) .when(HAS_SHEARS_OR_SILK_TOUCH) .apply(blockStateCopyBuilder))) .withPool(LootPool.lootPool().setRolls(ConstantValue.exactly(1.0F)) .add(this.applyExplosionCondition(selfBlock, LootItem.lootTableItem(sapling)) .when(IsModLoaded.builder(modIDToCheck))) .when(BonusLevelTableCondition.bonusLevelFlatChance(Enchantments.BLOCK_FORTUNE, chances)) .when(HAS_NO_SHEARS_OR_SILK_TOUCH)) .withPool(LootPool.lootPool().name("sticks").setRolls(ConstantValue.exactly(1.0F)) .add(this.applyExplosionDecay(selfBlock, LootItem.lootTableItem(Items.STICK). apply(SetItemCountFunction.setCount(UniformGenerator.between(1.0F, 2.0F)))) .when(BonusLevelTableCondition.bonusLevelFlatChance(Enchantments.BLOCK_FORTUNE, NORMAL_LEAVES_STICK_CHANCES)) .when(HAS_NO_SHEARS_OR_SILK_TOUCH))); } I don't know. Am I making a mistake somewhere? Am I forgetting something? Should there be something else?
  • Topics

×
×
  • Create New...

Important Information

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