Recent content by Noah

  1. Noah

    Question Anyone know why mcping is returning Anonymous Player and zero uuid?

    This is probably because the player has 'allow server listings' disabled in their client settings. The option was introduced in a 1.18 snapshot. edit: if this is happening for the entire server, maybe it's the hide-online-players setting? not entirely sure how that one is implemented
  2. Noah

    Solved network bandwidth usage

    Just to confirm, are you talking about the network outbound icon on the right (see screenshot)? This is pterodactyl's total network out since start statistic, not outbound / second.
  3. Noah

    Solved Why TextComponent So Strange?

    You can’t append components like that, it’s currently being cast to a string and then added into your component plain text. You have to add them with Component#append: Component.text("§f[§a+§f] §f ").append(player.name()) Also, you’re currently mixing legacy color codes (§) in components. You...
  4. Noah

    Question item displayName problem

    Haven't tested it, but something like this should probably work: String key; if (component instanceof TranslatableComponent translatable) { key = translatable.key(); }
  5. Noah

    Mojang chat report

    You're right, messages aren't signed in offline mode, so they can't be reported. Since the bans are enforced at the auth server level offline mode servers won't even know a player might be banned.
  6. Noah

    Solved Team commands do not work correctly on the server.

    Setting allow-non-player-entities-on-scoreboards to true in your paper world config should solve your issue. You'll probably also want to set save-empty-scoreboard-teams to true in the paper global config to keep your teams when they get empty.
  7. Noah

    Question Gender change of my character?

    It's based on your account UUID, which when is random when using online mode, but is determined using your username when in offline mode (but which skin you get for which name is still random).
  8. Noah

    Question Webinterface to manage paper mc servers

    The most commonly used solution by the community is Pterodactyl, which is not specifically for Minecraft (but rather games in general), but supports it very well. Pterodactyl also runs your servers in isolated docker containers, offering some extra security with basically no overhead.
  9. Noah

    Solved TextDecoration Bleed Over

    Try appending your prefix to an empty parent component instead, like so: Component.empty().append(myPrefixComponent).append(myText) or use the builder: Component.text().append(myPrefixComponent).append(myText).build()
  10. Noah

    Question Don't understand Components

    If you're using the item name to compare custom items / custom item abilities, you should use the PersistentDataContainer instead. It allows you to easily change the name of the item later down the line (or let players rename it), since you're not matching it by display name, which can break...
  11. Noah

    Mojang chat report

    That's only on Bedrock, you can still play singleplayer if you get banned from multiplayer on Java edition.
  12. Noah

    Question does it exist for version 1.16.5?

    The latest Velocity version supports all versions between 1.7.2 and 1.19.2.
  13. Noah

    Question does it exist for version 1.16.5?

    Yes, see the legacy download page. Keep in mind that we don't provide support for this version.
  14. Noah

    Mojang chat report

    it would because the counter would count every message, not every message sent by a specific player. If player A has 300ms ping, and player B has 50ms ping, player B could send a message later than player A, but still have it arrive earlier. Player B would then 'get' the next message id (same as...
  15. Noah

    Mojang chat report

    I'm definitely interested in seeing how they solve that, since intentionally leaving out context is a pretty important issue. One way they could solve this is by having some kind of counter that tracks how many player messages have been sent in chat (synced on join). This number would then be...