Recent content by terentev

  1. terentev

    Question about contribution

    Can I offer pull requests that violate backward compatibility? Refactoring, which makes the project code more pleasant. For example: separate Entity, Block, and BlockEntity classes from Location and Position classes inheritance
  2. terentev

    FormConstructor

    qPexLegendary updated FormConstructor with a new update entry: FormConstructor v1.1.2 Read the rest of this update entry...
  3. terentev

    Experimental FormConstructor - FormConstructor v1.1.2

    CustomForm has async handling Added send method for CustomForm with handler set Added send method for ModalForm with handler set
  4. terentev

    Experimental FormConstructor - FormConstructor v1.0.3

    Changelog Added getter of elements list in CustomForm. Simplified adding Label in CustomForm. Added getter of buttons list in SimpleForm.
  5. terentev

    FormConstructor

    qPexLegendary updated FormConstructor with a new update entry: FormConstructor v1.0.3 Read the rest of this update entry...
  6. terentev

    FormConstructor

    qPexLegendary submitted a new resource: FormConstructor - Library for easy creating and handling of forms Read more about this resource...
  7. terentev

    Experimental FormConstructor 1.1.2

    Introduction Library is designed to simplify the creation and handling of forms. It has a few key advantages over other form libraries: Forms are processed using a lambda, which is passed when the form itself is created, and not by catching events. For each button we can set a lambda...
  8. terentev

    [Deleted] FormConstructor

    This resource has been removed and is no longer available.
  9. terentev

    [Deleted] FormConstructor

    qPexLegendary submitted a new resource: FormConstructor - Library for easy creating and handling of forms Read more about this resource...
  10. terentev

    FormAPI

    Because here you can immediately specify the processing of the form using a lambda. This is more convenient than trying to catch some form and somehow identify it. Also my friends liked this thing
  11. terentev

    Discontinued FormAPI 2.2

    Simple library for creating forms (MCBE Nukkit). SimpleForm SimpleForm form = new SimpleForm("Test simple form") .setContent("Sample text") .addButton("Just a button") .addButton("Button with diamond", ImageType.PATH, "textures/items/diamond"); form.send(player, (targetPlayer...
  12. terentev

    FormAPI

    qPexLegendary submitted a new resource: FormAPI - Simple library for creating forms Read more about this resource...
  13. terentev

    FormAPI

    Just use it: form.addButton("Sample text", ImageType.URL, "pass url here");
Top