#server-plugins-read-only

1 messages · Page 99 of 1

rare sundial
#

It destroys my whole building idea :(

still field
#

Yes you can

#

One way is to make an http request to playerdb

#

I think there's also another way but I don't know it. I think all players have data stored somewhere when they join even if they are offline this data is on disk and could probably be accessed and may contain this information

jolly bane
#

❓ I'm currently working on a plugin to swap models for players using a command.

I have a few questions:

  • Is there a snippet available somewhere that shows how you instruct the player entity to load a different model?
  • What's the structure for assets to make this possible, e.g where do I put my models?

(not wanting to distract from the current discussion)

sage panther
#

Holder<EntityStore> holder = EntityStore.REGISTRY.newHolder();
ModelAsset modelAsset = ModelAsset.getAssetMap().getAsset("TestAsset");
Model model = Model.createScaledModel(modelAsset, 1.0f);
Vector3d vector3d = new Vector3d(0, 82, 0);
Vector3f vector3f = new Vector3f(0, 0, 0);
TransformComponent transform = new TransformComponent(vector3d, vector3f);
holder.addComponent(TransformComponent.getComponentType(), transform);
holder.addComponent(PersistentModel.getComponentType(), new PersistentModel(model.toReference()));
holder.addComponent(ModelComponent.getComponentType(), new ModelComponent(model));
holder.addComponent(BoundingBox.getComponentType(), new BoundingBox(model.getBoundingBox()));
holder.addComponent(NetworkId.getComponentType(), new NetworkId(store.getExternalData().takeNextNetworkId()));
Interactions interactions = new Interactions();
interactions.setInteractionId(InteractionType.Secondary, "TestInteraction"); // this line is not triggering the overridden tick0 method in my TestInteraction class when I right click the entity created
holder.addComponent(Interactions.getComponentType(), interactions);
holder.ensureComponent(UUIDComponent.getComponentType());
holder.ensureComponent(Interactable.getComponentType());

#

who knows the issue?

stark tulip
#

Got dynamic images working for UIs, dynamic meaning downloading images from the Internet/URL.

mortal furnace
#

Does anyone have a Repo/example of adding a custom GrowthModifierAsset (Or any custom block property in general)?
Im currently growing the plants in my plugin through setGrowthProgress but i would like it to interact with the other growth modifiers.

wary lion
#

just made a library/plugin that adds all the classic Minecraft/Spigot/Bukkit color codes and support for hex colors, gradients with unlimited colors, a rainbow color code, links, monospace and there's a togglable chat parser if you want to be able to use color codes in chat yourself but you need to configure your chat format in the config, there's permissions for each color code and its incredibly easy to use in your plugins/mods if you're interested lmk

tough thorn
#

If you want to force an animation to start/stop based on state, what's the best way to go about that, is it just ECS mixed with a forced state on the block?

keen shard
#

okay so what happen on our server when update 2 drops. Will all the mods be deprecated?

until each mod updates as well?

blissful pilot
#

has anyone here used HyUI

opaque cape
#

I have successfully created a mod that will send your inventory to another server

#

This is not an exaggeration

blissful pilot
#

does it save the inventory data locally

opaque cape
#

Not yet, But that is the plan

#

So far I can post the JSON Data to the other server

#

And it all runs without a middleman, We just host an HTTP Server on the server

blissful pilot
#

oh damn thats cool

opaque cape
#

Provided your server host will let you run an HTTP Server on Port 8081, It'll be compatible

#

I've tested it with one server host so far

copper anchor
#

For example if a mod affects smth on player join and they change one of the functions of player join, the mod will break otherwise it works fine

static shadow
#

Every modding system in existence has that problem. Minor updates are usually fine but major updates usually have so called "Breaking changes". Especially when a game is in the early stages, like this one

keen shard
keen shard
tough thorn
#

Yea I think Monday

copper anchor
#

If my moderation plugin breaks, its gonna be a pain to fix it lol

tough thorn
#

Yea that's why the electrical stuff I'm building out I'm doing on the pre-release version. No point on doing it on update 1

keen shard
#

does anyone use "tree Harvesting" it no work on dedicated server

nocturne star
#

How impossible is it for custom tooltips in the inventory?

#

I have spent a couple hours with no success, using a custom /inv command to show BSON data stats but this sucks for UX

wary lion
jagged dock
nocturne star
jagged dock
#

I've looked at decompiled client code and it appears to only read a few parameters from curses and capture crates
otherwise pretty much impossible
but I'm working on a possible workaround

nocturne star
#

Shot you a FR, if you do find a solution and wouldn't mind sharing. I will timebox another couple of hours and see if I can come up with something.

copper anchor
#

The one thing minecraft did better than hytale is they used components instead of raw text everywhere

jagged dock
#

I'll have to do further testing with CapturedNPCMetadata, but it can accept custom icons, but I'm not sure how it interacts with the item name and coops etc

#

easiest solution is to send a specific player an UpdateItems packet, but it will affect all of that item

nocturne star
#

I do know tooltips are going to recieve a rework eventually but who knows when

vernal niche
copper anchor
#

Bro just got summoned..

desert agate
#

Is it possible to change the ingame ui?

#

i.e. the hud

opaque cape
#

I would assume that involves WebSockets?

vernal niche
#

Websockets is next on the prio lost but it's not in just yet

sly rivet
#

I'm going crazy, what mod allows me and a friend to see each others names or anything like that through walls, like in minecraft? It's not public, not for cheating the system, just for not loosing each other every 10s. I've looked and looked, please tell me I'm oblivious to some mod or setting

gray lance
#

friend-waypoint might be what you're looking for @sly rivet

sly rivet
#

I've seen tons of waypoint, minimap whatever versions, but I wanna be able to see right through things and no cordinates or anything. I'm flabbergasted no one seems to have made something like this in the start

gray lance
#

partypro will eventually see through walls

#

but he hasn't implemented it yet

sly rivet
#

Thats the best one Ive found so far, but it doesnt solve it like I want to, hope to god he develops it till or during coming patch then

inland palm
#

Anyone who knows how to code that wants to join a project? we are working on making a highly runescape inspired server and are looking for more people who want to join the cause 😄 if you want to join or just want more info hit me up!

prisma stone
#

can anyone help me with dedicated server moding , i put the mods in the server mods folder after that i restarted the server but serves shows no mods

north current
safe pendant
#

I've seen many plugins update the user interface in a similar way using an array index, but I just can't figure out how to do it.
I need help with this.
I have shared sample code below (it does not work)

@GroupBox  = Group{....}

    Group #Details {
      LayoutMode: Left;
      Anchor: (Height: 60);
      @GroupBox {  @Text = "Phaze"; @Left=0; }
      @GroupBox  {  @Text = "Block Count"; }
      @GroupBox  {  @Text = "Level"; }
      @GroupBox  {  @Text = "Bank"; }
    }
 ui.set("#Details.Group[0] #Value.Text", "Value 1")
 ui.set("#Details.Group[1] #Value.Text", "Value 2")
midnight burrow
#

Any mods that add anything like the mega torch for minecraft? Took over an old mine and while I’m fine with monsters spawning in the mine its a bit gratuitous how often spiders and skeletons spawn around my new old house 😅

keen willow
#

getServer().getOnlinePlayers().size(); should give you the player count but im not sure if there is an api already which lets you retrieve these kind of infos yet

#

i think there is not official api yet in mc you have those json files storing those info

loud igloo
#

How do I get custom .ui files for CustomUIPage to work? I have the file at Common/UI/Custom/StashUI.ui in my JAR with IncludesAssetPack: true in manifest.json, but the client crashes with 'Could not find document'. The server loads my plugin but doesn't show my asset pack being loaded separately. Is there an additional registration step needed?

keen willow
#

yes these info are static but the playercount for example youd have to get at runtime so its different

stark tulip
keen willow
#

i think the easiest way would be to count the joins and leaves and calculate the player count because there is no official api rn

vernal niche
# north current Maybe allow users to change ports too. 5520

I understand the request but we sadly can't do that. We run a range of different games on the same IP addresses and different games require sometimes very specific offsets between their ports so we have to juggle that for our users.

We may offer dedicated IP addresses at some point though.

blazing cosmos
#

does anyone here know how to make custom block connections?

sly rivet
#

@gray lance"Yeah, I haven’t implemented that yet. Its coming with the next updates." from PartyPro creator

feral quest
#

has anyone done optimization on the Archetype system out of cutiosity, do believe it can be heavily optimized to reduce garbage churn

#

guess they are possibly waiting for project valhalla

spring stump
#

been looking for a land claim plug-in which integrates with some economy plugin to allow land buying and renting ,anyone knows one ?

slim scaffold
#

can any smart folk answer this quick question. I read earlier in this chat something about when a new player joins a server for the first time theres a spike in tps due to that player loading in chunks for the first time (no pregen in the game)

Question: is it possible to have a server with 100+ players without having unbearable lag (considering the servers hardware would be more than enough to support said player count + entities)

opal parrot
turbid rose
#

I guess it depends how your server is supposed to act, we have peaked at 124 online and ran well... 50/50

#

But it was KitPVP split across 4 worlds, with "load balancing"

slim scaffold
#

ahh I see

turbid rose
#

And for us, as everyone is within like a few chunks in a void world (a pvp arena), as soon as we hit ~50 players in a world we'd just freeze

#

And that was even with 0 plugins at one point. We were filling chests with gear to test performance haha

tranquil tendon
#

how can i add components to items when they are crafted? i know there's a crafting event, but i tested it and it didnt go off when it was supposed to. how can i check if the player crafts a certain item, then add components to that item?

slim scaffold
opal parrot
#

Don’t forget that still java server you allaways gonna have better performance with small server in a network than a big server with a lot of people on it

turbid rose
#

I have seen you can preload chunks with a command

slim scaffold
#

really?, my server is going for a faction/towney vibe. Think civ but aimed at more pve with pvp zones

worn kernel
#

luckyperms for hytale?

opal parrot
turbid rose
#

If you're running factions you'd deffo wanna pre-render chunks haha

slim scaffold
#

Thanks guys, genuinely super helpful tips

desert agate
#

I craeted commands but two q's... they all say I dont have permission to use them. second, they dont appear in /help

desert agate
turbid rose
# desert agate I craeted commands but two q's... they all say I dont have permission to use the...

Is this what you mean

public class ExampleCommand extends CommandBase {

    private final String pluginVersion;

    public ExampleCommand(String pluginName, String pluginVersion) {
        super("pluginversion", "Get the core version");
        this.setPermissionGroup(GameMode.Adventure); // Allows the command to be used by anyone, not just OP
        this.pluginVersion = pluginVersion;
    }

    @Override
    protected void executeSync(@Nonnull CommandContext ctx) {
        ctx.sendMessage(Message.raw("hi the plugin version is v" + pluginVersion));
    }
}
opal parrot
desert agate
opal parrot
#

rip Gif usage 🙁

steep lion
#

i wish mod jars could be installed on a subdirectory under the main mods directory

#

that'd make organizing mods by type way more convenient

slim scaffold
#

dumb question but I havent done this for a while so bear with me: everytime the game updates, I must update my server assets correct?

potent edge
#

yes

slim scaffold
#

pain

heady tartan
#

it just updated ha

inner holly
#

anyone have a good Hologram mod ?

#

you managed to find something ?

potent edge
#

I'm currently making a mod and I'll having a really hard time getting the Common, Server asset file structure right and it seemed like no matter what path I wrote in the json the server didn't find it.

rain shard
#

Hi, I tried to use the pre gen command, but I don't know if it works, how can i see progress?

fresh fable
#

Cannot save credentials - no encryption key available

how to fix this on pterodactyl panel?

rain shard
potent edge
rain shard
runic shard
#

does anyone know how i spawn npc and assign player commands to them

heady tartan
#

mod jar file locked whilst server is running... I feel like the game should be able to load and reload the plugin without locking the file, is there a technical reason it cannot?

dense gull
#

it seems a new patch is live

woeful sapphire
#

yep.

inner holly
#

anyone

#

have issues with default world not loading after the patch ?

unreal crest
#

Does anybody have information on async join events?

vernal niche
heady tartan
vernal niche
native roost
#

how do i open a server for me and my pals

mellow tendon
heady tartan
mellow tendon
fickle pecan
#

hytale divorce mod incoming

thorny minnow
#

i've seen it all

stiff spade
#

is just joined is this normal

ruby fulcrum
#

Anyone else getting issues with the Hytale server patch this morning?

fickle pecan
inner holly
#

Hey players already built things on the server. it says <player> was kicked No world available to join after the update. will it be possible to keep the old worlds and just use a seperate one for new world gen ?

ebon grove
icy nacelle
#

.

copper anchor
#

@vernal niche What kind of a server do you suggest people who go through this

fading bolt
#

i'm wondering if it is not a Client side gui stuff. if it is then sadly i don't think we'll be able to change how it work soon.

delicate dagger
#

please stop

copper anchor
#

Now we gotta know both sides

fickle pecan
fading bolt
#

oh pls no...

delicate dagger
#

i just want to be left alone but she refuses to leave me alone idk thats why she going through our old mutual servers and pinging me

woeful sapphire
#

chat is this real

copper anchor
sand anvil
#

Figure it out bro

thorny minnow
#

hytale breakup lore before gta 6

rigid rivet
#

polska

sand anvil
#

Oh no my steak is too juicy and buttery

delicate dagger
#

yeah u dont respect that i just want to be left alone

fading bolt
#

can you go elsewhere to chat about this??? like in dm maybe?

fickle pecan
copper anchor
river stone
#

is the new update for the server up ?

sand anvil
#

Yall need to fuh and it’ll be all good

fading bolt
fair jasper
#

Is there a way to disable buildin mods? The ones inside com.hypixel.hytale.builtin

thorny minnow
#

Someone needs to make a hytale podcast and get these two on

sudden sparrow
#

Can anyone help me out? On my dedicated server, players are getting kicked in groups of 2-5 at a time whenever the playercount hits 20. It happens very frequently. Any ideas on how to fix this?

sand anvil
#

@delicate dagger Ball is in your court

fading bolt
#

without logs it's gonna be difficult i guess?

copper anchor
#

Oh come on @delicate dagger thats just bs, why would you say it first

sand anvil
#

Well there’s two sides to a story

fickle pecan
copper anchor
#

idk his side looking pretty weak mate

sand anvil
#

We need harambes input

fading bolt
#

i mean, at least you could talk about this in #discussion ???

delicate dagger
#

u can love someone but still realise that relationship isn't going to work

copper anchor
fickle pecan
#

this probably a coordinated attack of both them to get someone to give them nitro

fickle pecan
copper anchor
sand anvil
#

You know whenever people want to be bf and gf they forget about the actual friendship that made them compatible because one or both is too worried or focused on the relationship aspect

thorny minnow
#

this is why i stopped doing hytale relationships, too many sweats

copper anchor
fickle pecan
copper anchor
#

Go to his place, dont leave till you make up

fickle pecan
#

if this is the case you probably shouldnt bite anymore

delicate dagger
spring stump
#

been looking for a land claim plug-in which integrates with some economy plugin to allow land buying and renting ,anyone knows one ?

fickle pecan
upbeat condor
#

How do I change existing mechanics? Im new to modding and I understand how to add new stuff but how to for example change so eating food doesnt heal you no more?

copper anchor
sand anvil
#

Ok he still wants to be left alone, you’re making this seem like tomorrow is the end of the world. If he’s true to that word then he is. If not then focus on yourself. Honestly if you both just get a hobby and not focus on if you’re single on Tuesday and not on Wednesday.

woeful sapphire
delicate dagger
#

anyway im leaving the server now hiatis please promise you'll leave me alone forever

sudden sparrow
# copper anchor Look at logs first, find out maybe its a server thing

[12:46:40] Read timeout - notex (50a9dfce-0bc7-429d-8a71-68afd540a5e6)
Connection: /

[12:47:06] Read timeout - spotifycs2 (8100280d-5f1a-49b1-8117-47d04b72ef9c)
Connection: /

[12:47:15] Read timeout - Pineapple (a1cc5578-2a37-923d-9a9a-e2afb1011134)
Connection: /

[12:48:40] Read timeout - kARRTAV (e571c1c2-1af5-4f4e-a807-749abb604e5f)
Connection: /

[12:49:23] Read timeout - Artem (2f0bf8a8-c675-42ca-8a9d-97a128f554a5)
Connection: /

copper anchor
#

Maybe its time for you to give up as well

#

Oh come on harambe...

fickle pecan
sand anvil
copper anchor
#

Seconds are often better

woeful sapphire
#

gg no re

thorny minnow
fickle pecan
#

guys this is the moment you say to hiatus that you'll be her second

copper anchor
copper anchor
#

But he aint wanting you, so whats the point of chasing

fickle pecan
sudden sparrow
inner holly
#

anyone tried running the new update on an exsisting server with a world ?

stiff spade
thorny minnow
sand anvil
#

The best thing to do is just move on, if you keep digging it’ll do nothing. In the future you’ll look back and say damn it ended earlier than I thought.

sudden sparrow
stiff spade
#

im here to see update for server but found drama instead lmao

copper anchor
#

There is a relationship therapist on his way in 5 minutes guys, just wait

sudden sparrow
#

Anyone can help or need more info ?

fickle pecan
#

remember guys, 13+ server, could be a normal highschool relationship

copper anchor
sand anvil
#

Who said you made the rules, it’s not just your relationship.

copper anchor
sand anvil
#

You’re telling me someone that left three times is stable for your relationship and that this shocks you

copper anchor
fickle pecan
#

he dumped you like two times already, an officer would call off the attack at this point

copper anchor
#

Lady... all he's left to do now is shoot you in the leg

sturdy linden
fickle pecan
copper anchor
sand anvil
#

lol my ex of a year was fing other dudes and I still was like yea we love each other, it’s toxic. Get out of the toxicity. Don’t run yourself down because you think you love someone. You can love someone and still realize this is not a good situation mentally and that you need to do other things in life.

copper anchor
#

Well, neither of them are F ing anyone else

sand anvil
#

Being on discord to text the guy that said I love you then blocked you is not a good idea. He is not stable with you communication wise, don’t go down to that level of unsure.

fickle pecan
stiff spade
#

he either is avoidant or just bipolar

copper anchor
void wolf
#

So I hear there’s been a lover’s quarrel?

simple thunder
#

how can I parse a translation key in ui?

stiff spade
dusty venture
void wolf
sand anvil
#

Also being on discord texting other people about your issues won’t do anything. I recommend therapy. Yes, this is no troll. Talk to some friends if you can. It’s early in the am USA wise and you guys seem American so get some sleep and if you can’t get then get food. Nothing will help better with you and him getting back together than becoming healthy mentally

fickle pecan
#

WAIT GUYS we should ask Danta to ask Codex what to do with this situation

fluid coral
#

@spare kraken I think so. just need to revise the prefab list page. but shouldn't take that long. would also release an update today where you can build the prefab yourself. i.e. self build mode.

void wolf
#

I’ve taken time out of dealing with drama at All the Mods to try to sort out some relationship problems here

fickle pecan
#

seems like he has a distaste for you so its unlikely, unfortunately patterns appeared and youre not going to gain anything nice from him anymore

valid jungle
#

did you found out what to put as path ?

copper anchor
#

Toblerone is very good

void wolf
#

My phones nearly flat, ping me with the info and I’ll sort it out

copper anchor
sand anvil
#

@void wolf Charge your phone

void wolf
#

I’m in the middle of a game of darts, I’m checking my phone between throwing but I don’t have a charger

fickle pecan
#

hey uhm guys is there a way to make a keybind registry? reading the docs makes it seems like you can only intercept existing keybind types

delicate dagger
#

please just leave me a lone otherwise we can never move on it makes it so hard please

dusty venture
valid jungle
fickle pecan
copper anchor
upbeat condor
fickle pecan
valid jungle
simple thunder
#

how can I parse a translation key in ui?

dusty venture
#

or you could check interactions in the assets to see how theyre bound

dusty venture
#

use is F i think?

#

99% sure

fickle pecan
#

it is

opal parrot
#

Introduced a server auto-update system, including configuration options and new commands for update management. \o/

woeful sapphire
opal parrot
#

no it's the official one they have improved it

woeful sapphire
#

that's sweet

echo olive
#

Will worlds now be automatically generated in v2? Or do I need to do or edit something to upgrade to v2?

fresh fable
#

[2026/01/24 11:30:02 WARN] [EncryptedAuthCredentialStore] Cannot save credentials - no encryption key available

how to fix this on pterodactyl panel?

mellow tendon
#

lmao, I just logged in after an update and all my chickens turned into desert chickens

cold light
#

The Magma Toad has been adjusted.
Tongue damage has been significantly reduced.
It now alternates between its Tongue attack and a new ability: Headbutt

This is all I care about tbh

fickle pecan
#

dam no custom keybinds really is such a dealbreaker 💔

mellow tendon
sand cliff
#

Does anyone know how to implement custom messages like the ones that appears when you enter a new biome? I mean that ones that apprears on the top of the screen

calm birch
opal parrot
quick goblet
#

Can anybody recommend a hosting service? And - is it worth it yet?

opal parrot
upbeat condor
echo olive
young pumice
quick goblet
mellow tendon
#

sir/m'aam/person, this is a block game discord

blazing cosmos
#

is there anyone who can help me with custom block connections?

sand cliff
#

Does anyone know how to implement custom messages like the ones that appears when you enter a new biome? I mean that ones that apprears on the top of the screen

mellow tendon
#

sounds like they don't want you ocntacting them

mellow tendon
#

not the code event, but the "event" as in the game mechanic

blazing cosmos
#

i have a love hate relationship with the custom block connections, think you could help me with that?

sand cliff
mellow tendon
dry shuttle
#

guys, how i can change group background texture?

blazing cosmos
#

is anyone here able to help with this lol

dry shuttle
meager socket
sand cliff
#

Where i can find this documentation? to see the implementation

#

Im just learning almost from scratch

dry shuttle
meager socket
meager socket
sand cliff
#

Okay, i will try, thanks

meager socket
#

all good

meager socket
proud gyro
#

anyone else got issues with loading server after the update?

blazing cosmos
# meager socket What exactly are you attempting to do with custom connectitons?

i'm trying to replicate the roof connections, so im using the RoofConnectedBlockTemplate as a custom connection rule set instead of the roof ruleset (making a complex roof type that needs more connection types, so i can't be restricted to the hard-coded roof rules set)

i've done everything correctly (from what i can tell by looking at other mods that do custom connections) and my blocks will just not connect at all, unless i use the "hollow" type from RoofConnectedBlockTemplate. none of the other ones will work

#

i could show you the json i have

meager socket
blazing cosmos
#

right now im just trying to get RoofConnectedBlockTemplate to work in the same way the "roof" ruleset does, but as a "custom" ruleset. haven't added anything new

blazing cosmos
#

actually

#

yeah it is too long for the whole thing to be sent here

hoary lynx
#

Could someone help me with some coding for a mount?

I’m making a model of a cute small dragon in blockbench.
I want only that horse-like creature to have no fall damage and jump just a little bit higher than usual. So it looks like it’s gliding. But i’m not sure how to do that.

My friend tried the coding he understands more than i do. But he says that the running speed, jumping height and all other stats are on a different code file than the creature horse file. So he does not know how to change stats without affecting every creature in hytale. XD

rapid fjord
#

im have problem

#

im can start serwer ...

ornate raven
blazing cosmos
# meager socket Ah so its a model issue, if you could show me the Json i can have a look. not s...
  "BlockType": {
    "Material": "Solid",
    "DrawType": "Model",
    "CustomModel": "Blocks/Structures/Roofs/Slope_Test_1.blockymodel",
    "CustomModelTexture": [
      {
        "Texture": "Blocks/Structures/Roofs/Slope_Sheer_Textures/Basalt_Cobble.png",
        "Weight": 1
      }
    ],
    "Group": "Roof",
    "HitboxType": "Stairs",
    "Flags": {},
    "Gathering": {
      "Breaking": {
        "GatherType": "Rocks",
        "ItemId": "Test_BLOCK"
      }
    },
    "VariantRotation": "NESW",
    "BlockParticleSetId": "Stone",
    "ParticleColor": "#615d44",
    "BlockSoundSetId": "Stone",
    "State": {
      "Definitions": {
        "Corner": {
          "CustomModel": "Blocks/Structures/Roofs/Corner_Cube_Roof_Right.blockymodel",
          "HitboxType": "Stairs"
        },
        "Corner_Left": {
          "CustomModel": "Blocks/Structures/Roofs/Corner_Cube_Roof_Left.blockymodel",
          "HitboxType": "Roof_Corner_Left",
          "FlipType": "Orthogonal",
          "Supporting": {
            "Down": [
              {}
            ]
          }
        }
      }
    },
    "ConnectedBlockRuleSet": {
      "Type": "CustomTemplate",
      "TemplateShapeBlockPatterns": {
        "Straight": "Test_BLOCK",
        "Corner": "*Test_BLOCK_State_Definitions_Corner",
        "Corner_Left": "*Test_BLOCK_State_Definitions_Corner_Left"
      },
      "TemplateShapeAssetId": "RoofConnectedBlockTemplate"
    }
  },

can't send the whole thing so

rapid fjord
blazing cosmos
#

i've tried 2 connections in different ways, neither work

rapid fjord
#

idk what happen ... this is no normal im do auth nothing help

devout cipher
#

did they just update the server?

ornate raven
ornate raven
devout cipher
#

i say 'just' havent restarted in like 3 hrs

meager socket
ornate raven
devout cipher
#

Server: 2026.01.17-4b0f30090 → 2026.01.24-6e2d4fc36

inner holly
rapid fjord
#

im restart serwer, serwer is download, im do auth... status serwer runing... online byt nobody cant login

languid relic
#

If someone wants to start modding, what are good resources / tutorials for this?

languid relic
devout cipher
heady crater
#

hello do you know what is SOUT?

ornate raven
#

whats tbf

brittle egret
#

yeah i can't connect to my server either lol

#

it's online no errors either

tall hamlet
#

There was an update just now, may have affected things.

Also, the old server config seems to be a different format than the new one. Just a heads up.

granite crow
#

Is there any way i can make a creature attack the creature a player attacks and add a sit function to make them sit and stay somewhere because i am making a pet and cant get them to work

hoary lynx
ornate raven
#

sure

alpine tusk
#

How do you guys store the data from server related to plugins? Using a database or creating a file etc?

mellow tendon
slate solar
#

what files should i copy to my server so i can play my existing run;-;

mellow tendon
# alpine tusk How do you guys store the data from server related to plugins? Using a database ...

if you're saving data that you want outside access to, or load just a tiny bit on demand, a database is the best option. it is also the fastest way to do any top lists since you can just write a single query that calculates that for you.
if you want a piece of data that is only relevant when player is in the game, you can just make a component on the player or entity that contains the relevant data.

ornate raven
void wolf
mellow tendon
void wolf
#

In that case I feel left out

mellow tendon
#

I am the ruiner of fun, the destroyer of children's smiles

void wolf
#

I’m Toblerone

spare sandal
mellow tendon
mellow tendon
void wolf
#

Love to hear it ❤️

#

I hear it’s more fun to hate us now though

mellow tendon
#

idk, ATM is the only modpack I play since I don't do that very often. it has pretty much every type of mod so I can catch up with what people are playing. I usually am on the plugin side of mc modding

azure violet
#

how can i make dropdowns like in the Creative Mode Quick Settings menu?

mellow tendon
#

however now I'm really stuck here

#

there's SO MUCH to learn anew for hytale

sturdy kiln
void wolf
void wolf
inner holly
#

yes, you managed to find a fix ?

rustic brook
#

Might be not the correct place to ask but anyone knows a hytale server host that has curseforge modding built in?
A friend wants an easier way to update the mods to the server instead of doing it manually every time

fickle pecan
sturdy kiln
mellow tendon
sturdy kiln
rain shard
#

hi how to update server ?

opaque cape
#

Will be performing the first real world test of my Server Jump Mod with Inventory Sync very soon

cobalt dune
# inner holly yes, you managed to find a fix ?

ye, i used to call world functions directly in my entityticksystem, now i use world.execute and it works fine, i think the direct use blocks the world ticksystem or something, i can send examples if u wish

ornate raven
mellow tendon
#

or just use a docker image that just updates for you on boot

upbeat condor
#

is there somewhere list of all components that player has?

fleet basin
#

Hey guys

I have such HUD.ui

$Common = "Common.ui";

Group {
  LayoutMode: Right;
  Anchor: (Top: 5, Height: 32);
  Group #MyPanel {
    LayoutMode: Right;
    Group {
      LayoutMode: CenterMiddle;
      Padding: (Full: 8);
      Anchor: (Top: 0, Left: 0, Width: 120, Height: 80);
      Group #Icon2 {
        Background: "crystal.png";
        Anchor: (Width: 24, Height: 24);
        Padding: (Right: 12);
      }
      Label #MyLabel {
        Text: "Label";
        Style: (FontSize: 12);
        Padding: (Left: 8);
      }
    }
  }
}

And some code in java ui:

    public void setLabel(String label) {
        UICommandBuilder uiCommandBuilder = new UICommandBuilder();
        uiCommandBuilder.set("#MyLabel.TextSpans", Message.raw(label));
        update(false, uiCommandBuilder);
    }

But client disconnects because it can't find '#MyLabel.TextSpans'. I also tries '#MyLabel.Text' and '#MyLabel.Value', everything crashes.

Code originally was taken from github repo provided on hytalemodding

mellow tendon
dry shuttle
mellow tendon
upbeat condor
blazing cosmos
#

does anyone know how to use custom block connections

mellow tendon
upbeat condor
charred apex
#

how do you update servers

upbeat condor
#
  "Type": "Condition",
  "RequiredGameMode": "Adventure",
  "Crouching": false,
  "Next": "Consume_Charge_Food_T1",
  "Failed": "Block_Secondary"
}```
mellow tendon
formal robin
#

When I try to connect with a friend in multiplayer, I get an error saying "Failed to connect to any available address. The host may be offline or behind a strict firewall." Do you know what to do?

mellow tendon
#

you mean the condition interaction?

ornate raven
mellow tendon
#

you cannot check for components there. only for things that show up in the editor. it's very limited.

upbeat condor
hoary lynx
#

Can someone help me with a code so the creature/mount i make has no fall damage and jump a little bit higher than a horse?

proper cape
#

Has anyone managed to add a colored name tag to the player? For example, [ADMIN]*RED Ferres?

void wolf
sleek lynx
#

How can i create a game of thrones map? or castles?

ornate raven
fleet basin
echo ibex
#

search survival serv friendly

ornate raven
faint void
#

Could someone help me, im running the following code

//Check that the block at the location is compatible
private boolean isValidNeighbor(World world, Vector3i location, Vector3i localCoords, CommandBuffer<ChunkStore> buffer) {
//Get the worldChunk by indexing the target chunk from the blocks location
WorldChunk chunk = world.getChunkIfLoaded(ChunkUtil.indexChunkFromBlock(location.x, location.z));

    if(chunk == null) {
        return false;
    }

    //Get a referece to the chunk
    Ref<ChunkStore> chunkRef = chunk.getReference();
    
    //Get the section from the chunk
    ChunkSection section = buffer.getComponent(chunkRef, ChunkSection.getComponentType());

    if(section == null) return false;

section is always null for some reason. I've confirmed that location and localCoords are indeed accurate. I feel like i'm missing something.

ornate raven
polar violet
#

Hi, How can i update server to a new version of Hytale?

sleek lynx
uneven bison
#

guys ı need help for that how we connect mongoDB SQL databes with palyer datas

void wolf
#

Got a random friend request by @gentle nymph

uneven bison
#

ı can not find connection API

fickle pecan
sleek lynx
#

Necmi arkadaş ekler misin

ornate raven
uneven bison
#

@ornate raven @sleek lynx beyler APİ yi bulamıyorum

void wolf
hoary lynx
# ornate raven can you send your assets json?

my friend has that json file, he got stuck and went to bed so i thought i would ask.
maybe you could add it in a horse so my friend could copy the code and change it to match? not sure if that works. Hypixel_BigShy
only thing i have is the blockbench model of the creature it needs to be on.
he used the regular horse to copy coding from and changed it.

lone burrow
#

What is the new "BlockState" class ? it's deprecated, I want to put a property on a block and keep it if we prefab it, is it possible ?
I put this in my block json :

  "BlockType": {
    "DrawType": "Model",
    "Opacity": "Transparent",
    "Group": "@Tech",
    "State": {
      "Id": "prefabspawner",
      "Properties": {
        "mob_id": {
          "Type": "string",
          "Default": ""
        }
      }
    },
steep thicket
#

anybody experimented with registering plugins from the main plugin? like let's say you create a new plugin and wanted it to be registered after the main one has done it's setup - then this plugin can be disabled and enabled based on config

zenith adder
#

how do I update my server?

steep thicket
#

mine seemed to update when I ran it again

void wolf
merry fjord
#

about BlockComponentChunk, what does it represent, it represent components that are tied to blocks, so blocks can be entities too ?

void wolf
#

It’s all good 🤣

zenith adder
faint void
steep thicket
sleek lynx
#

İ have a good idea for creating server. With game of thrones mod and map, i need builders. We have tools for creating map. Who wants work together with me? for a new server.

zenith adder
#

I think I should run ./hytale-downloader -check-update there, but I deleted it

latent turret
#

anyone know what the red error and 4 warnings could mean at the top right of my screen?

steep thicket
merry fjord
reef pulsar
#

Thanks for the answer

boreal frost
#

Hello! could anyone help me figure out what's: Unknown key! Ore_Onyxium_Volcanic

  • Every time I get close to a specific area the world crashes.
    I remember spawning as entities weapons and armors for decoration for de market,
    It starter happening after de last update. Could that by it? is anything I can do to avoid deleting the world?

java.lang.IllegalArgumentException: Unknown key! Ore_Onyxium_Volcanic
at com.hypixel.hytale.server.core.modules.entity.BlockEntitySystems$BlockEntityTrackerSystem.queueUpdatesFor(BlockEntitySystems.java:125)
at com.hypixel.hytale.server.core.modules.entity.BlockEntitySystems$BlockEntityTrackerSystem.tick(BlockEntitySystems.java:113)
at com.hypixel.hytale.component.system.tick.EntityTickingSystem.doTick(EntityTickingSystem.java:92)
at com.hypixel.hytale.component.system.tick.EntityTickingSystem.tick(EntityTickingSystem.java:36)
at com.hypixel.hytale.component.Store.tick(Store.java:1974)
at com.hypixel.hytale.component.system.tick.ArchetypeTickingSystem.tick(ArchetypeTickingSystem.java:36)
at com.hypixel.hytale.component.Store.tickInternal(Store.java:1930)
at com.hypixel.hytale.component.Store.tick(Store.java:1900)
at com.hypixel.hytale.server.core.universe.world.World.tick(World.java:406)
at com.hypixel.hytale.server.core.util.thread.TickingThread.run(TickingThread.java:89)
at java.base/java.lang.Thread.run(Thread.java:1474)

lone burrow
#

BlockState is deprecated, what is the new method to use ?

fickle pecan
quaint charm
#

is it possible to run 2 servers on a single thread without lag?

ornate raven
worthy vessel
#

How do I spawn particles at a location in code?

austere dragon
ornate raven
#

is there command in console to check current maxplayer count?

quaint charm
austere dragon
quaint charm
#

hmm interestinmg

#

wait is it per thread or core?

rain shard
#

hi i heard that i dont need to restart server to load mods

austere dragon
#

You switched from 1 thread to 1 vps core im confused about your quesrions right now

quaint charm
thick forge
#

did anybody figure out how block interactions can be implemented?

faint void
#

also from what I know, yes, EVERY block is an entity.

woeful sapphire
#

hiya guys, i'm trying to show some form of a barrier, currently i'm using fire particles as a placeholder which looks really out of place. id preferably use the effect that the player portal has. is it a block? or also an effect? cant seem to find it

steep thicket
rain shard
#

Where do i add plugins?

untold solstice
#

how to set player's gravity?

idle blaze
#

is there anyway to detect if the player is using weapon movement? (yk holding left click)

merry fjord
versed sleet
#

is there a single permission that i can give to a group that will allow them to use all Builder Tools?

#

rather than giving each perm for each action one by one

uneven bison
#

guy do u have any information about ram comsuming related with players

opaque cape
#

Shubshub's Server Jump was successful, We managed to Sync Inventories between two servers flawlessly

faint void
#

Interesting
So I guess block entites are not loaded one at a time. My neighbor check came back a success while the neighbor had not initialized yet, which should not be possible unless entities are being loaded simultaneously.

dusty pendant
#

anyone know a mod that allows /set air on selections? had one installed but shuffled a few out and now i cant lol

opaque cape
#

This will be huge for having a Main Chill World where you can have economies and stuff, And then a PVP World where you can take your prepared stuff with you

idle blaze
azure violet
#

how can i make dropdowns like in the Creative Mode Quick Settings menu?

warm kettle
#

Quick question guys, if i am hosting a Hytale server, how can i update it to the new version ?

dusty pendant
#

its annoying but you can use the auto downloader

#

i added to my batch but i still have to manually replace the files

woeful sapphire
dusty pendant
#

extract to your server file run the .exe and then grab the server/asset files out

hazy spruce
#

how do i identify a door in code ? i did try as block and entity but nothing

atomic eagle
dusty pendant
#

For Linux:

Prepare the folder:
mkdir hytale-server && cd hytale-server
Get the tool:
wget https://downloader.hytale.com/hytale-downloader.zip
unzip hytale-downloader.zip
chmod +x hytale-downloader-linux-amd64 (Adapt according to your OS)
Start the download:
Run ./hytale-downloader-linux-amd64.
The terminal will ask you to go to oauth.accounts.hytale.com to authorize the download. Once validated, you will get the game archive (e.g., 2026.01.13-xxxx.zip).
Extraction: Unzip the obtained archive. You will then have a Server/ folder and an Assets.zip file.

placid maple
#

is it possible to do local testing and running multiple games at once ? to test multiplayer feature

dusty pendant
#

hytale.game/en/create-server-hytale-guide/ search that for a guide

lofty mirage
#

Does anyone know if there is a persistent server id anywhere? i see there is a hardwareUUID, but that is sometimes null (such as on containerized GSP)

patent estuary
#

Caused by: java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: World default already exists on disk!

What can I do plz

I cant start my server anymore

calm robin
#

Is it possible to see the fixes for the developers somewhere? For example, events that weren't working before, new features.

tepid gorge
#

can someone help me

azure violet
tawdry lion
#

Bed respawning in unloaded chunks has been fixed. Huge

patent estuary
tawdry lion
#

Userdata/game/latest or something like that

tepid gorge
#

@warm kettle i have private msg, thank u

calm robin
#

Is it possible to see the fixes for the developers somewhere? For example, events that weren't working before, new features.

tranquil moat
#

Hi! I’m trying to create a custom workbench with a custom UI in Hytale. I duplicated the Builder’s Workbench UI, but I’m not sure how to hook the UI to custom functionality. Any advice?

slim dragon
#

how to show notification like that when you first time enter to new world "first gate of the echo"

patent estuary
torpid merlin
#

WorldGen V2 has been prepared for public documentation to help modders.
Does anyone know what this means?

dusty venture
split spade
violet vine
slim dragon
fringe ore
#

why?

is it too expensive due to ram

torpid merlin
obsidian mulch
#

Thank you for appreciating the stupid comment, Rasmus 🗣️

calm robin
#

how update server version ?

autumn carbon
#

Hi everyone,

I was wondering if there is any official Hytale API using OAuth2 (or another official authentication method) that allows verifying the authenticity of a Hytale account.

I’m aware of HyAuth, but I’d prefer not to rely on a third-party service and instead use a solution provided directly by Hytale / Hypixel Studios, if one exists.

Is there any official documentation, announcement, or planned API for this?

fringe ore
fringe ore
#

stop

covert shadow
#

They fix high ram usage in servers and crashes like "peer" and "handshake"?

tawdry lion
#

Providers are a scam icl, just rent a vps like Linode

tranquil moat
eager hollow
violet vine
eager hollow
calm robin
#

Is it possible to see the fixes for the developers somewhere? For example, events that weren't working before, new features.

glad juniper
#

Is it possible to make custom intractable blocks that I can make my own so to say, programm their behaviour, set their buttons how I want them?

storm python
#

Do i have to update server files because of the update ?

high aurora
#

I have a server diff at hydiff.rainy.fans ( I can't link sry)

eager hollow
simple thunder
#

is there a way to make groups with layout mode LeftCenterWrap also vertically scrollable?

storm python
eager hollow
storm python
#

I dont know where to go else, theres not really any channels for stuff like that

glad juniper
#

gonna be annyoing to re insert all the custom stuff in there after every update

eager hollow
#

They? If you say They there been 100's of they's today

violet vine
mellow path
#

can anybody link me a good plugin tutorial for a hytale beginner Hypixel_ThisIsFine

spiral marsh
tropic vapor
#

Anyone finally found the way to prevent pickup items from the ground to specific players?

white frost
#

How can i exclude myself from damage in such an interaction?

{
  "Id": "Warrior_Charge_Slam_Explod*",
  "Type": "Explod*",
  "Config": {
    "DamageEntities": true,
    "EntityDamage": 8
  },
  "Effects": {
    "Particles": [
      {
        "SystemId": "Explos_Medium",
        "TargetEntityPart": "Entity"
      }
    ],
    "WorldSoundEventId": "SFX_Goblin_Lobber_*..."
  },
  "RunTime": 0.1,
  "Parent": "Explod*.._Generic_Entities"
}
tropic vapor
#

Maybe InteractivelyPickupItemEvent is actually broken?? never get triggered

safe island
#

Yes also looking for link to official modding/server docs. Anyone have a quick link?

leaden belfry
#

Someone using /localclear plugin ? because it said people without perms can clear their own chat. but in game it said " no perms

calm robin
#

Besides Hytale Server.jar and Hytale Server.aot, is there anything else that needs to be updated?

real pagoda
#

anyone know where to change this settings - Added new armor slot visibility toggles next to equipped armor, accessible directly in the character panel.
Server hosts can disable/enable this feature to enforce rules for PvP/Immersion purposes. ?

uneven bison
#

guys help me how ı could find the hytale API dic.

tropic vapor
tropic vapor
deft rover
#

is there any guide on how to create an server, or where to get the server files?

eager hollow
tropic vapor
spiral marsh
calm robin
#

I just figured it out, assets.zip really needs to be updated; when you log into the server and type /update download, it appears.

mellow path
violet vine
#

I'm not part of the hytale team so can't say sorry, I work on the mc server

spark karma
#

Sameissue here, did you manage to solve it?

mellow path
spark fog
#

Has anyone solved the problem of global memories for players?

copper anchor
#

The lovely feature of having to authenticate every stupid action...

void frost
#

Where exactly do you turn on armor toggle? I can't find it in the config.json

meager hamlet
#

Anyone want to make a factions server together on hytale?

candid saddle
#

im not sure if this is the right place to asl but if i wanted to run a server off my pc to play with my freinds where would i find the hytale server files to do so

uneven bison
#

guys how ı find the api code for hytale

mellow tendon
#

we have to use server jar as dependency for the tme being

uneven bison
#

yeah maven repo

violet vine
void frost
hardy swift
#

Anyone know what setting to change in miners helmet mod to get it to work whilst it is hidden cosmetically. The light only displays if the helmet is displayed

candid saddle
#

would someone be able to assist me in running my own server im running into a few issues and im not exactly sure on how to fix em

void frost
#

Where do you find HytaleServerConfig? the normal config.json is not it, correct?

surreal flame
#

what the proper way to set the Style Property of a Button to no style. because leaving it out applies the inherited one

grave cedar
real pagoda
void frost
#

It lowkey seems like that file is just not there?

real pagoda
#

cuz I heard you can do something to only show armor in combat etc

slate snow
#

Is there a way to disable the ability to hide armor on a server?

broken belfry
#

anyone having issues loggin in a dedicated server after updating it ?

void frost
#

ye it should be all in "UpdateConfig in HytaleServerConfig" according to patch notes, the problem is i dont see that file anywhere

polar plover
#

Anyone know how to update the server?

void frost
marsh terrace
upbeat forum
#

hello everyone, im on a rasp and im trying to setup an hytale server. So my server launched but i have to log my device so : /auth login device but i get an error

broken belfry
# void frost no, it worked flawlessly

All i had to do is replace the old asset and server file right? Cus i did that with the new files but can't login even if it s up running by the console

void frost
broken belfry
azure violet
#

can i set a ui group tag in runtime from a plugin?

dusty pendant
#

use the autodownloader from the hytale server guide and just take the assest/server folder out fo the zip it generates, can set it to update before the server launches

frigid heron
ember pulsar
#

Can anyone help me understand- why does my server autoupdate with every update?

dusty pendant
#

you need to replace the folders out of the zips

warped rampart
#

Does the failed to load ui documentation server kick mean syntax or pathing error or is it something else?

violet vine
dusty pendant
#

guessing you havent done that yet and its checking against the old ones still and downloading again

#

take them out of this: 2026.01.24-6e2d4fc36

#

its more a semi automatic download than auto

frigid heron
violet vine
#

Not a clue tbh, I work on the mc server

rustic sparrow
#

Does anyone knows how to setup a hytale server on linux correctly? I tried starting mine for the first time but got the message "[2026/01/24 14:25:03 WARN] [AssetModule|P] Failed to load manifest for pack at Assets.zip"

tribal crypt
#

الوووو

frigid heron
dusty pendant
tribal crypt
#

في عرب

void frost
tribal crypt
#

في

warped rampart
tribal crypt
violet vine
rustic sparrow
wintry dawn
#

why does c basalt have ore_iron in it

#

cant say the word, this server is too restrictive

modest solstice
#

how do i test hytale plugins from ide

versed ember
tribal crypt
#

في عرب يا شباب

dusty pendant
modest solstice
versed ember
rustic sparrow
#

I tried it before with assets.zip in the server folder but same error

modest solstice
dusty pendant
#

nah both the folders need to be as separate in the folder

rustic sparrow
solemn flame
#

Hey guys, is anyone else experiencing lag when breaking blocks on their server? Especially with the shovel; sometimes it works fine, but other times it won't break the blocks. I have a server with 6 VCPUs and 12GB of RAM and only 5 users, with no mods, just plugins.

gilded valve
#

where can I make a stable Hytale server for me and my friends, NOT LOCAL

copper anchor
#

My local server seems to have stopped working after the update... smh

dusty pendant
rustic sparrow
cosmic dirge
#

Auto-update enabled on server. After restart new version was successfully installed, as confirmed by running "version" and seeing HytaleServer v2026.01.24-6e2d4fc36 (release).

Despite everything supposedly being fine, no-one is able to connect to it. Even after triple-checking that we are all on the most recent update.

Even attempted running the previous client version, and this didn't work either.

Restarted multiple times, issue persists.

Anyone know the cause?

rich plaza
#

How to update hytale server update1 to update2 ?

copper anchor
rich plaza
slate snow
lethal dock
#

best server hosting?

cyan gazelle
rich plaza
lethal dock
#

where do i buy a server

copper anchor
merry geyser
#

Is the start function inside the JavaPlugin run after the server start up?

copper anchor
#

Use the logger and see when it runs

gilded valve
#

Can anyone give me a link to a good serverhost that host hytale

bitter nova
#

how do you setup a server to autoupdate or at least update when restarted?

subtle geyser
#

Hytele setup
If anyone is looking for the best hytele setup you can write to me and it costs 17$. - GUi, shop, npcs, skills, quests and more

dusty pendant
lucid spire
#

how do you change the port of the server?

rustic sparrow
slow fable
#

are there public servers to play on or still none??

dusty pendant
#

"Failed to lead manifest for pack at ../Assets.ip" or was that a typo?

copper anchor
rustic sparrow
rich plaza
rustic sparrow
#

Okay I got it fixed, I had to reinstall the assets.zip. Somehow it wasnt working when I did that a few minutes ago but now it does

dusty pendant
#

if you updated and had mixed versions that'd probably do it

rustic sparrow
#

Yeah maybe

opaque jetty
#

Hi guys, is there a guide for help with creating Config (YamlConfiguration)?
so not .json with CODEC

dusty pendant
#

anyone know a mod that adds /set 0 or /set air

sharp tide
#

Do someone know why am I receiving this error? I just updated

[2026/01/24 14:54:10   WARN]          [AssetModule|P] Failed to load manifest for pack at ..\Assets.zip
java.nio.file.NoSuchFileException: ..\Assets.zip
    at jdk.zipfs/jdk.nio.zipfs.ZipFileSystem.<init>(ZipFileSystem.java:207)
    at jdk.zipfs/jdk.nio.zipfs.ZipFileSystemProvider.getZipFileSystem(ZipFileSystemProvider.java:122)
    at jdk.zipfs/jdk.nio.zipfs.ZipFileSystemProvider.newFileSystem(ZipFileSystemProvider.java:117)
    at java.base/java.nio.file.FileSystems.newFileSystem(FileSystems.java:507)
    at java.base/java.nio.file.FileSystems.newFileSystem(FileSystems.java:380)
    at com.hypixel.hytale.server.core.asset.AssetModule.loadPackManifest(AssetModule.java:219)
    at com.hypixel.hytale.server.core.asset.AssetModule.loadAndRegisterPack(AssetModule.java:279)
    at com.hypixel.hytale.server.core.asset.AssetModule.setup(AssetModule.java:87)
    at com.hypixel.hytale.server.core.plugin.PluginBase.setup0(PluginBase.java:389)
    at com.hypixel.hytale.server.core.plugin.PluginManager.setup(PluginManager.java:757)
    at com.hypixel.hytale.server.core.plugin.PluginManager.setup(PluginManager.java:236)
    at com.hypixel.hytale.server.core.HytaleServer.boot(HytaleServer.java:373)
    at com.hypixel.hytale.server.core.HytaleServer.<init>(HytaleServer.java:331)
    at com.hypixel.hytale.LateMain.lateMain(LateMain.java:54)
    at com.hypixel.hytale.Main.main(Main.java:43)

[2026/01/24 14:54:10   INFO]          [AssetModule|P] Loading packs from directory: mods
[2026/01/24 14:54:10   INFO]           [HytaleServer] Shutdown triggered!!!
[2026/01/24 14:54:10   INFO]           [HytaleServer] Shutting down... 7  'Failed to load any asset packs'
[2026/01/24 14:54:10   INFO]          [PluginManager] Saving plugins config...```
obtuse ginkgo
#

hey question...

with the new update release.. would I have to delete world on my server?
or would I have to download a new server setup?

how can I ensure that the new update will work on my server?

rustic sparrow
rotund willow
void frost
#

i've searched the entire folder structure and i see no sign of "HytaleServerConfig" anywhere, this must be a mistake

wheat crest
#

Hey, Im hosting a server on shockbyte now do I just have to wait for them to update my server automatically or do I have to do something? becuase I cant connect rn

sharp tide
obtuse ginkgo
wheat crest
#

It was so bad and none of my friends could connect to eachother so I just decided to buy one

rustic sparrow
bronze granite
#

I'm looking for someone to write a plugin

wanton abyss
#

how do i make a sever

dusty pendant
#

whats the error?

tropic axle
calm island
#

I keep getting an error when i try to load Hytale. "identity token signature verification failed. the token may have been tampered with." how do i fix this?

wanton abyss
dusty pendant
#

use the /auth and the code

tropic axle
full kindle
#

update doesn't work I get time out when I try connecting to the server, you know what's wrong?

dusty pendant
full kindle
#

yep

dusty pendant
wanton abyss
#

where do i go when i open it

dusty pendant
#

if you're using windows write a batch folder for it to run

sharp tide
#

Do someone know why the new server version is not loading plugins?

calm island
#

I keep getting an error when i try to load Hytale. "identity token signature verification failed. the token may have been tampered with." how do i fix this?

fossil orbit
wanton abyss
#

any one have asever i can join

dusty pendant
obtuse ginkgo
tight herald
#

Anyone getting worldgen when updating server? Wont startup now

[2026/01/24 15:03:29 INFO] [HytaleServer] Getting Hytale Universe ready...
[2026/01/24 15:03:29 INFO] [WorldGenerator] Set prefab-store to: ASSETS
[2026/01/24 15:03:29 INFO] [HytaleServer] Shutdown triggered!!!
[2026/01/24 15:03:29 INFO] [Universe|P] Removing world exceptionally: default
[2026/01/24 15:03:29 INFO] [HytaleServer] Shutting down... 3 'Failed to load world gen!
Error while loading zone "/Server/World/Default/Zones/Oceans" for world generator from file.
Error while loading cave generator.
Error while loading caves for world generator from /Server/World/Default/Zones/Oceans/Cave/Caves.json

sharp tide
fossil orbit
obtuse ginkgo
dusty pendant
obtuse ginkgo
unreal crest
#

final Teleport teleport = Teleport.createForPlayer() - is new way to teleport

stark parcel
#

Hello, I did update my server and my plugin libs/HytaleServer.jar but it still doesn't recognize the imports and everything, any idea of why ?

dusty pendant
fossil orbit
tender tangle
#

Do we know if the launcher has some sort of arguments? Like telling it to launch the release channel and connect to server right away? 🙂

subtle prism
#

Hello guys! Hypixel_HeartEyes

dusty pendant
#

%appdata%\Hytale\install\release\package\game\latest

#

if you want to do it manually

fossil orbit
sage mango
#

Hi everyone, where can I find the newest jar file for hytale?

dusty pendant
#

%appdata%\Hytale\install\release\package\game\latest

warped rampart
#

Is there anyway to reload mods without restarting the server everyone 2 minutes ?

steep pivot
sage mango
dusty pendant
#

yeah take the assets.zip and server

tight herald
obtuse ginkgo
sage mango
deft acorn
#

Hey. Are there any hytale servers that are up yet?

dusty pendant
tight herald
obtuse ginkgo
obtuse ginkgo
fossil orbit
#

I do have server but... still working on it

gritty current
steep pivot
void frost
#

I used update --force and now my server doesn't work, i made one from scratch, authorised it and still doesn't work, "Server authentication unavailable - please try again later"

stark parcel
#

Hello, I did update my server and my plugin libs/HytaleServer.jar but it still doesn't recognize the imports and everything, any idea of why ?

tight herald
#

Anyone getting worldgen critical errors after updating that prevent server boot?

fossil orbit
# obtuse ginkgo awesome, okay

so if you have downloader,
delete assets and old server jar
do:
./hytale-downloader
then unzip 2026.01.24-6e2d4fc36.zip
(change the name for your package)
then launch new jar...

obtuse ginkgo
tight herald
#

ALWAYS TAKE A BACKUP OR SNAPSHOT BEFORE UPDATING. just in case. you never know 😄

fossil orbit
#

overall if possible its best to have new map tho -as the ore generation is completely different

fossil orbit
obtuse ginkgo
tight herald
dusty pendant
rose atlas
#

Does anyone know how to fix white sky on servers?

scenic ocean
#

Hello.. I have a weird problem. I cannot mine any ores. Just ores, no other blocks are broken. Any idea why?

stark parcel
#

Hello, I can't resolve any of hytale's symbol since I updated the server.jar from my plugin, any idea of why ?

void frost
sharp tide
#

Hey, is there some way to make a configurable ui file?

dusty pendant
gritty current
#

Hi, Does anyone know how to get a bed using a position? Since it's bigger, I can't use "equals" for the location.

stark parcel
dusty pendant
neat magnet
#

Is it me, or the server disk usage is much higher then it was in previous update?

neat magnet
#

For me it's 58%

void frost
dusty pendant
#

and you've portforwarded?

blazing cosmos
#

10 hours later i have concluded that "RoofConnectedBlockTemplate" is broken and im so tired that i put the wrong thing in the bug report and so now they're gonna look for CustomRoofConnectedTemplate or something.
attempted to fix the file but theres zero documentation on it so i have absolutely not a single clue what to do to fix it

vocal swan
#

hey, im still trying to figure out how plugin making works, but im stuck on this error for a while now

im trying to follow this tutorial i found from TroubleDev for making custom ui, but when the ui tries to open, it kicks me off the server, because the server cant find the .ui file, anyone knows what could be causing this?
ive added IncludeAssetPack to the manifest, the path used in the code is Pages/page.ui, but is located in the Common/UI/Custom/
cant think of other stuff i checked rn

the specific error that shows up on the client is
Could not find document Pages/page.ui for Custom UI Append command. Selector:

neat magnet
#

Constant 7MB/s usage

tight herald
void frost
# dusty pendant and you've portforwarded?

Okay well, i restarted my PC and now everything works, perhaps when i was launching other .bats maybe one of them got stuck in the background and wronged the authorisation

#

yes ofc i portforwarded, i played on the server since release, this is just after the update

#

Also the armor toggle showed up properly now (still no file settings to configure it tho) alright

sage mango
rustic pollen
#

When you try to fill a watering can, you get kicked from our server since the latest patch.

Can any of you reproduce this? Looks like a bug in Hytale itself to me.

Excerpt from the changelog:
Refilling containers now targets the closest block of water rather than requiring you to aim at a block behind/under water.

I suspect this change is what’s causing it and that a bug slipped in there.

#

i can't share the console output here message will be deleted

tight herald
sage mango
rustic pollen
tight herald
tight herald
rustic pollen
#

weird

sage mango
rustic pollen
#

this happen for me and all other players on our server since we updated to the latest patch

dusty pendant
tight herald
sage mango
calm island
#

I keep getting an error when i try to load Hytale. "identity token signature verification failed. the token may have been tampered with." how do i fix this?

hollow bane
#

How can i change the global spawn point to another world?

copper anchor
#

Hytale server have a repository now right

broken dragon
#

just checking my understanding as Im familar with programming but new to java so its going unfamilar tricks.

public class BlockBreakEventSystem extends EntityEventSystem <EntityStore, BreakBlockEvent>

am i correct in thinking that the <> brackets are just using the class name itself as the variabvle name here?

dusty pendant
spare geode
tulip hamlet
#

Anyone got a plugin for Factions yet?

ornate raven
#

i heard ultimate factions was good

broken dragon
loud igloo
#

Does anyone know If I can fully get rid of this pocket crafting UI for every player? Im making something that nessecarily doesnt require crafting, so id rather for it to not exist

night fossil
#

I keep getting "invalid acess token " errorHypixel_ThisIsFine

orchid harbor
#

Hello guys

ornate raven
#

hello bobo

orchid harbor
#

has anyone found how to hook into the teleporter functionallity? like to connect the player to another server

sterile raft
#

            for (PlayerRef playerRef: Universe.get().getPlayers()) {
                Ref<EntityStore> ref = playerRef.getReference();
                if (ref == null) return;

                Store<EntityStore> store = ref.getStore();
                Player player = store.getComponent(ref,Player.getComponentType());

ref and store are correct when printing out
but I am not getting Player player
what am I doing wrong here?

ornate raven
rustic sparrow
#

Is BetterMap a mod or a server plugin?

tulip hamlet
spare geode
# broken dragon ok so this is just a more effcient way to handle storing them as vairables inste...

No, they are used to define types of variables or parameters dynamically. If you are not super familiar with object oriented programming, it will be difficult to explain and understand generics. If you wanna learn about it, you probably should watch a video or go through baeldung or other websites.

For example I got this class ExampleClass, which has two fields. One field is a String and it will always be a String, no matter how many objects you create. The second one in generic, which allows you to define what kind of type the field should have, when creating the object.

class ExampleClass<T> {
    public String staticTypedField;
    public T genericTypedField;
}

class Scratch {
    public static void main(String[] args) {
        ExampleClass<String> stringExample = new ExampleClass<String>();
        stringExample.staticTypedField = "Always a String!";
        stringExample.genericTypedField = "This time its a String!";

        ExampleClass<Integer> integerExample = new ExampleClass<Integer>();
        integerExample.staticTypedField = "Still a String!";
        // Now I have to enter a Interger!
        integerExample.genericTypedField = 52;
    }
}
rustic sparrow
#

I see, thanks

fading light
#

whats the best mod for a side bar ui menu i can use as a reference for my mod

orchid harbor
keen vapor
#

Hey, I am tryna setup my first plugin and maven cant find the Hytale API, am I missing something

vapid yacht
#

I've already made one :D

ornate raven
crude terrace
#

Hii, for update our server, we need to change what ? Just the Server file or Server file and Assets.zip ?

ornate raven
#

both

keen vapor
crude terrace
violet vine
keen vapor
#

I cloned the example plugin git repo

violet vine
#

Are you using intelliJ?

keen vapor
#

yea

fluid talon
#

Any mods for controller support

violet vine
#

go to the pom.xml file -> right click -> maven -> click "Download sources and Documentation" wait for that to finish then do the same but instead of clicking Download click "Sync Project", but gotta wait for the download to finish first it might take a couple of mins before you can sync

dusty pendant
fluid talon
#

Oh okay im look into it see what i can find thanks

crude terrace
#

is it normal?

[0.010s][warning][aot] The AOT cache was created by a different version or build of HotSpot
[0.010s][error  ][aot] An error has occurred while processing the AOT cache. Run with -Xlog:aot for details.
[0.010s][error  ][aot] Loading static archive failed.
[0.010s][error  ][aot] Unable to map shared spaces```
dusty pendant
#

anyone know a good custom command plugin want to set /sun to shorten /weather set Zone1_Sunny etc

keen vapor
violet vine
#

Try restarting intelliJ its a bit temperamental when it comes to maven, if that doesn't work can you send me the full error?

keen vapor
violet vine
#

try mvn clean install -U

tacit grail
#

did somebody find a hytale function that gets the location that a player clicks on

keen vapor
hollow bane
#

How can i change the global spawn point to another world?

crude terrace
#

OHHH WTF, when we update the server and the assets, we lost our universe???

median haven
#

can i ask here for world gen v2 help or nah

fossil orbit
spare geode
#

Can somebody tell me if that is possible at all in a plugin. I've got a interaction and I wanna dynamically, based on persistent data in the user, execute another interaction that I can fetch with the following:

Interaction interaction  = Interaction.getInteractionOrUnknown("***Potion_Flask_InteractionVars_Effect_Interactions_0_Amount");

I have the interaction object, but don't know how to execute it or if its even possible

violet vine
crude terrace
#

i just put the new Server and Assets

dense forge
#

Hello, is the server configuration for the armor visibility toggle available? I dont find it

merry brook
#

how can you disable the armor slot visibility toggle for a server, where do you find it, can someone help?

crude terrace
#

nothing else

edgy furnace
#

Anyone seen this before? When launching my Hytale server I get: “World main already exists on disk!”

dense forge
crude terrace
#

i dont understand, i lost all my advance..

#

and the friend advance too

thorny dew
crude terrace
#

anyone can explain too me why when i changed the Server and Assets.zip, i lost my advance plsss ??

tender tangle
thorny dew
#

Ah - they edited that then, it was initially supposed to be on central

thorny moat
#

anyone know what we need to add on your config here to make the server auto check updates with the new arguments on patch 2? }, "Update": {} }

crude terrace
#

yes, all the folder Server, why?

crude terrace
#

its the world, right?

west elk
keen vapor
violet vine
#

Ahhh that would do it 😂 glad you found it!

crude terrace
dusty pendant
#

anyone know a custom command mod so i can shorten commands in game

west elk
rustic pollen
#

What i the permission for the hytale teleport command "/tp NAME"

#

i tried this
hytale.teleport
hytale.teleport.command
hytale.teleport.command.tp
but don't work 😄

latent turret
#

would a crates plugin (selling keys) be against tos?

crude terrace
west elk
dense forge
dusty pendant
#

yeah im after making like /sun and /day etc

crude terrace
#

FKC

#

HADHAHDAHDAH ITS MB, i put the old universe in the another folder...

#

not the real one i have rn

timber trellis
#

Hi, did anyone experiment with addInstruction velocity on projectiles ? I have a working systeme but not on projectiles

rustic pollen
#

hytale.teleport.command.tp
hytale.teleport.command
hytale.teleport

don't work, too 😄

viscid wren
#

If anyone is having issues with figuring out how to add the new Maven artifact to their Gradle project, here's a some copy and paste for your build.gradle.kts file. If you're using a Groovy build.gradle file, you'll have to adapt this a bit 😅

repositories {
    maven {
        name = "Hytale"
        url = uri("https://maven.hytale.com/release")
    }
    mavenCentral()
}

dependencies {
    compileOnly("com.hypixel.hytale:Server:2026.01.24-6e2d4fc36")
}
crude terrace
#

LETS GOOO

tidal thunder
#

Hello, I would like to know if it is possible to add tabs next to the “Inventory”, “Map”, and “Creative Tools” buttons from the asset editor or via a plugin, so that I can add new menus.

crude terrace
#

DONE TYY GUYS !!

lethal wagon
#

how i can play co-op hytale free with my friends

west elk
lethal wagon
#

ye, i buy the game=)))

jovial ravine
#

how do i join other servers? is there no like server list and have to connect direct?

real pagoda
#

@void frost hey let me know if you find it ty

lethal wagon
#

its not working

west elk
jovial ravine
rare wren
#

are servers down i cant connect right now to anything

hollow bane
#

How can i change the global spawn point to another world?

mellow tendon
# lethal wagon its not working

then your internet service provider is crap. the join codes work based on upnp feature, which only works when you have actual public ip available

west elk
bleak finch
#

Hey guys, does anyone know if it is possible to change the Block model with another way than BlockStates?
I want to add my custom cables with Push/Pull visualization, but i would need 4096 block states with all directions and configurations. There surely must be a better way?
Maybe someone knows if we can display multiple models at once so that i can overlay them in way?
Thanks in advance!

tight herald
#

Any idea how to refresh the shop in the Forgotten Temple? My merchant has been stuck at refreshing 51 days for many days now

hollow bane
tender tangle
#

sooo, how do we get the "Download Source" work?

fading light
#

for UI alignment what types are there?

void frost
uneven bison
#
  1. How to retrieve a player's display name?
    Surprisingly, I cannot find a direct .getName() or .getDisplayName() method in either the Player or PlayerRef classes. While I can currently use UUIDs as a workaround, it is not ideal for the UI and logging.

Is the player name stored within a specific component (e.g., NamePlateComponent)?

Or should I be looking into a global service like UserCache to map UUIDs to names?

  1. Difficulty using setGameMode with ComponentAccessor
    I'm trying to switch players to "Adventure Mode," but the implementation of setGameMode is giving me trouble. The method appears to be static and requires a ComponentAccessor parameter.

Where am I supposed to obtain/instantiate a valid ComponentAccessor for a specific player instance?

Is there a more standard way to modify player states without manually passing accessors?

Any code snippets or documentation pointers would be greatly appreciated!

mellow tendon
tender tangle
#

yes

mellow tendon
mellow tendon
#

oh, it was updated

west elk
tender tangle
#

Still looking for "Download Sources" to work 😄

sand anvil
#

Anyone up to make a mod to lock chests to only certain players?

violet vine
upper wyvern
tender tangle
normal rivet
#

I was suddenly kicked out of the game while around the tower has anyone else experienced this problem?

urban onyx
#

Hi everyone!
Since today's update, my server on my personal machine isn't working.
However, I duplicated my server in the saves and when I launch it from “my worlds,” it works.

Technically, I could ignore it and continue running the server until I host it on a dedicated machine, but I want to understand what's going on.
So here are the end of log files if anyone wants to help me figure it out. (tell me if you need all the log file

upbeat void
urban onyx
#

||[2026/01/24 16:18:06 INFO] [HytaleServer] Getting Hytale Universe ready... [2026/01/24 16:18:06 INFO] [HytaleServer] Universe ready! [2026/01/24 16:18:06 SEVERE] [SERR] java.lang.IllegalArgumentException: EventRegistry is shutdown! [2026/01/24 16:18:06 SEVERE] [SERR] at com.hypixel.hytale.event.SyncEventBusRegistry.dispatchFor(SyncEventBusRegistry.java:88) [2026/01/24 16:18:06 SEVERE] [SERR] at com.hypixel.hytale.event.EventBus.dispatchFor(EventBus.java:272) [2026/01/24 16:18:06 SEVERE] [SERR] at com.hypixel.hytale.event.IEventBus.dispatch(IEventBus.java:21) [2026/01/24 16:18:06 SEVERE] [SERR] at com.hypixel.hytale.server.core.HytaleServer.boot(HytaleServer.java:424) [2026/01/24 16:18:06 SEVERE] [SERR] at com.hypixel.hytale.server.core.HytaleServer.<init>(HytaleServer.java:303) [2026/01/24 16:18:06 SEVERE] [SERR] at com.hypixel.hytale.LateMain.lateMain(LateMain.java:54) [2026/01/24 16:18:06 SEVERE] [SERR] at com.hypixel.hytale.Main.main(Main.java:43) [2026/01/24 16:18:06 SEVERE] [Hytale] Exception in thread: Thread[#3,main,5,main]||

upper wyvern
urban onyx
#

`||java.lang.RuntimeException: Failed to create HytaleServer
at com.hypixel.hytale.LateMain.lateMain(LateMain.java:58)
at com.hypixel.hytale.Main.main(Main.java:43)
Caused by: java.lang.IllegalArgumentException: EventRegistry is shutdown!
at com.hypixel.hytale.event.SyncEventBusRegistry.dispatchFor(SyncEventBusRegistry.java:88)
at com.hypixel.hytale.event.EventBus.dispatchFor(EventBus.java:272)
at com.hypixel.hytale.event.IEventBus.dispatch(IEventBus.java:21)
at com.hypixel.hytale.server.core.HytaleServer.boot(HytaleServer.java:424)
at com.hypixel.hytale.server.core.HytaleServer.<init>(HytaleServer.java:303)
at com.hypixel.hytale.LateMain.lateMain(LateMain.java:54)
... 1 more

[2026/01/24 16:18:06 INFO] [SessionServiceClient] Game session terminated
[2026/01/24 16:18:06 INFO] [HytaleServer] Saving config...
[2026/01/24 16:18:06 INFO] [HytaleServer] Shutdown completed!||`
Sorry btw lol

upbeat void
#

bro dont spam xd

upper wyvern
#

Use pastebin or hastebin or something similar

upbeat void
#

just use pastebin or smth, and paste full log

mellow tendon
#

we can do links?

upbeat void
upper wyvern
#

Tht's what I was wondering, if not, just share the host + code 😂

tender tangle
sand anvil
#

@upper wyvern lmk if you work on that project $$

upper wyvern
urban onyx
#

Thanks !
Sorry all for that Hypixel_Crying

urban onyx
upper wyvern
sand anvil
faint void
#

Anyone know how to wait a frame?

sand anvil
urban onyx
merry geyser
#

How do you get Player from PlayerRef

rich gate
upper wyvern
#
@Override
protected void execute(@Nonnull CommandContext commandContext, @Nonnull Store<EntityStore> store, 
    @Nonnull Ref<EntityStore> ref, @Nonnull PlayerRef playerRef, @Nonnull World world) {
  Player player = store.getComponent(ref, Player.getComponentType());
  UUIDComponent component = store.getComponent(ref, UUIDComponent.getComponentType());
  TransformComponent transform = store.getComponent(ref, TransformComponent.getComponentType());
  player.sendMessage(Message.raw("UUIDComponent : " + component.getUuid()));
  player.sendMessage(Message.raw("Transform : " + transform.getPosition()));
}
real pagoda
urban onyx
#

ngl the modding is pretty chill on hytale, i have less issue than on any other game

void frost
violet vine
merry geyser
sweet bronze
#

Do you know of a way to determine which key to configure for the user? For example, I would like to display the Ability 1 key in a CustomHUD.

upper wyvern
tender tangle
#

is maven resolves the sources.jar differently than gradle?

west elk
# merry geyser How do you get Player from PlayerRef
  1. find out which world the player is on
var world = Universe.get().getWorld(playerRef.getWorldUuid());
  1. on the world thread, get the entity ref
world.execute(() -> {
  var ref = world.getEntityStore().getRefFromUUID(playerRef.getUuid());
  1. use that that entities Player component from the entity store
  var player = world.getEntityStore().getStore().getComponent(ref, Player.getComponentType());
``` ```java
});
faint void
devout bluff
#

Can somebody help, searched the whole thread...

How do i increase Damage with the DamageEventSystem

@Override
    public void handle(int index, ArchetypeChunk<EntityStore> archetypeChunk,  Store<EntityStore> store,  CommandBuffer<EntityStore> commandBuffer, Damage damage)
    {
        if (damage.isCancelled() || damage.getAmount() <= 0.0f) return;

        Damage.Source src = damage.getSource();
        if (!(src instanceof Damage.EntitySource entitySource)) return;

        Ref<EntityStore> attackerRef = entitySource.getRef();
        if (attackerRef == null || !attackerRef.isValid()) return;

        damage.setAmount(damage.getAmount() * MULTIPLIER);
    }

This doesn't work. Do i have to cancel things or so? If yes how?

gaunt forge
#

anyone know about block change events? specifically i want to detect when blocks are placed and broken. more specifically i want to only do this for custom blocks from my plugin but i imagine that just comes down to filtering using the block tags.

livid geode
#

Anyone know what this error in the console means?

24/01 16:45:04 [Error] [2026/01/24 16:45:04 SEVERE] [World|default] Took too long to run pre-load process hook for chunk: 33ms 651us 369ns > TICK_STEP, Has GC Run: true, WorldChunk{x=37, z=22, flags=00000000000000000000000000000100}, Hook: com.hypixel.hytale.builtin.blocktick.BlockTickPlugin$$Lambda/0x000000003893f860@265c0752
24/01 16:45:05 [Error] [2026/01/24 16:45:05 SEVERE] [World|default] Took too long to run pre-load process hook for chunk: 80ms 433us 352ns > TICK_STEP, WorldChunk{x=29, z=27, flags=00000000000000000000000000000100}, Hook: com.hypixel.hytale.builtin.fluid.FluidPlugin$$Lambda/0x0000000038ac4400@509d999c
24/01 16:45:05 [Error] [2026/01/24 16:45:05 SEVERE] [World|default] Took too long to run pre-load process hook for chunk: 43ms 127us 387ns > TICK_STEP, WorldChunk{x=11, z=28, flags=00000000000000000000000000000100}, Hook: com.hypixel.hytale.builtin.blocktick.BlockTickPlugin$$Lambda/0x000000003893f860@265c0752
24/01 16:45:06 [Error] [2026/01/24 16:45:06 SEVERE] [World|default] Took too long to run pre-load process hook for chunk: 40ms 998us 551ns > TICK_STEP, Has GC Run: true, WorldChunk{x=41, z=10, flags=00000000000000000000000000000100}, Hook: com.hypixel.hytale.builtin.blocktick.BlockTickPlugin$$Lambda/0x000000003893f860@265c0752
24/01 16:45:06 [Error] [2026/01/24 16:45:06 SEVERE] [World|default] Took too long to run pre-load process hook for chunk: 906ms 757us 190ns > TICK_STEP, Has GC Run: true, WorldChunk{x=17, z=29, flags=00000000000000000000000000000100}, Hook: com.hypixel.hytale.builtin.fluid.FluidPlugin$$Lambda/0x0000000038ac4400@509d999c
24/01 16:45:09 [Error] [2026/01/24 16:45:09 SEVERE] [World|default] Took too long to run pre-load process hook for chunk: 146ms 249us 882ns > TICK_STEP, Has GC Run: true, WorldChunk{x=17, z=30, flags=00000000000000000000000000000100}, Hook: com.hypixel.hytale.builtin.fluid.FluidPlugin$$Lambda/0x0000000038ac4400@509d999c```
livid geode
#

Seems to happen any time a player moves

tawdry lion
#

It's just throwing chunk loading and rendering errors which will dissipate as Hytale gets more and more optimized

thorny moat
safe pendant
#

How do I retrieve data from the TextField in the UI?

wide notch
#

Hello,
Just for know, do you thing hytale team would fix the corruption issue if an component no longer exist in files (ex if i remove my mods) ? Cause i hesitate to store my data with component due to that issue.
(In theory i have no reason to remove my mods)

thorny dew
#

So hypixel has a self-hosted maven now for the server jar, anyone know if they provide sources anywhere?

upper wyvern
#

not from what I could tell

tender tangle
#

looks like the -sources.jar is not there,
nor -javadoc.jar

#

one day maybe

west elk
copper anchor
keen vapor
#

I get this log in the log file Failed to load plugin C:\Users\#\AppData\Roaming\Hytale\UserData\Mods\MyMod-0.1.jar. Failed to find main class! I have a mymod class and a command

tender tangle
west elk
brisk surge
#

Did someone overwrite standard Hytale items using a mod?

thorny dew
livid geode
#

Is there a console command to use for a server announcement, e.g "Server will restart in 5 minutes"?

tender tangle
west elk
#

Source will not be published until the legal framework is figured out

restive brook
#

Hi there, is it possible to play with my son in LAN? I see the world (allow other player to join is on, no password is set), but failed to connect to server (an unexpected error occured) 🙁 I am playing on pc (windows) my son on steam deck

west elk
#

within a couple months

thorny dew
tender tangle
inland palm
#

Anyone who knows how to code that wants to join a project? we are working on making a highly runescape inspired server and are looking for more people who want to join the cause 😄 if you want to join or just want more info hit me up!

livid geode
#

or even a list of console commands you can use on hytale servers?

keen vapor
# thorny dew I mean, gradle can't find source jars from their repository, so

He told me to Download Sources and Documentation then resync and in the xml : ``` <repositories>
<!-- Hytale release repository -->
<repository>
<id>hytale-release</id>
<url>https://maven.hytale.com/release</url>
</repository>
<!-- Hytale pre-release repository -->
<repository>
<id>hytale-pre-release</id>
<url>https://maven.hytale.com/pre-release</url>
</repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>com.hypixel.hytale</groupId>
        <artifactId>Server</artifactId>
        <!-- Replace with latest version, we provide jars for the last five releases -->
        <version>2026.01.22-6f8bdbdc4</version>
    </dependency>
</dependencies>``` that worked for me
opal parrot
livid geode
#

Ahh so no console command to announce restart or things then

thorny dew
west elk
#

We commit to releasing the server source code as soon as we are legally able to. Expect this within 1-2 months after release.

upper wyvern
#

There is no java based docs aside from community docs, that's the jist if it so far

tender tangle
#

Just to clarify Sakito, we are not blocked on using the compiled jar and seeing the .class auto-decompiled.

west elk
#

In the mean time, you can decompile it yourself to create the -sources.jar

livid geode
#

how can I stop others from using commands like /op?

fresh fable
#

How can I apply opacity to an image in Ui?

upper wyvern
latent turret
#

is there an event I can use or how would I detect if a player receives an item in their inventory when crafting it?

west elk
livid geode
west elk
livid geode
#

ahh its not in config.json so i presume it is off

west elk
#

no, config.json is something different

#

it's where you run java to start the server

livid geode
west elk
fresh fable
#

How can I apply opacity to an image in Ui?

dusty venture
#

guys how should I go about loading custom json data? Not any ingame assets but my own type

latent turret
#

is there an event I can use or how would I detect if a player receives an item in their inventory when crafting it?

dusty venture
upper wyvern
#

CraftRecipeEvent

latent turret
#

tysm