Jump to content

Forge is now crashing when I try to open it.


_juuzou_

Recommended Posts

ORIGINAL PROBLEM (forge not showing up in minecraft launcher)

Spoiler

 

I downloaded forge, ran it, extracted it, and installed it. It successfully installed - it told me (see picture). Then I checked to make sure it was in my .minecraft folder (it was). When I tried to make a configuration in the launcher, the forge version wasn't in the list. I've never done this before (I'm not good with computers, and I followed a youtube video to do this :|) so I probably made some stupid mistake. Does anyone know what's wrong??? :( 

 

 

forge 3.png

forge 2.png

forge 1.png

 

 

I restarted my computer and it worked when I tried to open it, but 5929f69677782_forgeissues.PNG.23f0fbcdf73d9c79011214f687ea3196.PNG

this happened, and when I try to debug, the debug thing crashes ;/

I tried to do this again and minecraft won't even open...

I feel like something is probably wrong with my computer (it is really old/ windows 7)

Edited by _juuzou_
Link to comment
Share on other sites

You just moved files around that you shouldn't of, You can delete it.

However for your new issue read the EAQs as listed at the top of this forum and disable the loading screen.

Before you ask how to do that, it's in the EAQs -.-

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

Link to comment
Share on other sites

On 5/28/2017 at 3:04 AM, LexManos said:

You just moved files around that you shouldn't of, You can delete it.

However for your new issue read the EAQs as listed at the top of this forum and disable the loading screen.

Before you ask how to do that, it's in the EAQs -.-

I didn't move any files around, minecraft was like that when I downloaded forge.

Also, I did look at the EAQs before posting, but as for the whole "disable the loading screen by setting "enabled" to "false" in .minecraft/config/splash.properties." thing - I have no idea how to do that? 

 

I went to %appdata% and got all the way to "splash.properties", but my computer can't read that kind of file... what am I doing wrong? 

Sorry, I'm feeling like an idiot :|

Link to comment
Share on other sites

It is just a normal text file with a different extension, so you can open the file with any text editor.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

Deleted spam and revoked GoreFalcon's post access for 6 days. As a final word on the subject. It is a rule that 1.7.10 {AKA: Really old versions that are no longer in development} do not get active support on this forum. So I informed him of that in his first thread and locked it. He then created ANOTHER identical thread bitching that I locked his first. Which I promptly merged witht eh first and locked again. He also spent a bit of time spamming a few other people's threads trying to get them to look at his thread. He then made ANOTHER thread about the same thing. Yes technically the 3rd thread was universal but he posted it as a cry for 1.7.10 help and I was annoyed enough to not really look to deep into it.

 

Now he's hijacking other people threads to bitch about the admins {me} on this site. Which is not appropriate. If you have a legit complaint we'll take it into account but just hijacking to say we're assholes is not legit.

Anyways, that ends that.

 

As for on topic. I may take it for granted but whenever I see a file I'm told to change text in.. I open it in a text editor... I just feel that's common sense. But whatever. You have to open the splash.properties file in a text editor as larsgerrits stated.

 

 

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

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.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Update your AMD/ATI drivers - get the drivers from their website - do not update via system  
    • As the title says i keep on crashing on forge 1.20.1 even without any mods downloaded, i have the latest drivers (nvidia) and vanilla minecraft works perfectly fine for me logs: https://pastebin.com/5UR01yG9
    • Hello everyone, I'm making this post to seek help for my modded block, It's a special block called FrozenBlock supposed to take the place of an old block, then after a set amount of ticks, it's supposed to revert its Block State, Entity, data... to the old block like this :  The problem I have is that the system breaks when handling multi blocks (I tried some fix but none of them worked) :  The bug I have identified is that the function "setOldBlockFields" in the item's "setFrozenBlock" function gets called once for the 1st block of multiblock getting frozen (as it should), but gets called a second time BEFORE creating the first FrozenBlock with the data of the 1st block, hence giving the same data to the two FrozenBlock :   Old Block Fields set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=head] BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@73681674 BlockEntityData : id:"minecraft:bed",x:3,y:-60,z:-6} Old Block Fields set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} Frozen Block Entity set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockPos{x=3, y=-60, z=-6} BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} Frozen Block Entity set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockPos{x=2, y=-60, z=-6} BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} here is the code inside my custom "freeze" item :    @Override     public @NotNull InteractionResult useOn(@NotNull UseOnContext pContext) {         if (!pContext.getLevel().isClientSide() && pContext.getHand() == InteractionHand.MAIN_HAND) {             BlockPos blockPos = pContext.getClickedPos();             BlockPos secondBlockPos = getMultiblockPos(blockPos, pContext.getLevel().getBlockState(blockPos));             if (secondBlockPos != null) {                 createFrozenBlock(pContext, secondBlockPos);             }             createFrozenBlock(pContext, blockPos);             return InteractionResult.SUCCESS;         }         return super.useOn(pContext);     }     public static void createFrozenBlock(UseOnContext pContext, BlockPos blockPos) {         BlockState oldState = pContext.getLevel().getBlockState(blockPos);         BlockEntity oldBlockEntity = oldState.hasBlockEntity() ? pContext.getLevel().getBlockEntity(blockPos) : null;         CompoundTag oldBlockEntityData = oldState.hasBlockEntity() ? oldBlockEntity.serializeNBT() : null;         if (oldBlockEntity != null) {             pContext.getLevel().removeBlockEntity(blockPos);         }         BlockState FrozenBlock = setFrozenBlock(oldState, oldBlockEntity, oldBlockEntityData);         pContext.getLevel().setBlockAndUpdate(blockPos, FrozenBlock);     }     public static BlockState setFrozenBlock(BlockState blockState, @Nullable BlockEntity blockEntity, @Nullable CompoundTag blockEntityData) {         BlockState FrozenBlock = BlockRegister.FROZEN_BLOCK.get().defaultBlockState();         ((FrozenBlock) FrozenBlock.getBlock()).setOldBlockFields(blockState, blockEntity, blockEntityData);         return FrozenBlock;     }  
    • It is an issue with quark - update it to this build: https://www.curseforge.com/minecraft/mc-mods/quark/files/3642325
  • Topics

×
×
  • Create New...

Important Information

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