#server-plugins-read-only

1 messages · Page 16 of 1

leaden zephyr
#

It will be fine, certainly.

scarlet spoke
#

You can either use memory management as cache or directly use redis

remote garnet
#

I can relate haha

main moon
#

There are even people using json as data storage

viscid wren
viscid wren
scarlet spoke
leaden zephyr
#

Well i will integrate sqlite now in my framework, thanks for the recommendation @viscid wren

scarlet spoke
#

sqlite is the simplest for medium server plugins, which doesn't interact with multiple tasks.
Put it on your server and run the server with the plugin, you should be fine

viscid wren
magic stirrup
#

SQLite for mods yea, for plugins idk. AFAIK sqlite locks the file everytime a statement is executed.. So good luck with multi-user stuff happening. There are some ways to prevent that, but in my mind its better to choose a database-server for multi-user apps/software

scarlet spoke
prisma agate
#

SQLite is fine for 99% of use cases, if u r not a huge company with millions of users

leaden zephyr
#

I'm pretty sure sqlite will be fine no matter what size of plugin and servers, if you use it properly.

viscid wren
prisma agate
scarlet spoke
magic stirrup
#

I only used SQLite for my flutter apps, never tried it in mutli-user environment 😄

prisma agate
#

Maybe only a huge server like hypixel that has 10-100k players

scarlet spoke
#

Redis <=> MongoDB for large servers is best option for cacheable stuff.

viscid wren
prisma agate
#

I mean it's fine but there r simpler and potentially faster solutions

leaden zephyr
#

I didn't want to start a "this vs. that" discussion here. Ultimately, it will work if implemented correctly.

main moon
#

You will always have technical debt

scarlet spoke
main moon
magic stirrup
#

Since there's no proxy like bungee or velocity, for handling across-server stuff, redis pub-sub will be the way to go for me anyway

prisma agate
main moon
remote garnet
scarlet spoke
prisma agate
#

Ye, it's only a single connection

magic stirrup
prisma agate
viscid wren
main moon
#

Lets not forget there are literally Minecraft server (Which are single threaded) running essentials with 1k people online

prisma agate
magic stirrup
# main moon Yeah was typo

But that still doesn't solve the classic ban-issue 😄 User A on Server A gets banned by User B on Server B. There's no builtin way to communicate across servers to let all servers know they should kick User A. Any for that my choice would be anything "pub-sub"ish

viscid wren
#

I've never even done multi threaded code really

I'm a typescript developer 😭

main moon
main moon
leaden zephyr
#

It would be interesting to know which database system the official Hypixel server uses. Hypixel_Think

main moon
#

Mongodb iirc

prisma agate
main moon
#

Probably many

true socket
viscid wren
prisma agate
#

I think like 200-400 is around the maximum of a single server

true socket
prisma agate
#

Wynncraft has a 50 limit

main moon
#

I mean Wynncraft is really something different

magic stirrup
true socket
#

it really doesn’t need to be this complicated, use SQLite if you can’t setup a database service, postgres if you can, mysql or mongo if you’re already used to them

leaden zephyr
prisma agate
#

SQLite is simplest, just always use that

main moon
#

Just dont forget to index your databases

#

And do not forget to backup your sqllite / any database

prisma agate
viscid wren
storm glen
#

If you don't index - You're gonna have a bad time.

true socket
leaden zephyr
#

Intern after deleting the production database:
It's fine, somebody has a backup. Hypixel_ThisIsFine
nobody has one Hypixel_LMAO

viscid wren
#

Primary keys automatically create an index right

prisma agate
prisma agate
#

Just use SQLite, no need for postgresql

storm glen
#

Its too cheap to buy a backup NAS to have the excuse of not doing backups.

leaden zephyr
viscid wren
# hushed tapir Yes.

That's what I figured, I remember creating secondary indexes a few times in dynamodb, but never had to really do it in SQL, probably should figure that out

main moon
#

But we are literally talking about milliseconds, maybe even nanoseconds

viscid wren
true socket
main moon
#

Yeah but remember, when you want 2 instances with the same data there will be no way since you cannot access the sqllite data remotely

prisma agate
main moon
#

Or lets say a scoreboard in another server or display them on the website

leaden zephyr
prisma agate
main moon
#

There lots of battle tested solutions

true socket
true socket
prisma agate
prisma agate
main moon
#

Lets store everthing in memory and never turn off the server

prisma agate
#

Literally 5m to setup

true socket
hidden rain
#

Anyone here in development servers (doesn't matter where the focus lies)? I have experience in both C# and Java and completed a Bachelors in the IT so I'm sure i'll be of some help and I'm just really excited to make something for this beautifull game.

true socket
hushed tapir
#

Very rarely is SQLite a great database to go with, it is most often used for small, low bandwidth operations, like app storage for mobile apps. (That's why its the most used database in the world)

PostgreSQL is often a much better database for various reasons, both in the feature set, but also in terms of stability and backups.

Underpowering the database is not a good compromise for simplicity. Doesn't have to be PostgreSQL.

true socket
#

@prisma agate if you think it’s always better to use SQLite then you simply havnt had to deal with the scale where SQLite is a pain

prisma agate
leaden zephyr
#

What have i done

main moon
#

fr

hushed tapir
#

Database discussion is a hot topic 😎

prisma agate
upbeat walrus
#

excel as db

true socket
prisma agate
#

But in that case psql might not be a fit, and u might need something more specialized like what discord did

leaden zephyr
main moon
true socket
leaden zephyr
#

Excel as database is the winner Hypixel_LMAO

hidden rain
#

nah man .txt files

hushed tapir
viscid wren
#

Make an API request to download your google sheets from google drive everytime you want to update a row in your database

prisma agate
leaden zephyr
prisma agate
#

If u do, sure use psql, otherwise use SQLite

scarlet spoke
#

I love those database conversation every time in any game where you can host your own server. x)
All type of database will have their use case. Even simple config files can be used for storing data.

It's just a question, is it safe to use for this case and what if my server increases player count from 10 to 1000 in 2 weeks.

true socket
prisma agate
hushed tapir
true socket
main moon
#

I would literally just google benchmark sqllite vs [Database] at this point, and find valuable writeups

#

And go with the best for your usecase

prisma agate
leaden zephyr
#

"Several people are typing"
Man this is the heat i want Hypixel_HeartEyes

true socket
rough viper
#

I dont think i have ever seen a dev chat talk about databases, but i love it.^
But the best database really depends, for example is it distrobuted? does it need ACID?
Is performance what you need? All things to think about

scarlet spoke
magic stirrup
main moon
#

The next talk will be about, should we use an ORM or write plain queries

true socket
main moon
hushed tapir
prisma agate
true socket
storm glen
#

My favorite part of databases is the analytics. Hypixel_HeartEyes

sterile dove
#

databases depend on preference and use cases,

#

and orm's all the way

rough viper
leaden zephyr
#

Both are excellent databases.

scarlet spoke
sterile dove
#

:D

true socket
sterile dove
#

and u should always have redis with ur db!

prisma agate
leaden zephyr
#

Just do it like me, i support multiple database systems for my plugins and the user can decide which one fits better Hypixel_LMAO
Zero competition and everyone is happy

sterile dove
true socket
storm glen
#

Design to your current problems, dont design for tomorrow. Scaling is easy to do when you're successful.

prisma agate
true socket
#

hell no im not talking about db sharding none of us need that

sterile dove
true socket
leaden zephyr
#

Do you guys have beef now

prisma agate
sterile dove
true socket
#

ORMs will make no practical difference if you like ORMs use one otherwise don’t, at runtime it doesn’t really make a difference

prisma agate
#

I use C

leaden zephyr
storm glen
#

Our ancestors are all the same. Bits and bytes.

prisma agate
#

And currently writing a compiler, to replace C, bcz C has some flaws

true socket
leaden zephyr
#

nerds

prisma agate
prisma agate
true socket
leaden zephyr
true socket
#

what do u guys think of jetbrains IDEs

prisma agate
#

Decent I guess

leaden zephyr
sterile dove
main moon
#

I switched to VSCode as much as possible

magic stirrup
true socket
#

I’ve used IDEA for many years now but I want to get rid of it I’ve had to deal with a bit too many bugs

prisma agate
#

Jetbrains r way better than vsc*de

leaden zephyr
# true socket what do u guys think of jetbrains IDEs

Intellij is great for java and a recommendation for everyone working with it but nowadays it does not matter that much.
I personally use zed for all of my projects, once setup correctly it works fine. But vscode, eclipse all of em are fine tbh.

true socket
#

idk if I should swap to eclipse for vscode for java

prisma agate
#

There is zed for a not dogwater vscode

main moon
#

I actually use both Vscode and Jetbrains

true socket
leaden zephyr
prisma agate
storm glen
#

Im lucky. Im a teacher so I have IntelliJ Ultimate for free

main moon
#

Btw for the VSCode people here that write C#, Jetbrains has a public preview of Resharper extension for VSCode. just google ReSharper for Visual Studio Code

leaden zephyr
#

neovim is great, zed has a vim mode too so i switched. (like every major editor has)

true socket
prisma agate
main moon
#

Can we talk about how jetbrain toolbox still has no "Open with.." in windows

prisma agate
#

But I really like control over the UI that nvim gives

viscid wren
#

Python hytale plugins when

scarlet spoke
leaden zephyr
#

Tip for any jetbrains ide user:
Use the new "Islands Dark" beta theme, it's really stunning.

storm glen
prisma agate
viscid wren
true socket
#

is eclipse good

scarlet spoke
main moon
true socket
prisma agate
viscid wren
main moon
#

Eclipse is deprecated asaik

hushed tapir
# true socket why not?

It's quite old and doesn't come with the same features that IntelliJ does, and since IntelliJ Community is free - I'd just use that.

viscid wren
#

I remember trying to use eclipse to code in like 2013 😭

sterile dove
#

eclipse didnt feel as bloated as intellij

hushed tapir
#

That's true

prisma agate
#

It's still bloated tho

leaden zephyr
#

The real gang used netbeans back there. It was really nice.

true socket
sterile dove
prisma agate
#

Zed is fairly lightweight and has the same LSP as eclipse for java

main moon
#

Jetbrains need to fix their WSL integration

#

And themes

true socket
sterile dove
#

default theme = best, never breaks:)

leaden zephyr
#

If you a beginner in java, just use intellij idea, if you think its bloated: Uninstall plugins

sterile dove
#

actually im lying i have eclipse dark theme on intellij XD

leaden zephyr
prisma agate
#

IntelliJ - features but bloated and heavy
Zed - less features but less bloated
Nvim - no bloat, same features as eclipse/zed, and super customizable

main moon
#

Intellij AI Assistant is also a joke

true socket
main moon
#

100 (Excl vat) a year for 10 credits a month

true socket
#

yeah im gonna migrate away from jetbrains stuff even though I have the all products pack for free

prisma agate
main moon
#

Jetbrains should finish fleet, even though its a macbook ipad move

true socket
#

I think regular vscode is a good option, it’s quite light and soooo many people use it it has plugins for everything

sterile dove
prisma agate
#

Fleet is meh, I think ppl who want fleet just use zed

sterile dove
#

literally unusable

leaden zephyr
rough viper
#

I like vscode when doing python, way better than pycharm, but for Java, intellj is the only way

main moon
#

Hopefully Hytale wont endup as I know Jetbrains Fleet 🙏

true socket
#

yeah it annoys me that everyone ever uses IntelliJ idea for java because I really don’t like it anymore but no one uses anything else

leaden zephyr
true socket
#

I wonder if the java extension for vscode (the one based on eclipse) is good

sterile dove
# leaden zephyr What is that and what happened

Years of waiting, being on beta, promises of it coming main dev platform for kotlin multiplatform projects, years of waiting and bugs, they cancel the multiplatform part, and its still full of bugs and slower than intellij anyways

main moon
# leaden zephyr What is that and what happened

Its a vscode competitor but with super smart features (pre AI) it got ALOT of hype and was basically called the "VSCode killer" but they really never launched it or propperly released it because they would literally shoot their own feet because of the many IDE"s they sell

leaden zephyr
#

That's sad.

prisma agate
# leaden zephyr Hey brother i get it, i'm also a neovim enjoyer... But if you are honest, you wi...

Even without plugins it's bloated, I use Clion as a debugger and it's kinda slow, especially startup times

Also I don't rewrite my config every 3 weeks, I usually make a small 1 line change once a week or so to add stuff like tabs config for a new lang or whatever, the last major thing I did is spend 3 hours adding a run hotkey which opens a split with the code output, which saved me so much time and is really nice (so totally worth it)

leaden zephyr
#

Anyways i clone vscode now, time for a new vscode ai fork!!! The world will be a better place with it, i promise!!!!! Hypixel_Sketchy

sterile dove
#

i spent 23 hours of watching intellij videos before moving to it from eclipse back in the day 😂

prisma agate
#

But in terms of updating plugins and stuff, haven't done that for a few months

leaden zephyr
main moon
#

Only if I could sent a screenshot in here

prisma agate
sterile dove
#

14/09/2022 is when i moved to intellij lol, still have the shortcuts.txt which i used to learn shortcuts

leaden zephyr
main moon
#

Jetbrains settings feels like a jigsaw puzzle

main moon
#

I love how vscode leverages JSON for everything

#

Its intended purpose

prisma agate
leaden zephyr
#

So next topic: JAYSON vs TOML Hypixel_LMAO
(don't do that)

sterile dove
prisma agate
main moon
sterile dove
prisma agate
main moon
#

Well let me intervine a second time, I prefere jsonc for configs

leaden zephyr
#

What have i done (again)

prisma agate
#

Next topic for debate?

sterile dove
#

gradle kts vs gradle vs maven:)

magic stirrup
leaden zephyr
#

Yeah i also think that TOML is nicer to read. JSON is great tho.

prisma agate
#

All suck, but gradle kts for complex projects, maven for simple ones

leaden zephyr
#

Wait what?

sterile dove
main moon
#

I love debating software I stuck with without any research, just arguing with vibes, vibedebating

leaden zephyr
#

Why is maven "simple" compared to gradle?

willow acorn
#

typescript wins, no diff

main moon
prisma agate
leaden zephyr
# main moon Because html

A person who thinks all the time has nothing to think about except thoughts. So, he loses touch with reality and lives in a world of illusions.

sterile dove
#

gradle kts is best since u can write kotlin there, and gradle is way cleaner than maven

main moon
#

I mean gradle uses the groovy scripting language while maven is just HTML

magic stirrup
main moon
#

I am not even gonna edit it 😪

prisma agate
#

Next topic: reasons for why Rust is a bad language

sterile dove
leaden zephyr
main moon
#

Well actually memory safety 🤓☝

leaden zephyr
#

Aktwually

prisma agate
leaden zephyr
#

Prayers for every lost soul who still uses java 8 because of the company they work in Hypixel_Shock
Java 25 is great btw

prisma agate
main moon
#

Next topic: How could I use Blockchain in my Hytale server, even though a normal database would be fine

sterile dove
magic stirrup
main moon
leaden zephyr
#

Can the rust people please stand up and defend it... Guys???

magic stirrup
hidden glade
#

Let them talk, bigger pay for rust devs

main moon
#

Rust programmers do not exit lets be honest

#

They all use Java or C#

leaden zephyr
#

I'm not a rust dev, just wanted to summon you guys

main moon
#

You already summoned the database people

sterile dove
#

If hytale will be heavily multithreaded how do you think most mc devs will perform?

hidden glade
#

I read in this channel that rust has similarities with kotlin uh

prisma agate
# leaden zephyr Counter question: Why do you think rust is a bad programming language?

It's poorly designed, it takes Raii from cpp and forces it as an essential part of the language, making it restrictive to work in, while still being super complex and it aims to be fast while making it extremely difficult to write performant code, it tries to be functional but there are better langs for that (ocaml, elixir, scala) and most of it's community is full of propaganda and false claims (I only know 2 ppl who r reasonable and use rust)

leaden zephyr
#

^ here it goes

main moon
hidden glade
hidden glade
leaden zephyr
prisma agate
dark cape
hidden glade
sterile dove
leaden zephyr
#

twins ^

hidden glade
#

yeah now write this in JavaScript

sterile dove
#

:D

hidden glade
#

omg JavaScript=rust

leaden zephyr
dark cape
leaden zephyr
#

What is "skript"? nvm i figured out

prisma agate
hidden glade
#

the syntax is not really the discriminating factor for modern languages that's all I'm saying

cinder kiln
cinder kiln
hidden glade
prisma agate
prisma agate
cinder kiln
#

🤷‍♀️ still just easier to ignore people like that regardless tho. speed comparisons between natively compiled PLs just do not make sense, ever

prisma agate
hidden glade
prisma agate
#

Well faster on avg, rust can be as fast as C (see ripgrep using concurrency and simd) but on avg rust is way slower

hidden glade
#

on avg what

#

it doesn't make sense

If youre saying "bad rust is slower than well written c" well ye

prisma agate
dusky plume
#

feels like one guys is talking about how tasty is the apple and the other guy is saying why the apple is tasty

hidden glade
#

and rust doesn't really compete with c but CPP anyways

prisma agate
#

What cpp flavor? "Modern" cpp or sane cpp

hidden glade
prisma agate
#

"Modern" cpp is more or less what rust tries to be, which is a bad way of programming, bcz cpp is backwards compatibile with C, u can write C-sryle cpp

hidden glade
#

people hating on rust just find the most obscure benchmarks to justify their fear of the learning curve (not talking about u personally tho, idk about u)

leaden zephyr
#

@hidden glade and @cinder kiln nailed it comparing "average" speed between languages is meaningless because implementation quality dominates, and these debates just generate heat, not light. Hypixel_ThisIsFine

prisma agate
hidden glade
#

people choose rust not because it's fast but because it's safe and clean

prisma agate
#

Eh, I disagree , a big marketing thing for rust is blazingly fast

hidden glade
leaden zephyr
#

Just felt like it, then nvm

sterile dove
#

Kotlin beats both

prisma agate
#

If u want safety, why not java? If u like "clean" (very subjective on what that means and if it's even easier to program that way) then kotlin exists

hidden glade
prisma agate
sterile dove
#

100% of rust devs choose it because its cool and a cult

prisma agate
#

Rust makes it really hard to write fast programs

hidden glade
#

Good luck writing an os with java tho

prisma agate
sterile dove
#

also vim is a cult

hidden glade
#

as for java well

prisma agate
prisma agate
wary olive
#

its for embarked too

cinder kiln
hidden glade
sterile dove
#

ok my brain is melting:D

prisma agate
hidden glade
sterile dove
#
try {
  talk about something else
catch(pokemon : Pokemon) {
  them all
}
cinder kiln
leaden zephyr
#

Comparing Java to Rust for linux kernel development is like criticizing a toaster for being bad at mowing your lawn. Hypixel_LMAO

wary olive
dreamy knoll
#

It's 2025, language isn't a problem. Cheers!

hidden glade
#

But to achieve fast and safe code, rust has a higher learning curve compared to anything else, and I can understand how people don't like it

#

yeah pick whatever u like is the real lesson here 😁

prisma agate
# cinder kiln what do you mean by "fast code"

Well optimized code, things like using a custom allocators, are hard to do in rust, things like not encouraging to free a bunch of small stuff when scope ends, instead of batching it, things like simd still being considered experimental in rust, concurrency being extremely difficult unless u give up to clone and arc mutex making code slower, and also clone in non concurrency situations

wary olive
prisma agate
leaden zephyr
#

No he is totally right

dreamy knoll
#

xD "JE"

latent spindle
leaden zephyr
#

Overall we can all agree that insert your favourite language here is pretty damn fast and beautiful. Hypixel_ThisIsFine

dreamy knoll
#

Remember the proverb, "it's not the arrow, it's the archer"

magic stirrup
sterile dove
#

So u guys are creating rust server for hytale?

wary olive
sterile dove
#

or c++ or c?

#

I wonder which would be fastest for it (ragebait)

hidden glade
prisma agate
#

Gl talking with rust using the jni

dreamy knoll
# hidden glade

This sounds fun when you have resources like time and money.

hidden glade
sterile dove
#

or if we only had money that would be fine also

wary olive
#

open source, contributions, easy done

prisma agate
#

U can keep most of the server, and only rewrite aprts of it

dreamy knoll
hidden glade
#

done ez (don't try this at home)

wary olive
#

proceed to compile > 800 errors

leaden zephyr
wheat vale
leaden zephyr
#

What? AI never makes mistakes, must be you. Hypixel_LMAO

I only use tab completion here and there, i write the majority of code myself

wary olive
#

No internet and bro is cooked

wheat vale
#

some people just have to be left behind

hidden glade
#

if you don't run your own 240B llm locally in 2025 you don't deserve to run hytale

wheat vale
#

damn i guess i dont buy hytale then :c

cinder kiln
#

i perfectly understand the criticisms of concurrent rust, it's very alien at first but in most cases it's perfectly fine to just Arc w/ some std concurrency primitive like rwlock/mutex. if that small overhead is genuinely too large for your application, then you're probably writing your own concurrency primitives in any language you write it in imo. regardless, it can be a bit difficult to understand for a while.

by simd being "experimental" I'm assuming you mean the portable_std nightly feature? if you really wanted to you could use the unsafe x86 AVX/SSE intrinsics functions directly (or the ARM/RISC-V/etc counterparts). LLVM auto-vectorizes most code "good enough", its especially good at vectorizing iterator based code ime, but it isn't perfect and you could totally out optimize the compiler in many cases.

imo outside of niche situations like, for example, ffmpeg, most of these things just dont really matter and if you need those insane optimizations then you're 100% smart enough to do them in either language, though i can see the argument for writing those optimizations being easier in C/C++

good god i couldnt have summed that up any shorter, could i?

leaden zephyr
#

Damn holy father of anything that is loved

hidden glade
#

holy yap

cinder kiln
#

aaand i forgot to reply to his message.. 😭. cc @prisma agate

leaden zephyr
wheat vale
leaden zephyr
#

Ready? FIGHT

wary olive
#

C is better than everything you can say

wheat vale
wary olive
#

x)

wheat vale
#

thank you for understanding the assignment

leaden zephyr
#

Zig is aswktually the bescht

hidden glade
#

here we go again 😂😂

cinder kiln
#

honestly go good

wheat vale
#

and that peops how you break a developer themed channel in a single message 👀

leaden zephyr
#

Why did nobody told me that someone crazy already did a minecraft server completely written in rust 😮
ferrumc on github... Man people are crazy these days

wheat vale
#

at the end we all agree scratch is the best and fasted language ever made!

#

and npm is the cleanest environment ever!
no dependency hell every thing just works
updates are easy no breaking changes 👀 just perfect

hidden glade
leaden zephyr
#

You spelled visual basic wrong

cinder kiln
hidden glade
#

dayssincelastrustmcserver

#

com (don't ban me)

wheat vale
leaden zephyr
#

Bro what have i witnessed right now, that's crazy HOW MANY rust based servers are there wth

wheat vale
#

rust devs are a bit.. obsessed

leaden zephyr
#

I see that now

wheat vale
#

they are the programmers arch users

leaden zephyr
#

Hey honestly respect to those people even when i do not like rust at any means... Respect!

wheat vale
#

oh yea for sure

eternal rune
#

Sponge plugins work in singleplayer

prisma agate
# cinder kiln i perfectly understand the criticisms of concurrent rust, it's very alien at fir...

Simd is not niche, it's even used by ripgrep iirc, and yes it's possible to optimize in rust,y argument is it's really annoying to do it, so most people don't, and even basic stuff like arenas is hard, rust is overly restrictive, partially due to wanting to be a faster form of GC where u trade dx for perf, which doesn't make sense to me
If u want speed, use a proper fast lang like C, Zig or non "modern" cpp, if u r fine with "good enough" then java/go r plenty fast

For a better explanation of why performance matters and isn't niche, see "performance excuses debunked" by case muratori

leaden zephyr
#

Casey is based

prisma agate
prisma agate
wheat vale
#

here we go

leaden zephyr
#

@wheat vale ... You had the chance to write: Ah sh.... Here we go again

wheat vale
prisma agate
leaden zephyr
#

^ Ok that's a little bit over dramatic don't you think?

wheat vale
prisma agate
#

Ye idk why ppl like rewriting mc

wheat vale
#

why not?

prisma agate
#

There is an entire repo full of projects for that

wheat vale
#

and?

leaden zephyr
#

Yeah i think theres sort of a misunderstanding here overall

prisma agate
#

I mean it's fine, but I doubt any will be complete

wheat vale
#

most projects in private software development endup shelved at somepoint

sterile dove
#

Important thing is enjoying what u do:) and learning

prisma agate
#

It's really hard to do rewrites bcz u chase an ever increasing target

wheat vale
leaden zephyr
#

I think my toaster/lawn mower analogy nailed it before.

hidden glade
#

it's hard but it's hella fun

cinder kiln
# prisma agate Simd is not niche, it's even used by ripgrep iirc, and yes it's possible to opti...

i just dont think you know enough about rust and its ecosystem, honestly. i'm genuinely not trying to be mean and i'm sorry if it comes off as such, i think your argument (specifically: "rust is always/on average slower than c in large projects"? is that right?) fundamentally comes from a place of not knowing the language well enough. which is fine! nobody knows everything, and nobody likes everything either.
tl;dr: i just think your stance is too rigid, personally

also, yes i know of casey and i agree with a lot of what he says, i've been following him for years, he's an absolutely amazing teacher and a big reason of why i had an easier time getting into C++ when i was younger:D

prisma agate
wheat vale
# hidden glade it's hard but it's hella fun

i mean figuring out how stuff works is part of the way
seeing how things you want to add in a mod start working is fun
seeing how world gen in your port works triggers the same

hidden glade
wheat vale
prisma agate
#

This is especially true for plugins, spigot rarely breaks stuff

wheat vale
#

yea i dont think i will agree with you on your view of how programming works

#

your takes are just weird

cinder kiln
# prisma agate Ye idk why ppl like rewriting mc

for a lot of them it's just because its fun and the game was a big part of their childhood i bet, at one point i wrote a minecraft server in C99 for that reason and some years ago wrote a minecraft client from scratch with a group of people (thou that was a paid gig :p)

prisma agate
hidden glade
leaden zephyr
#

Casey's great, but agreeing with his performance takes doesn't mean Rust is bad or that he needed to "rescued you" from it. You have strong preferences and push them regardless of what others think, atleast it feels like it. @prisma agate(maybe there is a language barrier, i'm not fluent and maybe i got something wrong here)

prisma agate
wheat vale
cinder kiln
#

some of them have niche usecases such as incredibly lightweight minigame servers, a more complete example of this is something like the minestom project which is Java. a good rust example of that would be valence

prisma agate
#

Minestorm is decently complete iirc?

hidden glade
#

Honestly idk what they want to accomplish themselves, but I totally get the appeal of rewriting something hard in a new language, it's fun and it's a really great way to learn

prisma agate
#

If it's for learning or for fun it's fine

cinder kiln
#

its quite usable, yeah! it's just not vanilla gameplay compatible which is fine because it doesnt care to be

wheat vale
#

i have a dejavu

#

why do dev channels everywhere allways endup in a big war
are we that messed up?

leaden zephyr
#

I might be the wrong guy for this type of discussion. I make some food, thanks for the pep talk.
Cheers

hidden glade
hidden glade
#

I'm not under the same impression but it's probably because English is not my native language

#

Get ready for 2 walls

cinder kiln
#

from my pov I don't see it being heated tbh, but I also try to read as little into that sort of thing as possible and give everyone a lot of benefit of doubt which maybe shifts that view? I dunno :p

leaden zephyr
#

Would be funny if he just drops a 👍 now and there will be no text wall at all Hypixel_LMAO

wheat vale
#

it really would be xD

fierce fulcrum
#

What's happening here x) ?

wheat vale
#

honeslty i dont think anyone here knows at this point

leaden zephyr
#

^

sterile dove
#

So Ill ask this every day
Has anyone tried making guis yet for hytale/learning noesisstudio?

fierce fulcrum
sterile dove
wheat vale
#

it does

leaden zephyr
sterile dove
#

so would be weird if they on top of that created their own noesis gui builder

#

wouldnt make sense

prisma agate
# leaden zephyr Casey's great, but agreeing with his performance takes doesn't mean Rust is bad ...

Well it's not just perf, it's mostly a mentality of first principles, of doing simple straightforward things, this perspective really opened my mind and made me realize a bunch of stuff that made me a better dev (ex semantic compression, which doesn't have to docwith perf)

The rescued from rust was a joke, I already was more into zig than rust at that time, but I am glad that I learned things that made me realize a better way to make stuff (which rust conflicted with)

I do believe Rust has poor design choices, I don't mind people using it, I have a few friends that do, but I do have a problem with the propaganda/misconceptions of the loud rust adovacates

I am developing my own lang currently, so I am obviously very opinionated, I could probably rant a decent amount on most langs, including C
But I am not trying to be rude, if this is what it comes off as

dapper apex
#

yo

prisma agate
sterile dove
#

Noesis uses xaml and they got .noesis for noesis projects, they got c# bindings on the client,
They will create java layer so servers can send stuff to the interfaces, and i suspect that we can send noesis gui to the client like other assets,

Would be weird if they also created api so we could build guis only with code.
Would be really painful and a lot of work for them anyways

fierce fulcrum
leaden zephyr
storm glen
#

We only know what the backend looks like, we dont know the markup setup for the UI stylized besides it will be XAML

prisma agate
sterile dove
prisma agate
fierce fulcrum
sterile dove
prisma agate
#

Really simple to embed, decently known due to Roblox (or nvim) and no need for Jsx style stuff, u can write loops and stufceasy

fierce fulcrum
#

It makes no sense
the whole idea of jsx/xml/html style is to understand the imbrication of elements and to represent the document tree

It's not impossible to do otherwise but this is the reason why some engines enable the use a html / css system for guis

#

nvim is made for people wanting to suffer it's not really an argument

willow acorn
#

web tech for ui / overlays should always be an option

prisma agate
# fierce fulcrum It makes no sense the whole idea of jsx/xml/html style is to understand the imbr...

Jsx is the idea of embedding code in a UI tree, lua allows exactly for that, it has tables which r like JSON/xml which u can use to encode ur UI tree, but it is also a programming language so u can just use variables and loops and functions inside the table

And unlike Jsx, lua is just lua, it's not a weird amalgamation of Js and html

Afaik, the reason non-web apps use html/css/js is mostly for familiarity and allowing ppl to reuse existing stuff

prisma agate
#

Also wezterm terminal uses lua, it's just really good for configuration stuff

fierce fulcrum
fierce fulcrum
#

For the rest the point you make for lua is the same I can make for jsx and web dev techs
Except jsx and web dev is much more widely used and supported

prisma agate
fierce fulcrum
prisma agate
fierce fulcrum
#

Because really I use both and I don't see the difference

prisma agate
#

It feels sluggish, idk how to explain it, u have to use a fast editor like zed or nvim

fierce fulcrum
#

Your claim is just you trying to prove you're right but really the time argument is not the right one

You could have said the configuration level or the ability to use the same tools for everything and I wouldn't be able to say something but really time is not the point

fierce fulcrum
prisma agate
#

Sure, it's very hardcore and not for everyone

fierce fulcrum
#

Why would you link that to the skill level ...
It's not because you use vim or zed you're a good guy smart guy and dev it's just a tool that needs to correspond the usage.

In my case it doesn't that's all

fierce fulcrum
prisma agate
leaden zephyr
#

What do you mean by "hardcore" then? Just curious

prisma agate
#

Niche is a better word maybe

#

Like it's not for everyone

fierce fulcrum
prisma agate
fierce fulcrum
rough viper
#

Kyren have you tried helix? that is my prefered editor

prisma agate
#

And I think they did plan to use lua, for the new engine

prisma agate
fierce fulcrum
#

That's a common language problem more so in js actually
That's not a ''jsx problem'' at all

devout cipher
#

evening all

fierce fulcrum
fierce fulcrum
prisma agate
#

Also I'd never switch bcz I already have a thing that works, unless it has a massive advantage I see no point dedicating the time to do the switch

viscid wren
#

Simon said he'd write up a blog post at some point about server and mod monetization, I wonder if that means he'll address if there will be a server donation EULA

clear wedge
#

Can someone answer my question? Is the server browser already available on the 1st?

viscid wren
frozen oracle
viscid wren
#

When they do eventually release a server browser, I wonder how many servers will be on it, and how it will impact multiplayer as a whole

clear wedge
devout cipher
#

😄 saw quite a few already

clear wedge
frozen oracle
#

there's definitely a few yeah - just depends on how long it'll take until a fully fledged server browser comes out in game

keen pecan
#

Do you guys think that in Hytale plugins are gonne be usefull the same as Minecraft?

#

Or since modding is gonna be easier, peoples would go for that way

fierce fulcrum
#

I belive they use modding for assets and configuring them, for now plugins is still the way to go to add mechanics from what I understand

woeful depot
#

True

keen pecan
frozen oracle
bitter nacelle
#

"same" as minecraft is unknown until we see how Hytale actually plays and what utility there is to server owner/developers. What's needed will come about naturally, though prolly at a slower pace until people are able to share information and figure out what works and what doesn't. Abundance will come with time.

spiral marten
#

Like sky block, factions, stuff like that in the beginning

viscid wren
true socket
#

i wonder how long its gonna take before people reverse engineer the client enough to start making cheats, hopefully it takes a while

viscid wren
prisma agate
#

Probably a few days

true socket
prisma agate
#

Client is in java, and java bytecode is high lvl, so it'd be easy to reverse (unlike native clients, which use raw machine code)

true socket
#

the client is in C# which will be compiled AOT to native, only the server is in java

prisma agate
true socket
prisma agate
#

In that case reversing would take a while, but if we have server source, it'd be easy to hijack the protocol, so u don't need the client

true socket
#

i was also wondering if people would try to make a local proxy with cheats built in

devout cipher
#

deffo

prisma agate
#

Ye that seems easier

true socket
#

the fact that its supposed to be very easy to mod the client from the server should make that quite powerful

#

do we know if hytale will have global rules/punishments or if its fully just up to server admins (ofc u can server ban too)

prisma agate
#

Writing a client that sends extra stuff like flying or whatever is easier

true socket
#

do we know if the server will run movement simulations?

prisma agate
#

I'd assume it'd estimate

true socket
#

i know there will eventually be a proper central anticheat but idk if there will be on release

prisma agate
#

Otherwise servers would need too much compute, it makes sense if players run simulations and server just verifies

true socket
#

i also really hope that a lot of effort is put into account security (like forcing 2fa and stuff)

#

bad account security is the only reason why minecraft server blatant cheating is a thing

#

its so easy to get hacked alts in minecraft because mojang doesnt really care, hopefully hytale does better

#

id imagine that the team has had to deal with enough of this on hypixel with minecraft that they will try to do it better on hytale

#

$20 accounts should be enough to discourage blatant cheating

#

closet cheating is a much bigger issue

prisma agate
#

Minecraft is also 20usd

trim knot
#

release date Hytale?

true socket
spiral marten
#

What engine is hytale on depending on that you can get a good idea of how the cheats will be

true socket
true socket
frozen oracle
#

cant wait for hytale hack clients

dusky plume
keen pecan
#

No need to reverse directly the code

true socket
keen pecan
#

It could take 1 day or 1 month, but it's inevitable

#

Also because i'm not sure if it will have any sort of anticheat built in

cinder kiln
#

If someone really wanted to make a hytale cheat and they have experience it'd take at most a few hours to get something working tbh

keen pecan
#

And usually, anticheat bypass are harder to make than the cheat itself

true socket
fringe ore
#

So because riot team tried to rewrite the entire engine in cpp, and then realized it will cost too much to continue for cross platform competition.... will we ever get cross platform?

true socket
#

cross platform is still possible but we dont know if theyll do it, its a lot of work to implement

fringe ore
#

Yeah

true socket
#

definately not at launch

fringe ore
#

Oh course, I was jjst thinking future

#

I do plugins and addons for bedrock edition, and sorta bridged over to paper plugins. But might be interested jumping the gun lol

#

For hytale

#

We can sell the plugins and such no block there in hytale?

true socket
neon tree
#

They mentioned cursed as a possible platform, what would be good alternative

#

Think about that many hosting providers have there own library of plugins mostly using api or a closed of system, so it will be a search of finding the plugins you want.

Personally gonna write everything myself, always ends up been the right call for a good experience overall

scarlet atlas
little shore
#

Where would you hire a dev

granite saffron
agile elm
#

will we be able to load our own .xaml UIs using hytales noesisgui API?

agile elm
#

is it true that servers will run on only 1 cpu core?

karmic night
agile elm
hollow musk
#

But i think it will be not

agile elm
white thorn
#

Anyone wanna make a party to do an SMP to play the game day 1?

viscid wren
upbeat storm
#

Minecraft isn't really single threaded and hasn't been for years the whole single core thing is practically an myth at this point

#

People give Mojang a hard time for a lot of stuff but they've actually been doing a pretty decent job reworking their backend

#

Especially given it has 16 years of tech debt

midnight oar
#

i wouldn't call single-threaded architecture tech debt, it has advantages

upbeat storm
#

When I said tech debt I didn't just mean how many threads the game uses

midnight oar
#

i thought about main game loop, i think many people oversee that if they decide to go with multithreaded game loop, modding may become exponentially more difficult

viscid wren
#

Interesting, if hytale is single threaded is that actually something to have an issue with? Or will it be fine? I've done very little multi threaded programming so im not sure

upbeat storm
#

The game will probably be both single and multithreaded depending on the content

#

I suspect a large majority of mods/plugins will be fine operating mostly on a single thread

west elk
viscid wren
#

Neat

formal burrow
#

Hey guys if you are in the US, I found out that Paypal is offering a 20% cashback deal on up to $1250 in purchases or $250. That means if you want to buy an annual plan for a server for example, and it's going to cost $500, you get $100 back. The catch is that it's pay in 4 installments, and they give you the 20% back after you pay over time. I saw on Reddit that if you want to get a Valve Frame or a Steam Deck you can even use the pay in 4 trick to top up a steam wallet for when the Frame comes out. You only get ONE of these 20% cashback purchases per person and they just capped it today. If there are any expenses you think you'll have to pay regarding Hytale, like for servers or just buying equipment, look into it.

brittle estuary
formal burrow
brittle estuary
#

Yeah, I don't use credit

formal burrow
# brittle estuary Yeah, I don't use credit

Pay in 4 requires a soft credit check as I read the fine print, but, there are people here who might want to rent equipment... That 20% cashback is unheard of. Paypal scrambled to nerf it today cause people were buying up tons of stuff

brittle estuary
#

lol yeah, makes sense

#

Just buy assets like gold and make a quick 20% return

shy crest
#

I had to have a double take on that message since it just felt like one of those scam messages. 😂

formal burrow
formal burrow
formal burrow
formal burrow
#

I mentioned AdvinServers had a 24GB of RAM, 3 core Ryzen 9950X in stock for rent less than 12 hours ago... it got snatched by someone very quickly

brittle estuary
#

I was just planning to use something like Digital Ocean

formal burrow
formal burrow
brittle estuary
#

Ah, cheers! I appreciate the advice

formal burrow
#

Oracle has a 24GB of RAM free server plan but someone in this server corrected me by telling me they are NEVER in stock, on top of that you are required to hand over a credit card

formal burrow
# brittle estuary Ah, cheers! I appreciate the advice

I'd advise using OVH or AdvinServers. Kansas City I heard is good. They have a 4GB of RAM, 128GB NVME, 1 core 9950X Ryzen in stock right now, literally yesterday when I was talking here, they had an 8GB, a 16GB, and a 24GB of RAM in stock then they got bought up

sour sierra
formal burrow
#

CrunchBits also has a VERY good reputation but they are never in stock. They sell for example $6/month 2TB servers that you can use for personal use. They were bought out 6 months ago and since I have never seen them in stock. They have servers located in PA and in Washington but they are always taken

formal burrow
brittle estuary
#

Thanks again

formal burrow
#

They charge $4.20/month for an 8GB of RAM, 4 vCore, 75GB SSD NVME VPS, no caps on bandwidth. The Virginia servers are out of stock, but the ones in California aren't.

#

I have no idea though what the CPUs are

latent spindle
#

Guys when factions revival on Hytale

formal burrow
#

When someone vibecodes a faction plugin

#

in other words.. a few days after release

latent spindle
#

In other words its dead plugin 😢

#

Im hoping plugins can have real UI not like in minecraft where its just a double chest

hollow musk
fringe ore
#

I already planning on doing landclaim

past shale
#

Is there an estimate on how powerful hardware will need to be to host Hytale servers?

west elk
#

no, but they will tell us on friday

viscid wren
#

god I can't wait for this game, I hope my server can scale well. I think I learned some ideas from when I used to run MC servers, and learned from my mistakes

mystic bone
#

I'm planning on making something but not sure what yet have been out of the loop content wise for what's in the game tbh. But I mod for other games. If anyone has any interesting requests I might pick it up

brittle estuary
clear wedge
viscid wren
#

Did they say there would be a default permissions system for servers? I thought I heard something about that but I can't remember if that's what I heard

compact crypt
#

I would be surprised if there's no default permissions system

clear wedge
viscid wren
#

guess I could whip up a basic permissions system anyways

compact crypt
#

Hmm you're right

compact crypt
zenith mist
compact crypt
#

1 entire month at least to get everything prepared for the release

viscid wren
compact crypt
#

As stated in the announcement, this game will release in 2026

viscid wren
zenith mist
#

You'd be adding copy righted stuff into hytale

#

That mode relies on stuff that would cause legal issues to implement

viscid wren
#

There are multiple factions plugins out there for minecraft having a "factions" server doesnt violate copyright

zenith mist
#

No having a carbon copy of the Redstone mechanics of Minecraft

#

Is

compact crypt
#

Who is the legal owner of the factions idea?

#

If there's none, how can it be copy righted?

viscid wren
#

Oh, I mean we can figure out a replacement for TNT cannons somehow

formal burrow
zenith mist
viscid wren
fast oasis
#

yeah

formal burrow
fast oasis
zenith mist
#

You'd need to recreate a copy righted idea to make factions work

formal burrow
zenith mist
#

Not the mode its the Redstone

viscid wren
#

A whole new game is coming out and people want Skyblock 😭

viscid wren
fast oasis
#

Skyblock is just so good

formal burrow
mossy minnow
#

How will one be able to make a server for friends or a community, is there already some incite how itll work?

zenith mist
#

Battlefield 6 almost got sued for making cod maps in there I game creator, by Microsoft, imagine remaking Redstone lol

formal burrow
# viscid wren Ah

People in Hypixel Skyblock back when Hytale was first announced wanted it themselves. They have disclosed they haven't even began to port anything from Hypixel Network over to Hytale

viscid wren
ebon wedge
#

legal loopholes are always solid

zenith mist
#

The servers without it practically died

viscid wren
compact crypt
#

I don't think the mechanic of having wires and electrical components is copyrighted by microsoft
Isn't it just simple enough to not make it directly like redstone?

formal burrow
viscid wren
#

Its the only redstone requirement for factions

formal burrow
#

There was an HCF server that made $250k in one month. HCF makes no use of TNT if I recall

zenith mist
viscid wren
zenith mist
#

I've been around the block

mossy minnow
compact crypt
zenith mist
#

Gl getting the same thing xd

#

Talking as a cannoneer and a server owner of a 1600 pop factions server

#

Cannoneers hate change

#

The 1.8 to 1.21 made tons of the community quit

viscid wren
zenith mist
#

So i hate to say this but ik how the mode is xd

viscid wren
#

Also there's so many ways to think of unique ideas instead of how TNT cannons worked in minecraft

sinful zodiac
#

I need to know about this

#

Server plugins, what language? Similar to Minecraft? Or what

#

I need to create still a brainrot in hytale JAJAJAJAJAJAJAJA

fiery monolith
#

Keep that in Roblox

sinful zodiac
sinful zodiac
#

Is it a mistake to think that Hytale servers won't kill Minecraft servers? Or not? I think that when the Hytale bubble bursts, everything will settle down.

#

yep im using the traslator xd

viscid wren
#

I think hytale has the potential to coexist long term with minecraft, but minecraft is the best selling game of all time, so its going to be hard to really cause its servers to die down

latent spindle
#

Why not just rename redstone to whitedust easy

sinful zodiac
#

Now I hope I get a job soon so I can buy a PC to play Hytale. (LOL)

viscid wren
fiery monolith
viscid wren
sinful zodiac
fiery monolith
sinful zodiac
fiery monolith
#

Yeah OpenAI really messed it up for everyone else

sinful zodiac
#

I don't know, but I still love Minecraft. I still have plans to create my own Minecraft servers. I'm going to try creating one in Hytale, and if I like it, I'll do both.

fiery monolith
#

I wonder if Hytale is going to be open source server files? I already have plans to create a big server

sinful zodiac
sinful zodiac
#

Simon is also a creator

fiery monolith
sinful zodiac
#

how nice

#

what are they

fiery monolith
#

I wonder if the EULA is going to be the same

zenith mist
sinful zodiac
#

I've always regretted never making a truly professional server. I'm 19 now, and in previous years I made servers, but since they were made by people without much skill, they were decent but never truly high quality.

zenith mist
#

You don't know the complex math thst goes into making those cannons work

sinful zodiac
zenith mist
#

Now imagine it with new phyisics

sinful zodiac
#

I think the Minecraft EULA is pretty good

zenith mist
#

Xd

viscid wren
sinful zodiac
#

well

zenith mist
viscid wren
undone creek
sinful zodiac
#

bye

zenith mist
#

Different type of game

viscid wren
viscid wren
undone creek
viscid wren
undone creek
zenith mist
#

But most are kinda lifeless

undone creek
latent spindle
#

I feel like mmorpg type servers will be abundant in Hytale

zenith mist
undone creek
zenith mist
#

Complex

undone creek
#

okay here hte thing

#

compelx isnt a faction server lol its a network with multiple games

zenith mist
#

Xd its a factions server

#

Its what everyone plays for

undone creek
#

i mean not really its a network with multiple games lol

viscid wren
#

Googled and found some server called "Complex gaming" has 6k people on rn, advertises one of their servers as factions but idk I dont play any server

I just like it back in the day and have a lot of unique ideas that is limiting with minecraft

undone creek
#

when i think of a faciton server im thinking of a server thats only factions for the most part lol

zenith mist
#

Complex items used to sell for 1000s of doallars

latent spindle
#

Guys any mmorpg faction server

zenith mist
#

Which is why ita popular, and getting terminated

latent spindle
#

Any server similar to albion type 😂

fiery monolith
#

Towny, Anarchy and game mode servers are the top

zenith mist
#

Mmorpgs haven't seen any that are massive:/

#

But in also not from those modes

viscid wren
#

Yall ever play on TheArchon back in the day

zenith mist
#

Yeah

undone creek
#

if wer're being techical about it, complex has pixelmon, tekkit and FTB and a vnailla server loland with that is prison skyblock and factions lmao

viscid wren
zenith mist
#

Ah the webs..

latent spindle
#

Ofc cause minecraft is not mmorpg focused game but Hytale is RPG so its easier to find mmorpg server

undone creek
zenith mist
#

The creation of web busts..

undone creek
#

like wym lol wynncraft is huge

zenith mist
#

I also said I don't play mmo servers thar much xd

#

Id rather boot up an actual mmo like black desert online

latent spindle
#

If you look at hytale server list most are mmorpg servers

viscid wren
#

Why are we even arguing, hytale will revive old games, cause others to die out, and spark innovation for ones never seen before

zenith mist
#

Yeah factions as a mode will adapt and change as a whole

#

My point is that the old way of the game is killing it, it was created by people who don't even play it anymore

#

Raiding and stuff will change cus two entirely different games

undone creek
#

i dont think factions will be good in hytale

#

i dont even think it should exist in hytale

zenith mist
#

Its a old gamemode full of toxicity

viscid wren
#

Kinda defeats the whole purpose of hytale to be a game that anyone can make whatever server or mods they want

zenith mist
#

Well they can make it but xd

undone creek
zenith mist
#

I know how cannons work and people hate server hoping 🙃

#

You do not know the pain of redesigning physics math for each server

#

That's why factions won't work cus the people who already do this ain't bout to deal with a new game entirely lmao

#

It would be a complete re-write of the gamemode

hollow sentinel
undone creek
#

it was a gamemode that been dead since 2019 maybe earlier lmao

undone creek
hollow sentinel
#

It doesn't even need to be called HCF

latent spindle
#

Ngl even lifesteal is dying too

hollow sentinel
#

The idea itself is really good

zenith mist
#

Hcf was literally just who could trap better xd

undone creek
viscid wren
#

Idk I have my own vision for it thats loosely based off of minecraft, but I think hytale is going to b a game more about exploration and rpg than like how minecraft is just about building massive farms

hollow sentinel
viscid wren
hollow sentinel
undone creek
zenith mist
#

I know old hcf

hollow sentinel
#

That's when they ruined the gamemode

zenith mist
#

They still did trapping

hollow sentinel
#

Look up Kohi trapping, its actually interesting

undone creek
#

i mean velt and viper werent even the most toxic hcf community we both know that

latent spindle
hollow sentinel
viscid wren
zenith mist
#

Any factions in server with a cash payout

undone creek
hollow sentinel
#

Cave maybe

zenith mist
hollow sentinel
#

It's my favourite HCF server

undone creek
hollow sentinel
#

@neon cave

neon cave
hollow sentinel
#

Are you Newjersey

neon cave
#

No...

zenith mist
#

Wow yall are younger then me xx

undone creek
zenith mist
#

I played factions since I was 14 xd im 29

hollow sentinel
neon cave
#

killamc himself used to threaten people LOL so i can see that

undone creek
latent spindle
#

When Cpvp in hytale

neon cave
#

but ive never been hit w anything on velt or viper or arcane

hollow sentinel
#

#BringBackAspertame

undone creek
#

was faithful the only one that had people get swat threats lol

zenith mist
#

Velt and viper were the best servers tbh

neon cave
undone creek
neon cave
#

the only "pure" servers was like Hypixel and TheHive

#

but even their staff was known for preying on their playerbase so... (not at fault of the server tho)

zenith mist
undone creek
latent spindle
#

Rusher jumped ship when fortnite released

zenith mist
#

Being a cannoneer makes you immediately a target

neon cave
#

yeah, idk hcf being labeled "toxic" is just unfair tho

undone creek
#

i mained saico for a few seasons it was awful

neon cave
#

cosmicpvp was really toxic fr

zenith mist
#

Ha

undone creek
hollow sentinel
#

It's not the gamemode, its the people. I am personally interested in spending a couple thousand to create a new premise for a game mode of similar nature. It's worth a shot

zenith mist
#

Block by block placing walls and bucket filled regens

#

16 hr a day builds

undone creek
zenith mist
#

Cosmic pvp mans lol

hollow sentinel
undone creek
hollow sentinel
neon cave
#

LOL yeah, its the same thing as "xbox lobbies on cod"

zenith mist
#

Ah your a spawn trapper on nuke town aren't you lol

fiery monolith
hollow sentinel
#

Like Call of Duty almost has no toxicity in it now days because you literally get banned if you say anything negative

neon cave
#

its just that was the crowd attached to the gamemode, hcf was top 3 biggest gamemodes at one point but its rep makes it seem so much less importatnt

undone creek
hollow sentinel
fiery monolith
neon cave
undone creek
#

hell even valorant is comparable honestly

fiery monolith
#

I really hope Hytale doesn’t get a voice chat mod/plugin

hollow sentinel
#

The HCF community is probably the most toxic community out of any game, and also the game where the most criminals come out of in terms of financial crimes, Think Malone or Open HCF

undone creek
neon cave
#

but the 99% experience will be overall great

hollow sentinel
fiery monolith
undone creek
fiery monolith
neon cave
#

i hope there's a discovery/listing for public or partnered servbers

hollow sentinel
undone creek
zenith mist
neon cave
#

oh dope, i hope the combat is different from what they've shown in the teaser..

i mean regardless it'll be modded to doom if its poo but, it'd be sick if it was comparable to 1.8 but a bit cleaner

#

i already know there's gonna be some hoplite/sg derivative on release

#

that seems like the easiest concept to grasp and play esp on a new game

zenith mist
#

So if you want to be front in the multi-player tab heavy monetization is dead

neon cave
#

but what counts as "heavy monetization" is the line at pay-2-win

zenith mist
#

Yeah

neon cave
#

or can i just slap a pay wall on a server and say its light monetization cuz the game functionality isn't pay 2 win but u have to pay to get in

zenith mist
#

The issue is people are trying to revive a p2w modes

neon cave
#

what are p2w modes

zenith mist
#

In hytale

#

Factions as a whole is p2w

stoic frigate
#

hey im a little confused what is this chanell for?

neon cave
#

nah, its only p2w via specific configuration

undone creek
zenith mist
neon cave
#

factions isn't p2w but can be if ur paying for kits, lives, etc

zenith mist
#

Its a litterally common thing on all factions servers

fiery monolith
#

I want to make a tech plugin

viscid wren
neon cave
#

yes ofc, just because its the norm as a strategy of monetization doesn't mean it's the gamemode's fault

viscid wren
#

You have to really be trying to make factions p2w

zenith mist
#

Thats all the current factions servers that are open today every single one

neon cave
zenith mist
#

3000$ cash prizes lol

neon cave
#

i believe that should be the norm again, not buying crate keys and kits and a rank for a 24hr kit

viscid wren
#

TheArchon was so bad with being p2w 💀

neon cave
#

was so cringe and they got eula'd so many times

zenith mist
#

Yeah factions is a mode thst i think shouldn't be in hytale as a whole

#

Its mostly dominated with p2w configurations