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
  • Mod Developer Central
  • Modder Support
  • [1.16.4] Replacing F3 screen
Currently Supported: 1.16.X (Latest) and 1.15.X (LTS)
Sign in to follow this  
Followers 1
krypciak

[1.16.4] Replacing F3 screen

By krypciak, November 19, 2020 in Modder Support

  • Reply to this topic
  • Start new topic

Recommended Posts

krypciak    0

krypciak

krypciak    0

  • Tree Puncher
  • krypciak
  • Members
  • 0
  • 15 posts
Posted November 19, 2020

Hi,

i would like to replace the F3 screen. By that I mean I want to display other text on it. But I need help with replacing it.

The F3 screen is in the net.minecraft.client.gui.overlay.DebygOverlayGui, and its created in net.minecraft.client.gui.IngameGui

Thanks for your help!

  • Quote

Share this post


Link to post
Share on other sites

diesieben07    7688

diesieben07

diesieben07    7688

  • Reality Controller
  • diesieben07
  • Forum Team
  • 7688
  • 56272 posts
Posted November 19, 2020

Subscribe to RenderGameOverlayEvent.Text, cancel it and draw your own.

  • Quote

Share this post


Link to post
Share on other sites

krypciak    0

krypciak

krypciak    0

  • Tree Puncher
  • krypciak
  • Members
  • 0
  • 15 posts
Posted November 19, 2020

How do you cancel it? Wouldnt canceling it cancel all text render events?

 

  • Quote

Share this post


Link to post
Share on other sites

diesieben07    7688

diesieben07

diesieben07    7688

  • Reality Controller
  • diesieben07
  • Forum Team
  • 7688
  • 56272 posts
Posted November 19, 2020
40 minutes ago, krypciak said:

How do you cancel it?

https://mcforge.readthedocs.io/en/latest/events/intro/

 

40 minutes ago, krypciak said:

Wouldnt canceling it cancel all text render events?

I don't know what you mean by "text render events". The event I mentioned is specifically for the debug screen.

  • Quote

Share this post


Link to post
Share on other sites

krypciak    0

krypciak

krypciak    0

  • Tree Puncher
  • krypciak
  • Members
  • 0
  • 15 posts
Posted November 19, 2020

Thank you! It works.

  • Quote

Share this post


Link to post
Share on other sites

krypciak    0

krypciak

krypciak    0

  • Tree Puncher
  • krypciak
  • Members
  • 0
  • 15 posts
Posted November 19, 2020

Theres one catch. Canceling event works, but the event is running every tick. When I want to show my f3 screen, it doesnt do anything becouse it switches it 20 times per second.

Any ideas?

  • Quote

Share this post


Link to post
Share on other sites

diesieben07    7688

diesieben07

diesieben07    7688

  • Reality Controller
  • diesieben07
  • Forum Team
  • 7688
  • 56272 posts
Posted November 19, 2020
11 minutes ago, krypciak said:

Theres one catch. Canceling event works, but the event is running every tick. When I want to show my f3 screen, it doesnt do anything becouse it switches it 20 times per second.

Any ideas?

It fires every frame. If you want to draw something on screen you need to do it every frame, that's how rendering works.

  • Quote

Share this post


Link to post
Share on other sites

krypciak    0

krypciak

krypciak    0

  • Tree Puncher
  • krypciak
  • Members
  • 0
  • 15 posts
Posted November 19, 2020

But i want it to render only when I press f3, and if I press it second time it dissapiers

  • Quote

Share this post


Link to post
Share on other sites

diesieben07    7688

diesieben07

diesieben07    7688

  • Reality Controller
  • diesieben07
  • Forum Team
  • 7688
  • 56272 posts
Posted November 19, 2020
32 minutes ago, krypciak said:

But i want it to render only when I press f3, and if I press it second time it dissapiers

Check GameSettings#showDebugInfo

  • Quote

Share this post


Link to post
Share on other sites

krypciak    0

krypciak

krypciak    0

  • Tree Puncher
  • krypciak
  • Members
  • 0
  • 15 posts
Posted November 19, 2020

It cannot be accessed by GameSettings.showDebugInfo

  • Quote

Share this post


Link to post
Share on other sites

krypciak    0

krypciak

krypciak    0

  • Tree Puncher
  • krypciak
  • Members
  • 0
  • 15 posts
Posted November 19, 2020

I got it by  Minecraft.getInstance().gameSettings.showDebugInfo; works!

Thanks

  • Quote

Share this post


Link to post
Share on other sites

krypciak    0

krypciak

krypciak    0

  • Tree Puncher
  • krypciak
  • Members
  • 0
  • 15 posts
Posted November 19, 2020

End of topic.

  • 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

    • Centmap
      Forge Mods Folder

      By Centmap · Posted 36 minutes ago

      ok thanks  
    • Luis_ST
      [1.16.5] Help with custom container (error when put a item in an slot)

      By Luis_ST · Posted 44 minutes ago

      it was once intended for something else what do I have to change that I can use it
    • diesieben07
      [1.16.5] Help with custom container (error when put a item in an slot)

      By diesieben07 · Posted 47 minutes ago

      The IMessage interface is entirely unnecessary. Other than that, yes, that is how you add packets.
    • Luis_ST
      [1.16.5] Help with custom container (error when put a item in an slot)

      By Luis_ST · Posted 54 minutes ago

      yes I have this variable (it goes from 0 to 109).   this is what i'm trying right now. Edit: it works like this, but how do I find out when I have to move a slot outside of the visible area if I shouldn't use the slot's position   I've "tried" something like this before in another mod. But I am not sure whether it works that way and whether it is even right? code: PacketHandler: https://github.com/Luis-st/Forge-1.16.5-36.0.1-mdk/blob/main/forge-1.16.5-36.0.1-mdk/src/main/java/net/luis/cave/core/ModPacketHandler.java my message interface: https://github.com/Luis-st/Forge-1.16.5-36.0.1-mdk/blob/main/forge-1.16.5-36.0.1-mdk/src/main/java/net/luis/cave/core/IMessage.java SyncSlotPosition message (not final/ in work): https://github.com/Luis-st/Forge-1.16.5-36.0.1-mdk/blob/main/forge-1.16.5-36.0.1-mdk/src/main/java/net/luis/cave/core/SyncSlotPosition.java   is there an error somewhere / does it work like that way?  
    • yincrafterf
      CurseForge installer is stuck at Extracting files.

      By yincrafterf · Posted 2 hours ago

      Sorry i didn't know thought it was the same thing. Edit: forgot to say i changed account because the other one wasn't letting me in.
  • Topics

    • Centmap
      2
      Forge Mods Folder

      By Centmap
      Started 12 hours ago

    • Luis_ST
      32
      [1.16.5] Help with custom container (error when put a item in an slot)

      By Luis_ST
      Started Tuesday at 04:15 PM

    • yincrafter
      2
      CurseForge installer is stuck at Extracting files.

      By yincrafter
      Started 3 hours ago

    • dynastychan
      1
      anyone know why my forge 1.12.2 server is vanilla not modded?

      By dynastychan
      Started 11 hours ago

    • pitbox46
      1
      Pushing Redstone

      By pitbox46
      Started 5 hours ago

  • Who's Online (See full list)

    • than00ber1
    • VinGame
    • Centmap
    • Choonster
    • Luis_ST
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • [1.16.4] Replacing F3 screen
  • Theme

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