Jump to content
  • Home
  • Files
  • Docs
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Minecraft Forge
  • Support & Bug Reports
  • forge is not in my launcher
Currently Supported: 1.16.X (Latest) and 1.15.X (LTS)
Sign in to follow this  
Followers 1
SnakeyFlea07

forge is not in my launcher

By SnakeyFlea07, June 15, 2020 in Support & Bug Reports

  • Reply to this topic
  • Start new topic

Recommended Posts

SnakeyFlea07    0

SnakeyFlea07

SnakeyFlea07    0

  • Tree Puncher
  • SnakeyFlea07
  • Members
  • 0
  • 4 posts
Posted June 15, 2020 (edited)

i have attached the forge log im trying to play my problem is forge is not in my launcher

forge-1.14.4-28.2.0-installer.jar.log

Edited June 15, 2020 by SnakeyFlea07
file did not upload
  • Quote

Share this post


Link to post
Share on other sites

diesieben07    7589

diesieben07

diesieben07    7589

  • Reality Controller
  • diesieben07
  • Forum Team
  • 7589
  • 54989 posts
Posted June 15, 2020

Post the installer log.

  • Quote

Share this post


Link to post
Share on other sites

SnakeyFlea07    0

SnakeyFlea07

SnakeyFlea07    0

  • Tree Puncher
  • SnakeyFlea07
  • Members
  • 0
  • 4 posts
Posted June 15, 2020

i now have

 

  • Quote

Share this post


Link to post
Share on other sites

diesieben07    7589

diesieben07

diesieben07    7589

  • Reality Controller
  • diesieben07
  • Forum Team
  • 7589
  • 54989 posts
Posted June 15, 2020

Are you using the official launcher?

  • Quote

Share this post


Link to post
Share on other sites

SnakeyFlea07    0

SnakeyFlea07

SnakeyFlea07    0

  • Tree Puncher
  • SnakeyFlea07
  • Members
  • 0
  • 4 posts
Posted June 15, 2020
Just now, diesieben07 said:

Are you using the official launcher?

yes

  • Quote

Share this post


Link to post
Share on other sites

diesieben07    7589

diesieben07

diesieben07    7589

  • Reality Controller
  • diesieben07
  • Forum Team
  • 7589
  • 54989 posts
Posted June 15, 2020

Was the launcher closed while you installed?

Where are you looking for the version (post a screenshot)?

  • Quote

Share this post


Link to post
Share on other sites

SnakeyFlea07    0

SnakeyFlea07

SnakeyFlea07    0

  • Tree Puncher
  • SnakeyFlea07
  • Members
  • 0
  • 4 posts
Posted June 15, 2020

the launcher was not open and i use the old launcher

Capture.PNG

  • Quote

Share this post


Link to post
Share on other sites

diesieben07    7589

diesieben07

diesieben07    7589

  • Reality Controller
  • diesieben07
  • Forum Team
  • 7589
  • 54989 posts
Posted June 15, 2020

Use the modern launcher. The old launcher is not supported.

  • Quote

Share this post


Link to post
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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  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.

    • Insert image from URL
×
  • Desktop
  • Tablet
  • Phone
Sign in to follow this  
Followers 1
Go To Topic Listing



  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • ChampionAsh5357
      Tessellator ignores lighting?

      By ChampionAsh5357 · Posted 1 minute ago

      What version is this?
    • monkeysHK
      [1.16] Transparent Picture Render in GUI

      By monkeysHK · Posted 13 minutes ago

      Hi. I tried translucent_transparency. I copied code from it to setup and clear the renderstate. Still doesn't work, texture is not transparent. Am I missing something?   minecraft.getTextureManager().bindTexture(TEXTURE_LOC); matrixStack.push(); { RenderSystem.enableBlend(); RenderSystem.blendFuncSeparate(GlStateManager.SourceFactor.SRC_ALPHA, GlStateManager.DestFactor.ONE_MINUS_SRC_ALPHA, GlStateManager.SourceFactor.ONE, GlStateManager.DestFactor.ONE_MINUS_SRC_ALPHA); RenderSystem.blendColor(1f, 1f, 1f, 0.5f); matrixStack.translate(instru_pos[currentNbo.ordinal()][0], instru_pos[currentNbo.ordinal()][1], 0); matrixStack.scale((255/20f)*scale, (255/20f)*scale, (255/20f)*scale); this.blit(matrixStack, 0, 0, 0, 146, 20, 20); RenderSystem.disableBlend(); RenderSystem.defaultBlendFunc(); } matrixStack.pop();  
    • CookieLukas
      Tessellator ignores lighting?

      By CookieLukas · Posted 15 minutes ago

      Im trying to render a simple plane with the following code:   GL11.glPushMatrix(); GL11.glTranslated(-doubleX, -doubleY, -doubleZ); ResourceLocation texture = new ResourceLocation(ExampleMod.MODID, "debug.png"); mc.renderEngine.bindTexture(texture); Tessellator tessellator = Tessellator.getInstance(); VertexBuffer bufferbuilder = tessellator.getBuffer(); GL11.glEnable(GL11.GL_TEXTURE_2D); bufferbuilder.begin(GL11.GL_QUADS, DefaultVertexFormats.POSITION_TEX); bufferbuilder.pos(x, y + 1.1, z + 1.0D).tex(0, 1).endVertex(); bufferbuilder.pos(x + 1.0D, y + 1.1, z + 1.0D).tex(1, 1).endVertex(); bufferbuilder.pos(x + 1.0D, y + 1.1, z).tex(1, 0).endVertex(); bufferbuilder.pos(x, y + 1.1, z).tex(0, 0).endVertex(); GL11.glEnd(); tessellator.draw(); GlStateManager.popMatrix(); It renders the plane perfectly, but it just completly ignores lighting. I tried stuff like GlStateManager.enableLighting(); but I cant get it work. Also, some textures like staind glass or water wont render in from of it. How can I fix those issues? Thanks in advance -Lukas  
    • ChampionAsh5357
      The import net cannot be resolved

      By ChampionAsh5357 · Posted 36 minutes ago

      Please link a paste to the gradle log from the erroring build process.
    • buffalobob
      Forge opening in Internet Explorer instead of Java

      By buffalobob · Posted 56 minutes ago

      I will literally make out with you I was struggling with this for two hours and you fixed it papi chulo I love you
  • Topics

    • CookieLukas
      1
      Tessellator ignores lighting?

      By CookieLukas
      Started 15 minutes ago

    • monkeysHK
      4
      [1.16] Transparent Picture Render in GUI

      By monkeysHK
      Started Yesterday at 12:19 AM

    • me1
      25
      The import net cannot be resolved

      By me1
      Started March 29, 2020

    • Stinkerpot
      5
      Forge opening in Internet Explorer instead of Java

      By Stinkerpot
      Started March 8, 2016

    • Woodside
      10
      [1.15.2] Render as 2D icon in GUI, 3D model in hand

      By Woodside
      Started 21 hours ago

  • Who's Online (See full list)

    • ChampionAsh5357
    • monkeysHK
    • jrein03
    • ozumman
    • kmann383
    • stegii
    • CookieLukas
    • Martinjanning@web.de
    • EveryDayThief
    • JoieNL
    • diesieben07
    • jbredwards
  • All Activity
  • Home
  • Minecraft Forge
  • Support & Bug Reports
  • forge is not in my launcher
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community