#dev-general
1 messages ยท Page 80 of 1
As long as it gives more flexibility than mc its fine for me
it looks like a bootleg texture pack
MC is like that game engine with a lot of restrictions on every turn
And yet you see what all people do with it Yugi
I'm sure the development experience is nicer but considering Bedrock hasn't been able to properly replicate the Java edition feel Hytale probably won't either
Imagine having the ability to customize everything
OMG
@topaz bay OBJECTIVELY untrue
I just got the idea for the name of my next project
Imagine having the ability to customize everything
@hot hull ikr
Do tell
OdinBetterThanFrigga?
Enlighten us
wait forgot a ! infornt
Its not that exciting
I'm gonna make a observable collection framework under vox
named.... Heimdall
That's actually a good name
We should start an org full of projects named after Norse mythology
The nordic people have filed a lawsuit
You are not a member of VoxMc inc.
I choose Greek
I will commandeer my foot up your ass
yikes
Anyone got any better ideas when it comes to displaying custom chunk data on the players hud
Anyone got any better ideas when it comes to displaying custom chunk data on the players hudI dont think you can do much with that
You could try using advancements for toasts if that works
have a enable/disable command I guess?
youre a pussy
kek
I am not
Im guessing pantheon was taken?
Sadly yes
vox AND voxmc were taken
and NorsePantheon just sounded cringey
god damn people stealing original ideas
Greek Tragedy
you're a tragedy
were smashing mics in karaoke bars!!!
f.
you.
kid.
Your processes could never
ooooo I just thought of a name for this
I can run atleast 10 chrome tabs, watch me. @topaz bay
@topaz bay that is pretty cool actually
Did you setup the server jar to run the flags from within?
ANyone know why player.spigot() is not a method ? I use it for a long time, and just now it decides to stop working and says that the method doesn exists.
Pretty sure that's in the nms jar
player.spigot().sendMessage(msg);
this method worked fine yesterday
now the entire method does not exist
are you depending on the spigot jar?
Maybe they finally came to their senses.
gradle
it doesn't exist in bukkit for obvious reasons
compileOnly "org.spigotmc:spigot-api:1.8.8-R0.1-SNAPSHOT"
even updating to 1.15.2
does not exist
what other dependencies do you have? one could be importing bukkit and overriding or something
worldedit for example
i use worldedit there yes in this project
exclude org.bukkit from the WE dependency
@prisma wave how do i do that
Its indeed worldedit yes, when i remove it it fixes it. but i have some methods using we
exclude group: 'org.bukkit'
^
compileOnly 'com.sk89q.worldedit:worldedit-bukkit:6.1.4-SNAPSHOT' { exclude group 'org.bukkit' exclude group 'org.spigotmc' }
like this?
you need brackets around the dependency notation
Could not find method exclude()
colon
compileOnly('something:here') {
exclude group: 'org.bukkit'
}``` should work iirc
Could not compile build file 'C:\Users\joelb\IdeaProjects\IMC\lobby\build.gradle'.
> startup failed:
build file 'C:\Users\joelb\IdeaProjects\IMC\lobby\build.gradle': 55: Statement labels may not be used in build scripts.
In case you tried to configure a property named 'group', replace ':' with '=' or ' ', otherwise it will not have the desired effect.
@ line 55, column 25.
exclude: group: 'org.bukkit'
^```
remove the colon after exclude
there is none
exclude group: 'org.bukkit'
๐
BM, if I do println(invite?.name) and invite is null, will it print out null?
yes
Nice, just wanted to confirm
Alrighty ๐
oh no
https://github.com/IridiumLLC/IridiumSkyblock oh dear god
@topaz bay thoughts and concerns on that
https://github.com/IridiumLLC/MobCoins/blob/master/src/main/java/com/peaches/mobcoins/commands/PayCommand.java im bout to be sick
?plsnoarrowcode
lombok..
Spigot devs are like the most static users I have ever seen, is like everyone learned from the same place
The mod community isn't this bad
it's horrible to look at
We should make a few tutorials and post on youtube to have at least some decent ones
All tutorials are the exact same
they literally just expect you to write exactly what you're writing
without explaining how any of it works
Exactly, though like i said, the forge mods tutorials aren't this bad, so idk what's up with the Spigot community
Generally people who make mods have some form of concept of java
People who make plugins go straight into it without knowing anything about the language and doing it for fun
Facts
People who make plugins go straight into it without knowing anything about the language and doing it for fun
@remote goblet this is how i learnt to code ๐
How feasable would a clone of Hypixel be? I've done some thinking with my thinking cap on and realized that the real magic happens with requests to DBs, and "game servers" just generate the data that is fed into a big-ass web server.
I'm sure it's way more complicated than that
How so?
I am not concerned about the "MC" part
I can code a hypixel gamemode with enough time, but the data is the real dealbreaker here
Issue is efficiency
Knowing hypixel, it's thought out from the bottom up to work how they want it to
How feasable would a clone of Hypixel be? I've done some thinking with my thinking cap on and realized that the real magic happens with requests to DBs, and "game servers" just generate the data that is fed into a big-ass web server.
@hallow crane I mean, it's complex enough to make the system, and then it's costing them 10's of thousands a month to run. If you can somehow manage to pay that out plus make a profit then good luck. It's nice owning such a server but then it costs so much to run.
I should have specified; I dont care about costs, just literal structure of the server
@topaz bay thoughts on tuple definitions? currently thinking tuple(first: 1, second: 2) or something
KM are you good in thread stuff ?
@remote goblet system scope maven dependencies
Yeah, I'm not looking at this
Not even worth the time
what is this BULLSHIT
Yes
@topaz bay you bullying people as usual?

Artifact and groupid cannot be same as another one I believe @topaz bay
But still, you should have maven modules instead of this
I'm a little confused
public class LevelLeaderboard implements Leaderboard
is LevelLeaderboard the impl or Leaderboard
is the package name or do I have to switch the classes around?
Seems fine
kk
does anyonje know why this is poppign up in my bungeecord server:
io.netty.channel.ConnectTimeoutException: connection timed out: /62.171.159.206:25565
at io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe$2.run(AbstractEpollChannel.java:575)
at io.netty.util.concurrent.PromiseTask.runTask(PromiseTask.java:98)
at io.netty.util.concurrent.ScheduledFutureTask.run(ScheduledFutureTask.java:170)
at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:164)
at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:472)
at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:384)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at java.lang.Thread.run(Thread.java:748)```
ConnectTimeoutException
Connection Timeout
The server did not reply to bungee's ping?
how would i resolve that?
Is the bungeecord and server running on the same machine?
anybody know how to get the currently selected items in a villager container? (client)
kek
Kotlin peeps
var1.a?: inst1.fun1(var1.a)
Why is intellij warning me on var1.a
Type mismatch.
Required:
String
Found:
String?
checked it appropriatley
oh added!!
Because fun1 probably takes a String
Not a String?
Adding a null assertion there will therefore always fail
might offer someone money to fix these enchants god 1.15 is horrible to work with ๐คฎ
you can give me money and fix it yourself?
im not bothered whether you're serious
then i'm not bothered by what you're input is.
๐
wont be seeing his msg's again. (:
I mean blocking me over a joke I made is kinda petty but go for it
while im blocked i might aswell say that it's lazy to start a project then give up and pay someone else to do it because you dont have the mental capacity to do it yourself
1 blocked msg's poggers
@pale shell # rEqUeSt-PaId
Or there's always a plethora of people who will devote time to helping fix things free of charge in #development
I mean people expect money nowadays plus this'll probs be more complex than that.
there's always a plethora of people who will devote time to helping fix things free of charge in #development
people expect money nowadays
@pale shell
when has anybody in the history of #development ever said "no I won't help you unless you pay me"
i mean it's gonna be a long drag to fix this
and? I spent about 2 days once helping someone get NMS NPC's working. Timescale is irrelevant
you have 2 choices: #development or #705633782811590666. The former is a better option
The former is a better option
?
Complaining so much about it, when you could've already stated your question eee
^
Seriously?
ecksdee
you asked i answered
That's not a question that anyone can answer
if you want help ask for it otherwise stop complaining
What is issue
Being a smart ass is generally not the way to go if you want people to commit to a "long drag" to fix a problem
The idea of "it's going to take a long time to do this so i'd rather just not" is just dumb
but Java development is always a completely trivial experience with no roadblocks whatsoever and every single problem can be fixed within 5 minutes! /s
2 days left til Java receives the 25th silver anniversary ๐
๐
I hate how module dependencies are reset on even maven import ๐ข
ok nvm im an idiot, there is a better way to manage this
finally
[16:29:53 INFO]: Registered Enchantment[minecraft:jackhammer, Jackhammer]
[16:29:53 INFO]: Registered Enchantment[minecraft:explosive, explosive]
just need to work out how to add it to the lores and do the checks again to see if it's on their tool ๐ฌ
gross you unblocked me
I mean, we use the built in mc system but we only use lore's to format.
who said i unblocked you
wym lores to format?
To display them I guess
enchantment lore is client side
so for custom enchants you need to add the lore manually
Which is ๐คฌ
What's said is
That enchantment table enchant names are client sided
Meaning you can't add your own echants :CCC
F
i mean then do the custom enchants in the same way?
You need to add the custom enchants to the lore yourself anyway right?
I thought mc handled that? I guess not.
enchantment lore is client side
so for custom enchants you need to add the lore manually
ok soz!
@prisma wave i think i got it thanks for helping
np
I can not no
Anyone have experience in luckperms knows how to get uuid from offline players? I know from online players, but offline doesn work somehow.
wdym?
how to get uuid from offline playersCan you explain what you are trying to do?
@obtuse gale
@old wyvern the issue is atm i cant get uuid of an offline player or something
Caused by: java.lang.IllegalStateException: Subject class class org.bukkit.craftbukkit.v1_8_R3.CraftOfflinePlayer is not assignable from interface org.bukkit.entity.Player
Caused by: java.lang.IllegalStateException: Subject class class org.bukkit.craftbukkit.v1_8_R3.CraftOfflinePlayer is not assignable from interface org.bukkit.entity.Player
at me.lucko.luckperms.common.api.implementation.ApiContextManager.checkType(ApiContextManager.java:56)
at me.lucko.luckperms.common.api.implementation.ApiContextManager.getContext(ApiContextManager.java:64)
at com.insanemc.core.spigot.hooks.LuckPermsHook.getOfflinePrefix(LuckPermsHook.java:100)```
When i try to get prefix from offline player.
OfflinePlayer != Player
Show us the defenition of getContext
oh wait its a luckperms func
OffilinePlayer has a method called getPlayer
^ but it returns null if player is offline
That's why you check first
paste
also tried getContext(Bukkit.getOfflinePlayer(uniqueId)) does not help
looks like luckperms doesn support offline players.
How would it look up offline players then?
Oh yea
idk then
i tried pretty much everything
public static String getOfflinePrefix(UUID uniqueId) {
LuckPerms plugin = LuckPermsProvider.get();
UserManager userManager = plugin.getUserManager();
CompletableFuture<User> userFuture = userManager.loadUser(uniqueId);
QueryOptions.Builder builder = DEFAULT_CONTEXTUAL.toBuilder();
builder.context(plugin.getContextManager().getContext(Bukkit.getOfflinePlayer(uniqueId)));
CachedMetaData metaData = userFuture.join().getCachedData().getMetaData(builder.build());
return plugin.getUserManager().loadUser(uniqueId).join() + Strings.nullToEmpty(metaData.getPrefix());
}```
uh
builder.context(plugin.getContextManager().getContext(uniqueId));
Im not exactly sure about whats wrong but this is what I was able to find
https://github.com/lucko/LuckPerms/blob/master/common/src/main/java/me/lucko/luckperms/common/api/implementation/ApiContextManager.java
line 56 is the thown exception you are seeing
in line 55
!this.handle.getSubjectClass().isAssignableFrom(subject.getClass())
handle being the ContextManager,
so... I guess you are supposed to pass a instance of ContextManager or any of its derived classes instead of a UUID/OfflinePlayer?
getContext(Bukkit.getOfflinePlayer(uniqueId)))You are not supposed to pass a OfflinePlayer in that function
neither a UUID
contextManager.getContext(user)
Pass the user instance
ah so i need to use player name
ah
Can you show me an example? i dont really understand whats wrong. like i used this method also with the old api
@old wyvern
uh you have the userFuture from which you will need to get the user so..
plugin.getContextManager().getContext(userFuture.get())
.get has a red line
show the stacktrace
and your current function
You are passing the wrong instance still
show us the function
Caused by: java.lang.IllegalStateException: Subject class class org.bukkit.craftbukkit.v1_8_R3.CraftOfflinePlayer is not assignable from interface org.bukkit.entity.Player
๐
(LuckPermsHook.java:59)
Different line m8
whats on line 59
last one was on line 100
I was getting the wrong method, second
what?
sec
worked
thanks for your help man
public static String getOfflinePrefix(UUID uniqueId) {
LuckPerms plugin = LuckPermsProvider.get();
UserManager userManager = plugin.getUserManager();
CompletableFuture<User> userFuture = userManager.loadUser(uniqueId);
QueryOptions.Builder builder = DEFAULT_CONTEXTUAL.toBuilder();
CachedMetaData metaData = userFuture.join().getCachedData().getMetaData(builder.build());
return Strings.nullToEmpty(metaData.getPrefix());
}```
this was the method
๐
Ew, completable futures
is it a completable future if its completed in the present?
For
Math
Death
death?
yes
Algebra Calculator shows you the step-by-step solutions! Solves algebra problems and walks you through them.
It's 7 44 am, and we gotta be in a video conference
lol
Pointed at your paper/pc screen?
Take a video of you writing, seamless loop, use vid as webcam input
Hello I have no idea where to put this but when I try to add my server to #705633781872328754 it says it can't reach the ip
[name] Serble
[ip] serble.mooo.com
[description] Serble is a server online 24/7 that has PVP UHC events kitpvp survival sumo spleef and many more.
But I pinged it and am looking at minecraft server list and it's online
Most likely getting blocked by dns/coudflare
Just use the direct ip
and mention the serble.mooo.com in the description
cc: @frail glade
What
fun calculateDiameter(): Int {
or
fun calculateDiameter() : Int {
sure
() - ()
@topaz bay
() : thats better
(): looks kinda nice as well though
(): looks like a dumb face
Lol
"I'm pregnant"
":()"
then again i also do the weird thing with parameters
@heady birch ?
fun function(): Int { or fun function() : Int {
former is standard
good
slow 4head
oof
You're a 4head
java::[]????????
?
I do
lol
The java keyword is how Odin can reach out and interop with the actual JVM
I'm probably just gonna keep it to only being able to create new instances of the defined type
it really doesn't
does anyone know why my server keeps saying insufficient perms when i try opening default kit when pex is:
options:
default: true
permissions:
- essentials.spawn
- basic.perms
- modifyworld.*
- essentials.kits.default
- essentials.kit.default
- essentials.kits.*
- kp.command.menu
- kp.command.kit
- kp.kit.default
just dont use pex
also yes dont use pex
ah ok
Even the pex dev says dont use pex lol
I mean yea it's being rewritten and he's not an arogant idiot
Graphics2d on raspberry pi is awfully bad
If you have a repaint() frequency above 2Hz
Yep I've already seperated parts into BufferedImages
Double's can fuck off
What kinda storage do y'all recommend?
Gonna have flatfile and db, but unsure what's the most efficient db
What do you plan to store?
Warp information
Warp Name:
- warp owner
- warp location
- warp world
- warp rating
- warp description
- warp status
- warp category
anyone know why i can't access my forums , but everyone else can
ive tried changing dns's still doesnt wokr
restarted pc, cleared cache etc
Probably still dns
Try pinging it to see what IP, could well be outdated, and see if you can directly connect via IP
"I never handle errors, because it is a waste of time"
Guys im gonna leave java/kotlin I found a much better programming language for me, it was hard to make this decision, but overall I think its gonna make me happier in my life. Once again this decision was not easy, and it took hours to consider, but I have finally made the decision to leave java/kotlin. I hope many of you will join my in scratch. https://scratch.mit.edu/
You are being sarcastic right?
Scratch is clearly a much better language
One moment I will gather evidence right now
๐
Anything is better than that
public static void main(String[] args){
System.out.println("Hello world");
}```
I mean one is clearly better
Odin and frigga could never do that
Nothing could ever be as good as that
it's so colourful

plus its got some great events
i do wonder what they made scratch in
scratch is objectively better than kotlin & java combined
obviously
I made a dig dug game on there
godot has a visual programming language too. Its ignored like anything.
its 2.16AM imma make minecraft watch this
W E T hands
@remote goblet Odin could never do anything
i'm enjoying myself
I'm glad you are enjoying yourself.
Are you using any kind of library for SQL?
Check out IDB
Use it!
progress on a different class
POG
pauseChamp
Create the data!
Do it!
AAAAAAAAAAAA!
@remote goblet you should throw IllegalArgumentException instead of NullPointerException if the file doesn't exist
true
Make the tables.
I don't even need the getPlugin
cus im only making it depend on Worldedit
im not making my own schematic generator system
hell no
nested ifs smh
shut up
?plsnoarrowcode
LITERALLY unreadable
someone that is willing to code a site for free for me using html? tagg me pls
okay @prisma wave
i think i made something horrible
CREATE TABLE IF NOT EXISTS skyblock_island ( island_id INT, owner_uuid TXT, name TXT, locked BOOLEAN, center_x INT, center_z int, range INT, spawn_x int, spawn_y INT, spawn_z INT primary key(island_id, owner_uuid));
``` dear god what have i done
i dont know how sql works lmao
txt is too big for the things you need, also consistency! xD
Either caps on everything or on none
You might wanna make name varchar(512)
I said the name xD
uuid 36 name 512
oh kek
TXT is literally 65535 characters, i don't think you need the name to be that big xD
Ooh nice, then put it on the leaderboard
why do you make a table for each island?
i didnt
I created a table if it doesn't exist
then i added the island to the table
@remote goblet Nice, now only one last thing, if you do CREATE or INT don't do primary or int, keep it consistent, not that it would make any different, just good practice ;p
@frail glade Created the tables!
SQL OnLine - (Test DB): SQLite, MariaDB / MySQL, PostgreSQL, MS SQL Server. User-friendly interface for data science. No registration for start, No DownLoad, No Install. Online test SQL script. Online Open/Save SQLite file. Online view all table DB. Fiddle link SQL text and DB...
Ahh
When you so tired you just look at your own code like "what does this do"
@remote goblet heidi
n run?
t
php looks so gross lol
like . for string concatenation
Bots
^
IDB
Do you have a link for me?
https://github.com/aikar/db @runic flume
thanks
Still haven't got a message from Barry yet saying how absolutely shite my code is smh
That might be a good sign
blame @quiet depot
o
Someone's a hopeful boi Frosty
it's either a good sign, piggy is lazy or you've got a very big list of "no" coming in
I'll take the last two for $1m
i gave up with Role Request
seems legit
Piggy I wanna be spit roasted like most of your family, come on man
soonโข๏ธ
I'm guessing thats a: we'll wait like a month and see kinda soonโข

i honestly can't find the rude to me one
glare did the rude one
o
Mine's going to need an essay, have fun writing that Piggy
I've got 24 emails of homework for the past month to do this weekend, fun
static abuse 
i can remove ur role and u can request one if u'd like
Which one is that?
dev role
oh
4head role
instant deny btw because of that horrid brace placement
Is you dissing allman again piggo?
my theme is borked
I had to switch my code style in IJ before I PRed the bungee expansion
Just because I knew someone would complain
Do you know how traumatic that was for me??
Oh shit I till gotta finish testing the commands thingy
you used to stand by k&r
I used to stand by a lot of things
Piggy, I improved the shit out of that, so delete the pr, ktnx
People change
frosty close it urself noob
effort
Atom One Dark
i switched it to a dark blue one 
use obsidian
still deciding if i like it
its better
I change my theme like every 2 weeks lol
Atom One Dark with orange highlight colour FTW
eol braces/semicolons are best style
if (urTrash) {
die() ;
}```
Piggy that gave me a stroke
I havent changed my theme is actual years
Obsidian is the first theme I got, and its been the same for like at least 7 or 8 years
Ive only slightly modified some of the colors
Imagine not java if (urTrash) die();
im currently watching a stream with discord on the side so all text looks horrible
katsu, imagine not java if(urTrash)die();
exactly
i'll ban your ass
I was gonna say something then
Frosty imagine static abuse
@quiet depot, You dun goofed.
o
:c
but decided not to cus id get banned 
You will rue the day
anyone wanna make me a super smart dialogflow ai for barry?
hey wtf
make it yourself 4head
WTF
How bout no
print("hello world")``` done
lame
I have no idea what that is
what games are you tryna pull
And it doesn't load
lmao
fuck whatever that is
lol
i dont understand any of it 
it's just a bunch of shit added to java
Its literally just trying to be kotlin
WOW omg its literally just Kotlin
What the hell is the purpose of this
i honestly don't know
I dont believe that for one second
That emoji is disturbing
it's better than ๐ฅบ
@remote goblet NEVER
@topaz bay DO IT
NO
I NEED TO KNOW WHAT I NEED TO FIX 
@quiet depot can you do it 
put it through sonarqube, it'll tell you all the obvious stuff
just not design principle violations

delete it
why
cause its poopoo
Why not return a file from the createFile method?
Instead of just throwing it away
Why it is called createFile if it doesnt always create a file, its more like a ensureFileExists method
oh look he helped u ori
Hey guy's i have never coded before, but keen to learn ! Would it be hard to create a plugin that only allows you to eat a golden apple every 5 minutes ? Not only that but when you try eating a golden able while on cooldown is informs you how long you have left on the timer until you can eat another one
that shouldn't be too hard
where to learn?
I'd recommend something like Sololearn, Hyperskill, MOOC, or if you're confident, the official java documentation
Once you're familiar with basic java move onto learning plugins via something like the bukkit wiki
Thanks buddy !
@quiet depot sorry for ping but what is sonarqube
o, hi alex!
hello
is it worth having this system as well?
iirc sonarlint does most of the same thing
charge your phone and get out of private window mode because we all know what you watched last night @onyx loom
sonarqube is just integrated into CI and things
cadacity is nice too
don't claim it's perfect until it actually is
which is basically never since literally anything can be improved
like what
:d
no ma'am
it wouldn't show that warning if the exception was provided in the signature
so it looks like this?
@NotNull final ItemStack itemStack, final int level) throws IllegalArgumentException {
hm
that is somewhat odd
https://img.bristermitten.me/12.23.41-2020.png but can't reproduce so
PPM?
secret
for now
tell
no
you've shown us now you tell us...
nope
rude af
its a plugin
its a spigot plugin
yes
KiB? MiB?
send me over the jar i'll take a look
MiB is like MB but slightly smaller
Wot
its bigger?
oh yeah bigger*
mib is 1024 right
So 1GB?
mib is what people usually think of when they use mb
men in black?
Just measure everything in foot
my jar is 8 foot 3
i about to throw something out window because i can not code at all
throw the pc
ok
ur code might work then
i dont get why adding ONE adds TEN
throw new PC();
well technically 10 = 2 if ur big brain
i'm putting all blame on sonarlint
12%10
compileOnly 'org.spigotmc:spigot-api:1.15.2-R0.1-SNAPSHOT'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation 'com.google.inject:guice:4.2.3'
implementation 'dev.misfitlabs.kotlinguice4:kotlin-guice:1.4.1'
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation "com.squareup.retrofit2:converter-moshi:2.9.0"
implementation "com.squareup.moshi:moshi:1.9.2"
implementation "com.squareup.moshi:moshi-kotlin:1.9.2"
implementation "co.aikar:acf-paper:0.5.0-SNAPSHOT"
``` what can I get rid of
spigot
spigot isn't shaded
paper
kotlin-stdlib-jdk8
What is that for KM?
Kotlin Mitten
imagine if that was it lol
its not
@prisma wave
it is
Whats the main plugin everyone uses to code plugins??
hello other KM
Lol
you don't need a plugin
@prisma wave make kotlin a plugin and throw it in there ez
Java and spigot / a fork of spigot
me
@royal violet i'd recommend using IntelliJ IDEA to actually write the code
but fr use notpad++
@pallid gale what was the reaction to delete messages? Or it doesnt work everywhere
doesnt work everywhere
Pls make it to
but that makes no sense
it tells barry to send the user a message saying there service was bad
Have you seen kali's message ??
๐๐
What's eclipse ?
trash
nononono
Nothing
don't worry about it
get that out of ur head
=google eclipse
โข Removed 5 messages.
lol
yay 4.8MB
ABUSE
screw you moshi
Yes
fat jar
use intelliJ like BM said to
demote gaby and hire brister
^
i got u gab gab
don't demote gaby
-2 that shit
Spin da whEeL
Spin da whEeL
yw

you're welcome
@prisma wave wanna replace gaby
no you need to be trusted
bm replaces gaby but i replace fc and ban bm
https://i.imgur.com/mdr2KgP.png I see no got up here, other than me
or on support
:))
ayyy lets go gaby i voted -1 and the only one who did so
funny, why isn't alex on support yet
ly kali
Yes
he needs to be on support ๐
4.8mb is still too big for spigot right?
he helps everyone ๐
They can apply next intake <o/
he should just get it
๐
you get paid
news to me
apparently
wanna get paid
all the support roles do is play ๐ with randoms
we do nitro boosts that pays you
how much $ is 1 boost
?
you dont earn money

god i hope you knew that
we do nitro boosts that pays you
i know
but this is what u said
smh i was playing along ๐
you know i'm drunk right
its easier to get drunk and forget about where you messed up in life than be sober
damn that went deeper than last night
take that how ya wanna, just like what she said last night
nope
shut up time
ok buddy
it's also runtime dependency time
i'm really out of it arent i
heres a flashbang to make u not see it
that's a font?
no clue, i switched to obsidian theme and it just does that whenever i type !=
Probably enabled font ligatures
jetbrains mono and fira code also have ligatures for >= <= ===, and a few others
Wait what does it convert === to?
Ew
I like it
i dont like how dark the text is
realistically using === in kotlin basically never happens so
=== is mostly js no?
for some reason I keep typing =/= now instead of != and then realising its not =/= lol
nice lol
I will write something in an if without doing the ! first





