Recent content by 4drian3d

  1. 4drian3d

    Question Low TPS after updating to 1.19.2 / 1.19.4

    The only suggestion I can give you is to upgrade to 1.20.4 which is the only supported version
  2. 4drian3d

    Solved Velocity

    If you deny permission to execute the command, it will not be displayed in the autocomplete and cannot be executed. Also check that you do not have a plugin like CommandWhitelist that removes commands that you do not have permission to execute
  3. 4drian3d

    Solved Velocity

    What?
  4. 4drian3d

    Question Update configuration files post-update

    It is recommended that you do nothing as the paper.yml file will be automatically migrated to the config/paper-global.yml file
  5. 4drian3d

    Question send plugin messages

    This is exactly how plugin messages work, they require at least one player to be connected. You can use other alternatives like Redis
  6. 4drian3d

    Solved Alternative to ChatColor.translateAlternateColorCodes

    That is a terrible use of components, you must use the LegacyComponentSerializer if you want to use that deprecated format or you can migrate to MiniMessage
  7. 4drian3d

    Question AsyncChatEvent chat formatting

    That event is deprecated and its use is not recommended, there is a possibility that in the future it will be removed.
  8. 4drian3d

    a

    a
  9. 4drian3d

    Question How create file.yml in velocity API?

    @Plugin(id = "someid") public class VelocityPlugin { @Inject @DataDirectory private Path dataDirectory; @Subscribe public void onProxyInitialization(final ProxyInitializationEvent event) { if (Files.notExists(dataDirectory)) { Files.createDirectory(dataDirectory); }...
  10. 4drian3d

    Question Velocity with forge modpacks

    Install https://modrinth.com/plugin/ambassador
  11. 4drian3d

    Question editing velocity plugins and see errors when running it

    It seems that you have edited the jar directly without compiling it since it seems that you have removed the ProxyServer import. If you don't have the source of a plugin, I would recommend that you consult with the original author or else make a separate plugin
  12. 4drian3d

    Plugin Release Party and Friends For Velocity | Version 1.0.92

    Paper already has a place to post Velocity/Paper/Waterfall plugins which is Hangar https://hangar.papermc.io/ , no need to post updates in the forum anymore
  13. 4drian3d

    Announcement Hangar - PaperMC's Plugin Repository

    Congratulations on the Hangar open beta! It has been a pleasure to publish plugins and test the closed beta :D
  14. 4drian3d

    Other libraries in Velocity Maven project

    Sure, you can use any libraries you want in Velocity, just include them and relocate them in your jar and they will work
  15. 4drian3d

    Question Issues related to velocity development API

    In that event you still can't get the player's UUID, you must use another event And for the offline mode, the online-mode=false is not supported, but you can check how FastLoginVelocity, LibreLogin or LimboAuth works