Text Fields Synchronizer

Published by 151chit on
Supported MCreator versions
2024.1
EAP 2024.2.24713
Tags / plugin type
Templates
plugin_image
Downloads:
176
Upvotes: 3
About the plugin

This plugin allows you to synchronize text fields between the server and client.

I also didn't implement the procedures called by the "When the GUI is opened" trigger, because when the GUI is opened, the text in the text field will never be different from "".

Supported versions:

  • 1.20.1 (forge)
  • 1.20.4 (neoforge)
  • 1.18.2 (forge) 2023.1-2023.3 Not fully tested

Supported components:

  • Procedure called by a button/image button
  • Procedure called every tick while the GUI is open
  • All 6 procedures called by slot interactions
  • Procedure called after GUI is closed
  • Boolean checkbox values
  • Setting values ​​in a text field:

                  1.All players (even external trigger)

                  2.To the player using an entity dependency (even an external trigger)                   

It adds new procedure blocks for reading the values ​​of checkboxes and text fields, and for setting the value of text fields:
procedure

setvalue

checkbox

When you click a button on the server, the client side writes all the values ​​of the text fields into a new hash map and sends it over the standard network packet of the mcreator button, in the network packet this hash map is combined with the guistate hash map from mcreator and the new procedure block can read it.

testing

The source code is the plugin itself.

In this case, an unlimited number of text fields and checkboxes is supported, but do not fill the text field to the maximum value, otherwise the network packet will exceed the permissible limit in bytes and you will be kicked from the server!

1.0

Plugin released

1.1

  • Added synchronization of text fields for procedures called by slot interactions
  • The "Every tick while the gui is open" trigger has been moved from the render method to the containerTick method to reduce the speed of the procedure and improve performance

1.2

  • Added support for the "When GUI is closed" trigger

1.3

  • Added a block for setting the value of a text field for a player (entity) or for all players for the currently open GUI for the server.

1.4

  • Added support for checkboxes (if the checkbox is checked)

1.5

  • Fixed a critical error leading to a ClassCastException when trying to press a button with a procedure when the trigger “when the gui is closed” or “every tick while the gui is open” is simultaneously attached to this procedure on 1.20.4 (neoforge)
  • 1.5.1: fixed a bug where the "every tick while the gui is open" trigger tried to call the textboxstart() method that was not intended for this purpose

1.6

  • Added support for snapshot 2024.2, 2 GUI bug fixes (mouse cursor, slots and blocks) were also ported to Neoforge 1.20.4 (2024.1)
Project members
Developer

Plugin downloads
Text Fields Synchronizer-1.4s (FOR 1.18.2 ONLY, 2023.1-2023.3) Not fully tested (probably fixed) - testsync-2.zipUploaded on: 06/09/2024 - 19:22   File size: 17.72 KB
Text Fields Synchronizer-1.6 - Textfields_sync_4.zipUploaded on: 06/16/2024 - 18:32   File size: 34.46 KB

Comments

urielito 3010, I’m unlikely to be able to do this since I don’t have enough willpower for this + the mcreator developers made it clear that text fields are only for the client by labeling this bug in Github “works as designed” several years ago

Hi, I found a bug with your plugin. So if there is a "While GUI is Open Tick" or a "When GUI is Closed" trigger with a procedure attached to it, and there is a button with a procedure also attached to it, when you press the button it will crash the game. The error message is here: https://pastebin.com/yEjp6s03

Can you either make this compatible with 1.18.2? Or maybe share how you did it? Thank you!

could you please indicate the version of mcreator for 1.18.2? 2023.1? 2022.3? 2022.2? 2022.1? In short, you must get the text from the text field in the <name>Screen.java client class using the <textfield name>.getValue method and send it to the button network package as a text dependency for your procedure. Please write to me your version of mcreator and I will probably do it if I can