#dev-general

1 messages ยท Page 470 of 1

old wyvern
#

What is it?

#

It itself is the bootstrapper tho ๐Ÿฅฒ

#

Turing will be proud

ocean quartz
#

Lets do what Luck does with his Adventure lib
He manually relocates a fat jar into his repo and downloads it at runtime, since it'll be considered 2 different libs, it won't have version issues
Like io.github.slimjar.gson and io.github.slimjar.asm

cinder flare
#

oh like bootstrapping a compiler? that's kinda cool

ocean quartz
#

Basically fork gson relocate it and publish to our repo

old wyvern
cinder flare
#

MF-GSON ๐Ÿ˜ฎ

old wyvern
#

ohh

#

wait

#

so we actually use a different artifact itself even at compile time?

ocean quartz
#

Yeah

old wyvern
#

like the relocated one?

#

ahh

#

man

#

thats genius

#

๐Ÿ”ฅ

#

Imma try that out now

ocean quartz
#

Nice pOg

old wyvern
#

Matt big brains PlusOne PlusOne

frail glade
#

Technically couldn't you make it just compile only since bukkit already has it?

#

Or is that what matt just said?

old wyvern
#

its supposed to work fine outside spigot/bukkit as well glare

frail glade
#

Could it detect if the library exists at runtime?

#

I guess that doesn't really work

old wyvern
#

It should be able to, but the version may cause issues

dense dew
#

hi, are configs cached?

ocean quartz
#

It's cached

dense dew
#

thanks

gusty glen
ocean quartz
#

Bukkit caches it

half harness
#

which is the reason why theres a reload method

#

the reload method reloads/refreshes the cache

ocean quartz
#

@wind bolt Add some sort of description and showcase some features

wind bolt
#

Okay

#

Currently working on GUIA which uses the core as its framework

#

I'll showcase that as well for functionality purposes

ocean quartz
#

Nice ;p

cinder flare
#

yeah I was gonna ask what that even does lol

static zealot
#

yo what other good paste bins are out there?

#

bcz hastebin is broken

#

and been like that for a while and I want to update ?paste

obtuse gale
#

It's not permanent tho

static zealot
#

gonna leave helpchat one only for now

#

?paste

compact perchBOT
#
FAQ Answer:

Paste Services
When asking for help with a config/menu/code issue please use our paste bin:
(we prefer it over pastebin.com)
โ€ข HelpChat Paste - How To Use

static zealot
#

there we go

#

also changed Usage to How To Use bcz

#

people never actually click it lmao

gusty glen
#

why does KT @EventHandler(priority = EventPriority.MONITOR) private fun ChunkUnloadEvent.onMobsDespawn() { println("Unloading chunk") chunk.entities.forEach { if(it is LivingEntity) println("unloading ${it.name}") } } don't print any "unloading mobName", only "Unloading chunk"?

#

it only print a bunch of those```[17:02:24 INFO]: Unloading chunk
[17:02:24 INFO]: Unloading chunk
[17:02:24 INFO]: Unloading chunk
[17:02:24 INFO]: Unloading chunk
[17:02:24 INFO]: Unloading chunk

cinder flare
#

sounds like it isn't a livingentity

gusty glen
#

i spawned a rabbit in the chunk I was and teleported away just to make sure

static zealot
#

it might unload them before the chunks are completely unloaded

gusty glen
#

hmm you might actually be right, blitz, maybe there's an "entityunloadevent?"

#

and why the monster I've set as persistent keep despawning?

static zealot
#

you want to use LivingEntity#setRemoveWhenFarAway(boolean)

gusty glen
#

will this keep them "persistent" in a sense that they are saved when the chunk unloads, but at the same time they don't force the chunk they're in to be loaded?

static zealot
#

Not sure I'm afraid. The spigot docs are very bad

fervent nebula
#

hello can someone help me i use this command so console tp the player to another world
/mv tp %player_name% hub
but it says there is no player with this name
%player_name% this give the playername of the player who apply it
how to fix it?

gusty glen
#

I'll try

fervent nebula
#

ok sorry

gusty glen
#

thanks mojang

static zealot
#

oh well

obtuse gale
#

@gusty glen worked fine for me lol

#

it was right in the middle of a chunk tho, i can try on the edge

yep, works fine on the very edge of a chunk as well

pale shell
#

kotlin is taking over my project should i be worried? thonking

static zealot
pale shell
#

I have more and more files turning into kotlin files.

static zealot
#
[22:47:12 WARN]: [FakePlayers] * There is a new version of FakePlayers available!
[22:47:12 WARN]: [FakePlayers] *   Your version: 2.2
[22:47:12 WARN]: [FakePlayers] * Latest version: 2.1``` ๐Ÿฅฒ
static zealot
pale shell
#

fakeplayers?

static zealot
#

nothing to be worried about

static zealot
#

its pretty good

#

they added bungee support now

#

as well

#

tho I've got no idea how it works with bungee lmao

pale shell
#

it just works

static zealot
#

probably. I just didn't test

gusty glen
pale shell
#

hypixel uses it ๐Ÿฅฒ

static zealot
obtuse gale
#

why would they lmao

static zealot
#

yeah I really don't see what the use would be for them

pale shell
#

why's kotlin so good tho

    @EventHandler
    fun onInteract(e: PlayerArmorStandManipulateEvent) {
        val p = e.player
        val entity: Entity = e.rightClicked
        val id = e.rightClicked.getMetadata("id")[0].asInt()
        e.isCancelled = true
        p.sendMessage("entity: $entity")
        p.sendMessage("id: $id")
    }
#

look how simple it is

gusty glen
#

bruh

#
@EventHandler
fun PlayerArmorStandManipulateEvent.onInteract() {
  val id = rightClicked.getMetadata("id")[0].asInt()
  isCancelled = true
  player.sendMessage("entity: $entity")
  player.sendMessage("id: $id")
}```
ocean quartz
#

Ah you did it faster than me ๐Ÿฅฒ

pale shell
#

?

#

that works?

gusty glen
gusty glen
#

?tryandsee

compact perchBOT
static zealot
#

yeah its nice. I said I would start using this but to lazy to switch old ones to this

gusty glen
#

I think I see part of the problem. Monster (agressive entities) are despawned as soon as the player moves away from them, much before the chunk itself unloads, right? Is there an event that is fired when this kind of despawn happens?

obtuse gale
#

I mean yeah that's what setPersistent/isPersistent is for lmao

prisma wave
#

join or else

ocean quartz
#

OR ELSE?

obtuse gale
#

@prisma wave shut up weeb

ocean quartz
#

Yeah, WEEB!

prisma wave
#

AAAA

obtuse gale
#

WHO PING

#

@ocean quartz I DEMAND logs

prisma wave
#

me

obtuse gale
#

pussy

prisma wave
#

PROBLEM?

steel heart
#

@prisma wave

obtuse gale
#

YES

#

weeb

half harness
#

intellij is made in java, right? why doesn't it use a jar file? ik u can convert to exe, but whats so bad about a jar :p

ocean quartz
#

Jar file requires jre to be installed

gusty glen
half harness
ocean quartz
#

Ahh lovely commits ๐Ÿฅฒ

half harness
#

my bedwars commits are even worse

#

๐Ÿฅฒ

gusty glen
#

bad commits? ๐Ÿฅฒ

half harness
#

ohhh boy

gusty glen
#

but I also have good commits

half harness
#

i dont

#

D:

gusty glen
half harness
#

why do you commit so muchh

#

i only commit like 1-2 times per day

#

:p

gusty glen
#

cause the project is so big that if I don't commit every so often and break something, I cannot even restore or check what I've break

half harness
#

so you use git as backups

#

basically

#

as the reason of constant commits*

gusty glen
#

yup, and ofc it's a private project

half harness
#

oh

#

closed source

#

๐Ÿคข ๐Ÿคฎ

gusty glen
#

not closed source

half harness
#

๐Ÿคจ

gusty glen
#

it's only that I have to reason to make this public since one 1 person will use it

half harness
#

wdym

#

my bedwars plugin is OS even though i know that no one will contribute to it ๐Ÿ˜ข

gusty glen
#

do you know what that is, dkim?

half harness
#

๐Ÿ‘€

gusty glen
#

is is 6949 lines of suffering

half harness
#

open source

#

or die

#

i need to see if you're committing WET (opposite of DRY)

gusty glen
#

lul

half harness
#

even my bw plugin is only 5.3k lines

gusty glen
#

I desperately need to make sc-cfg a thing so I can remove about 300~400 lines from the project

#

stupid entity that get stupidly marked as stupid dead as soon as I leave it alone and move away, isPersistent is a joke

half harness
#

what is sc-cfg?

gusty glen
#

hehe

half harness
#

open

#

source

#

plz

#

wait

prisma wave
#

why kotlin

#

why

#

such a downgrade

ocean quartz
#

I actually liked this change

old wyvern
#

What is it called now?

#

titlecase?

ocean quartz
#

Yeah

old wyvern
#

ah alrighty

gusty glen
#

I have no opinions about this change

prisma wave
#

Come on man

half harness
#

anyone want to help me test bedwars ๐Ÿ˜›

ocean quartz
#

How would you guys store an index/summary on a database? thonking
Example:

โ”œ Entry
โ”œ Entry 2
  โ”” Sub entry
โ”œ Entry 3
  โ”œ Sub entry
  โ”” Sub entry 2

This is what I have, but not very happy with it ๐Ÿ˜ฉ

#

Jetbrains be like: "Kotlin doesn't need util classes!"
Also Jetbrains:

half harness
#

๐Ÿฅฒ

jovial warren
#

fun fact: Exposed isn't official JetBrains material

prisma wave
#

Exposed bad

jovial warren
#

shut the fuck up BM

#

you're just wrong

prisma wave
#

Uses a util class in kotlin

#

Therefore bad

jovial warren
#

it's got the team badge, meaning it's made by a JetBrains staff member, not not officially maintained by JetBrains

old wyvern
#

Kotlin bad

ocean quartz
#

It's in the Jetbrains org on github, it uses org.jetbrains.exposed, it's on the Jetbrains support channel on slack, it's as official as it gets lmao

jovial warren
#

not really

jovial warren
#

there's different JB badges

old wyvern
jovial warren
#

how is that bad?

old wyvern
#

Kotlin bad

ocean quartz
#

Bad!

old wyvern
#

^

jovial warren
#

Yugi bad

#

that's what's bad

old wyvern
#

Yugi good

#

Haskell good

#

Simon Good

#

GHC good

jovial warren
#

and BM has smol brain

prisma wave
#

Wait until you see my discovery

ocean quartz
#

Haskell has Simon, what do we have with Kotlin? This guy

jovial warren
#

breslav

onyx loom
#

does ur discovery include pdm or plumber

ocean quartz
#

Kotlin was built by the russians to mind control developers!!

prisma wave
prisma wave
#

a practical use of the Semigroup

#

Incredible

jovial warren
old wyvern
prisma wave
#

me

old wyvern
#

me too

onyx loom
prisma wave
#

Actually you implicitly asked when you said I was "smol brain"

prisma wave
static zealot
#

I love plugins that use colors in their plugin enabled/disabled messages and also make them like 7 lines just telling you that you're on x version or some shit like that ๐Ÿฅฒ

jovial warren
#

lol

onyx loom
#

is this fixed in krypton?

static zealot
#

at least use another color... not yellow or red ffs

jovial warren
#
2021-05-08 00:29:00 [Server Thread] INFO [TestPlugin] - ---------------------------------------------
2021-05-08 00:29:00 [Server Thread] INFO [TestPlugin] - Running TestPlugin
2021-05-08 00:29:00 [Server Thread] INFO [TestPlugin] - Version 1.0-SNAPSHOT
2021-05-08 00:29:00 [Server Thread] INFO [TestPlugin] -
2021-05-08 00:29:00 [Server Thread] INFO [TestPlugin] - By
2021-05-08 00:29:00 [Server Thread] INFO [TestPlugin] - BomBardyGamer
2021-05-08 00:29:00 [Server Thread] INFO [TestPlugin] - ---------------------------------------------
static zealot
#

when it takes 5 minutes just to open a word file ๐Ÿฅฒ

#

and another 7 to load

jovial warren
#

big blocks of text like that appearing from plugins in console? hell no

onyx loom
jovial warren
#

tail -n โˆž

oblique heath
#

๐Ÿ˜ฆ

prisma wave
#

TAIL

oblique heath
#

h

prisma wave
#

(haskell reference)

static zealot
#

I give up with this fucking project. gonna just ask the dev to change it himself lmao

jovial warren
#

I don't agree with cutting off logs anyway

#

or removing logs

onyx loom
#

y not

#

it is OBJECTIVELY a good idea

#

/s

jovial warren
#

because, especially if you remove something necessary for debugging later in a report, it can be really hard to figure out what's actually wrong sometimes

prisma wave
#

I have an unhealthy urge to just type "val main" all the time

#

I've done it like twice now

#

Not even coding

#

Just

#

val main

#

Wait

#

"Just"

#

๐Ÿ˜Œ

onyx loom
#

๐Ÿคจ

#

when are u removing ur pfp

prisma wave
#

soon

onyx loom
#

evven ur haskell buddy ivan doesnt like it

#

hurry it up

prisma wave
#

don't care

onyx loom
#

please

prisma wave
#

Don't like it you know where the door is

onyx loom
#

i do not know where the door is

prisma wave
#

then you are uneducated and STUPID

steel heart
#

I have been banned from 2 discord as already cause I was too random (advertised Haskell) which concludes its not that great

prisma wave
#

WHAT

steel heart
#

Yeah

prisma wave
#

EXPLIAIN

#

we are being PERSECUTED

oblique heath
#

they're frightened of what they don't understand

half harness
steel heart
#

So I asked them if they knew Haskell and if they knew what a monad and monaid are

prisma wave
onyx loom
#

haskell bad

prisma wave
#

SHIT UP

#

SHUT UP

steel heart
#

Youโ€™re just mad

#

Itโ€™s fine

onyx loom
#

daily bm mental breakdown

prisma wave
#

AAAAAAA

steel heart
#

Impurity may cure you one day

onyx loom
#

"haskell bad" - the trigger phrase

prisma wave
#

๐Ÿ˜– ๐Ÿ˜– ๐Ÿ˜– ๐Ÿคฌ ๐Ÿคฌ

half harness
#

haskell bad

steel heart
#

Itโ€™s fine stateful components will be there for you when you need them

prisma wave
#

STOP

#

๐Ÿ˜– ๐Ÿ˜– ๐Ÿ˜ซ

#

CONFOUNDED emoji

#

For when you feel CONFOUNDED

steel heart
#

We will mutate your bad Haskell habits

prisma wave
#

NICE TRU

#

TRY

steel heart
#

you said tru

#

Which means true

#

So that means youโ€™re implying I am right

prisma wave
#

MO

half harness
#

:DDDDD

prisma wave
#

No

#

No

#

N

steel heart
#

Elixir is pog tho

prisma wave
#

elixir GOOD

steel heart
#

Ye

prisma wave
#

it's no Haskell BUT

steel heart
#

Acceptable I guess

#

Even for someone as crazy as you

prisma wave
#

THNX

#

Shawty like a melody in my head

onyx loom
#

๐Ÿ˜‚๐Ÿ˜‚๐Ÿ˜‚

steel heart
#

Youโ€™re an odd one

prisma wave
#

Cheers

onyx loom
#

ipod stuck on replay

prisma wave
steel heart
#

Weeb + 2013 song + Haskell worshiper

prisma wave
#

personality trait

#

At least its not boring "kotlin good java bad"

steel heart
#

Fair point

prisma wave
steel heart
#

I mean yeah sadly true

forest pecan
#

is it just me or did discord just like

#

oh

#

messages are delayed for me tho

oblique heath
#

rip discord ๐Ÿ˜ฆ

half harness
#

none of my messages will even send

forest pecan
#

Yea

half harness
#

oh that one sent

forest pecan
#

that one too

#

theres just a delay

oblique heath
#

looks like it's getting back on it's feet

#

slowly

half harness
#

anyone want to help test bedwars ๐Ÿ™‚

lost forge
#

Nah... I need to be testing my own plugin... I keep putting it off....

half harness
#

cmon

#

play some bedwars with me ๐Ÿ˜„ /s

steel heart
#

sure

half harness
#

YAY

#

CONLCURE

#

gimme 2 minutes โค๏ธ

#

conclure

#

still there?

#

๐Ÿ˜ข

steel heart
#

Oh I forgot sry

#

Uh turned off pc

half harness
#

๐Ÿ˜ญ ๐Ÿ’”

#

ok

#

anyone else want to test bedwars with me? ๐Ÿ˜„

static zealot
#

I would have done it if it was 1.16

#

.5

#

or .4

dawn hinge
#

Eww

half harness
#

i have viaversion

#

D:

#

afk

ocean quartz
#

Use latest ;p

obtuse gale
ocean quartz
oak raft
#

Progress ๐Ÿ˜Ž

#

I'm already lost at coroutines \

half harness
ocean quartz
oak raft
#

the docs introduced me to coroutines and I'm lost

ocean quartz
#

Don't mess with them just yet

forest pecan
#

i will test urs

oak raft
#

Same with "an object oriented hello world"

#

no clue how that works

half harness
forest pecan
#

i cant rn

#

in like 15 min

#

i can

half harness
#

o

#

ok

#

@forest pecan puuuuuuuuuuuuuuuuuuuuuuuuuuuulse

#

sry for pong

forest pecan
#

Ok im coming

half harness
#

๐Ÿ˜ณ i saw that

#

whats ur test server

#

version

half harness
obtuse gale
#

"15 minutes"

half harness
forest pecan
half harness
#

ahh no viarewind?

forest pecan
#

thats long

#

yeah

#

urs is 1.8 right?

half harness
#

ok 1 sec

#

well 1.8 with viaversion

#

so doesn't matter

forest pecan
#

o

half harness
#

going on 1.16

#

since ages

#

breaking my anti1.16 streak

forest pecan
#

lmao

obtuse gale
forest pecan
#

nah like super long

#

also funnycube is online

#

lets not talk about it lol

cinder flare
#

god damnit dkim why

#

stop deleting your messages

half harness
obtuse gale
#

๐Ÿ‘€

cinder flare
#

im not fast enough to move my hand to my mouse to click on them

obtuse gale
#

he's right though lol

cinder flare
#

FUCK

#

i just missed that one

obtuse gale
#

who

half harness
cinder flare
#

but I don't want to auto open spoilers

#

that's the whole point

forest pecan
#

dkim

#

whats ip

obtuse gale
#

lmao

cinder flare
#

if someone besides you spoilers something, I usually want to be warned about what it is

cinder flare
#

i hacked him

half harness
#

i thought we were testing ur server first

forest pecan
#

oh

half harness
#

pulse dm ur ip @lofty meadow

forest pecan
#

i can test urs if you want

half harness
#

AHHH

forest pecan
#

ok

half harness
#

sorry pulse

#

i meant to ping pulse

obtuse gale
#

lmaooo

half harness
#

not pulse

cinder flare
#

pulse gimme ip

#

i wanna see what's going on

forest pecan
#

Ok lol

half harness
#

NOOOOOOOOOoooooooooooooooooooooooooooooooooooooooooooooooo

#

pulse

#

i-

obtuse gale
#

?

half harness
#

pulse ur breaking my mc

obtuse gale
#

lol?

half harness
#

NO MESSAGES ARE SENDING_ _ _ _ _ _

#

aaaaaaaaaaaaaaaaaaaaa

#

so laggy

scarlet raptor
#

i love you dkim btw

half harness
#

lol

#

๐Ÿ˜ณ

obtuse gale
#

@forest pecan fix dkim ๐Ÿ˜‚

forest pecan
#

Lmao

cinder flare
#

oop what did dkim do to deserve such unconditional love

forest pecan
#

he timed out lol

#

dkim

#

send me ip

half harness
forest pecan
#

Oh

half harness
forest pecan
#

Ok

half harness
#

its still playing

forest pecan
#

Lmao

half harness
#

;-;

forest pecan
#

send me ur ip

half harness
#

1 sec

forest pecan
#

Starr after i help dkim test

#

you can come

#

1.16

half harness
#

no star

#

join us

#

in bedwars

#

โค๏ธ

forest pecan
#

lmao

half harness
#

mc crashed anyways

forest pecan
#

what is Zulu Platform

#

what

half harness
#

thats what lunar uses

#

apparently

#

starrrrrrr

#

r uthere

#

D:

#

1 sec pulse ima open up mc

cinder flare
#

no bedwars

half harness
#

oh

#

๐Ÿ˜ฆ

cinder flare
#

just test

half harness
#

ok

#

no i meant test bedwars

#

ยฏ_(ใƒ„)_/ยฏ

#

aka test out the features and try finding bugs

forest pecan
#

lmao

#

Yeah

half harness
#

|| aka play some bedwars ||

#

;-; its grayed out

#

i want to switch resource packssssssssssss

scarlet raptor
#

ok but ily

half harness
#

๐Ÿ‘€

cinder flare
#

also dkim has a fan?

half harness
#

nvm pressed esc it out and then it works now

cinder flare
#

that's kinda funky

half harness
#

ok pulse

#

ip time

scarlet raptor
#

it will take about 30 minutes to open my laptop + minceroft

half harness
#

oh

#

then u dont have to

#

i was just wondering if u had mc open already

#

:p

cinder flare
#

30 minutes holy cow

#

dkim your lover is quite slow

half harness
#

๐Ÿ˜”

cinder flare
#

i was gonna say how did you not understand that

half harness
#

we all have potato pcs

half harness
scarlet raptor
#

or my 6 years-old laptop is potato

half harness
#

only 6 years?!

#

mine is 10 years

#

gg

scarlet raptor
#

oof

cinder flare
#

6 years? that should still be rocking

#

no way it takes half an hour

half harness
#

pulse isn't joining my server ๐Ÿ˜ข

#

time to go cry in a corner

ocean quartz
#

My pc is 6yo still running like a beast

cinder flare
#

yeah I made my pc in 2016, it's coming on 5 years now

scarlet raptor
#

its good, but so many fps drops because of 105ยฐC procressor

half harness
cinder flare
#

105 C

#

no way

half harness
#

isn't that like

cinder flare
#

it would shut down at that point

half harness
#

too hot

cinder flare
#

yeah dude that's why thermal throttling was invented

scarlet raptor
#

i tried to do thermal paste but i realized that my video card cover sticked to video card

ocean quartz
#

Your pc should turn off around 95

scarlet raptor
#

its closing above 105 i guess

forest pecan
#

105 degrees celcius is insanely high

half harness
#

pulse

#

did u die

scarlet raptor
#

intel core i7 5500U

half harness
#

nvm

ocean quartz
#

Pretty sure it doesn't get that hot, it'll turn off instead

#

Unless you turned off security

cinder flare
#

doubtful

#

im sure it's like MSI Afterburner lying to you

scarlet raptor
#

i looked to that on 3 different programs

#

Msi afterburner, nzxt cam and cpuz

forest pecan
#

they all say 105?

scarlet raptor
#

yes they are say same

forest pecan
#

cause im not kidding but 105 can literally cause cpu damage

#

if its real

scarlet raptor
#

not exact 105 everytime

forest pecan
#

still

#

anywhere in the 80s or above

scarlet raptor
half harness
#

oh

#

im stupid

scarlet raptor
#

@half harness 1.8 or 1.16? if 1.8, i can open it quick

half harness
#

thx ๐Ÿ™

scarlet raptor
#

kk

scarlet raptor
half harness
#

ill get it up in like 5 mins

#

AHHH INTELLIJ IS FREEZING _ _ _ _ _ _ _ _

scarlet raptor
#

are intel core i7 5500U and Geforce gtx930m good?

half harness
#

i have i5 3450

scarlet raptor
#

oh

half harness
#

and intel graphics integrated 2500 i think

#

:p

scarlet raptor
#

i take less fps drop when i use integrated graphics in summer

half harness
#

huh

static zealot
#

I mean they're ok but not great.

half harness
#

thanks intellij

#

decided to show my files

#

and nothing else

scarlet raptor
#

lol

half harness
#

anyways im building jar & starting server

#

๐Ÿ™‚

scarlet raptor
#

waiting while lunar updating something useless โฐ

half harness
#

lol

#

ill dm u ip

#

when do u think you'll be ready?

#

btw @forest pecan server is up ๐Ÿ˜„

scarlet raptor
#

finally mojang text

half harness
#

pulseeeeeeeee

forest pecan
#

oK

half harness
#

oh

#

ok

#

i thought u went offline or smth

oak raft
#

Kotlin's simple af

#

I got this in the bag

#

Also what's a when expression

#

What could that compare to in terms of Java

cinder flare
#

switch

#

but good

#

it pattern matches and makes a lot more sense

oak raft
#

Interesting

half harness
#

pulse is going to crash my server

#

heeeeeeeeeelp

forest pecan
#

No

scarlet raptor
#

congrats pulse

#

u stucked my pc

half harness
#

:p

#

i think server crashed

scarlet raptor
#

:3

forest pecan
#

No

#

server didnt crash

#

lol

half harness
#

y did u blow up 1982739217398217398217398217 tnt

#

tgsauyjhdkas

forest pecan
#

only 5000 actually

half harness
#

server tps is at 11

forest pecan
#

lmao

scarlet raptor
#

what

#

what

#

someone logged in from another location

#

hmm

half harness
#

i stopped server so intellij can take a breath

forest pecan
#

lmao

scarlet raptor
#

you can write me on lunar chat when something happens dkim

half harness
#

bugs:

  • item unbreakable isn't working
    - worlds are sometimes resetting
  • armor not permanent
  • tools not permanent
  • shopkeeper opening villager shop for a short time
scarlet raptor
half harness
#

lol

#

btw do u guys have to go or anything soon

scarlet raptor
#

no

half harness
#

alr

#

ig for pulse it's a yes

scarlet raptor
#

lol

half harness
#

intellij = dead again

obtuse gale
#

lol

lost forge
#

Intellij hates you

oak raft
#

This is what im saying

#

eclipse is just better

static zealot
#

true

hot hull
lost forge
#

Hi

hot hull
#

@boreal needle Damn you for updating gradle on tags

boreal needle
#

wdym

hot hull
#

You updated gradle on tags

boreal needle
#

there was nothing there in the first place, i only added the wrapper

hot hull
#

properties were

#

all good tho

boreal needle
#

ah sorry

hot hull
#

need to read through your pr and setup the actions properly but effort :3

boreal needle
#

sadly actions dont do everything i need them to do

#

i dont really use them for much anymore

hot hull
#

Not sure why I'm even bothering with them for this

boreal needle
#

i just run a tc instance instead

jovial warren
#

I use a mix of both lol

#

I use Jenkins for master builds where I want artifacts published, but use actions for test builds where all I care about is the result of the build

boreal needle
#

yeah i do the same

jovial warren
#

oh btw, before I forget and end up with 3 days in a row of no productivity, what should I work on in Krypton today guys?

boreal needle
#

except with tc because jenkins is bad

hot hull
#

Well what still needs to be done Bardy

jovial warren
#

might add Guava in because it might have like 3 or 4 useful things and to maintain compatibility with most multiplatform plugins that expect it there

jovial warren
#

could add in a flat generator to avoid you requiring a world

hot hull
#

Well what are some major things

jovial warren
#

or could add block breaking ๐Ÿฅฒ

quiet depot
#

no

#

no break

#

only place

jovial warren
#

lol

quiet depot
#

instead of breaking u just place air

hot hull
#

I mean you could implement the current state of my world gen, it should generate an octave world fine

jovial warren
#

maybe

#

lemme try it

quiet depot
#

can u figure out how gravity works

#

and implement it so i can change gravity

jovial warren
#

what's the artifact?

jovial warren
quiet depot
#

mega oof

jovial warren
#

@hot hull TerrainGenerator seems to be archived, what's the new one? Op65nTerrain?

onyx loom
#

pig remake ur rocket thing in krypton

boreal needle
#

what about falling blocks?

quiet depot
#

ye that was the goal kaliber

onyx loom
#

๐Ÿ™

jovial warren
#

falling blocks I guess could have their gravity altered

#

and other falling entities

#

anything that I as the server am in control of I can change

quiet depot
#

well i want to be able to control gravity

#

without potions

jovial warren
#

alright sure

quiet depot
#

make it happen

#

thanks

jovial warren
#

make an issue for it on GH so I don't forget pls ๐Ÿ™‚

quiet depot
#

will give krypton a solid 10/10 if it happens

hot hull
#

Yes Bardy

jovial warren
#

is it published to a Maven repo? or have I gotta do that bit myself? lol

hot hull
#

It is not, once it's in a working state, I'll throw it on my repo

jovial warren
#

debating whether to fork this to KryptonMC or personal lol

quiet depot
#

I can't open an issue

jovial warren
#

oh yeah, fuck

#

I didn't fix issue templates

#

I'm stupid

#

gimme a min

#

done

#

try again now pig

proper plaza
#

How can I send a message to all the servers of a network through bukkit?

lost forge
#

getPlayers from bungeecord is what you're wanting

#

which returns ProxiedPlayers

#

All servers, not all players

#

Bukkit wouldn't be able to get all players on all servers though? That's what getPlayers from bungeecord is for?

hot hull
#

I want to hit you

lost forge
#

I haven't done anything with bungee and networks yet so.... ๐Ÿคทโ€โ™‚๏ธ

ruby craterBOT
#
public abstract void broadcast(BaseComponentย message)```
Description:

Send the specified message to the console and all connected players.

Parameters:

message - the message to broadcast

distant sun
#

val bannerMeta = meta as BannerMeta and then use bannerMeta or can I just do meta as BannerMeta and use meta?

lunar cypress
#

The latter

#

You don't need to do either if you do an is check though

distant sun
#

Yea I know, ty

soft quest
jovial warren
#

no

#

especially not if you are too impatient to wait for someone to respond in #general-plugins

jovial warren
#

I was wondering why my profiler didn't pop something properly

#

then I realised that I forgot to change the if check for rainTime being greater than 0

hot hull
#

man using an actual profiler lmao

jovial warren
#

lol

#

it's just a Kotlin port of the vanilla profiler

pastel imp
#

just got intellij ultimate xD

#

(kinda random and sus lol)

onyx loom
#

congrats

#

welcome to the flex club

pastel imp
#

xD

#

gotta be honest

#

don't even know the benefits lol

onyx loom
pastel imp
#

ty

onyx loom
#

basically a lot of useless features that ull probably never use

hot hull
#

DB integration only good thing

onyx loom
#

Go integration fingerguns

pastel imp
#

Detecting Duplicates this is interesting lol

hot hull
#

Imagine writting duplicate code from the start sheesh

onyx loom
#

i will never know why thats not in community edition

pastel imp
#

my coding skills do be kinda sus

jovial warren
#

just adding Guava and commons-lang3 into Krypton rn because of 1. compatibility and 2. I think we could use them somewhere, but I'm just trying to decide if I should replace Caffeine with Guava's built-in cache or not

quiet depot
#

Caffeine with Guava's built-in cache or not
Absolutely not

jovial warren
#

so I should keep caffeine then right?

quiet depot
#

yes

#

and there's no point whatsoever of adding guava & commons-lang3 just because people might use them

jovial warren
#

nah we'll use them internally too

quiet depot
#

only add something if you need it for what you're making right now

#

add them when you need them

#

not prior to

lavish notch
#

Someone's got a cringe status ๐Ÿ˜›

jovial warren
#

there is at least one place that I had to rewrite an entire section of commons lang into Krypton to avoid depending on it, so I should definitely be using it there

#

and I have a few places I could do with a multimap

quiet depot
#

and put simply

#

it's better

jovial warren
#

ah okay

#

oh also, you know that depending on the data fixer upper will give me Guava anyway right?

#

oh, and Brigadier also gives me Guava

#

so I might as well add it as a dependency anyway

half harness
lavish notch
#

๐Ÿคฃ

hot hull
# half harness 2021.1.1

First time I'm recommending someone to downgrade, but since your pc a literal potato, use something like 2018.3 (that's what I used and it ran perfectly)

half harness
#

2018?

hot hull
#

Yes

onyx loom
#

or u should recommend to upgrade ur pc

hot hull
#

That'd be the ideal option yes

half harness
#

well

#

the thing is

#

I was going to upgrade my pc

#

but i have no idea how

#

so i asked some ppl

#

and they said that my pc is crap so i'd have to upgrade it all

pale shell
#

why do people buy my plugins in the middle of the night

half harness
#

so i ended up only upgrading memory

onyx loom
#

u would yes dkim ๐Ÿคฃ

half harness
#

4 -> 8gb

onyx loom
#

what.

hot hull
#

Ever heard of timezones Odin?

pale shell
#

oh ye

#

LOL

#

I swear my buyers are either A) American or B) Aussies

#

"Today at 2:48 AM"

onyx loom
#

or maybe they just got a fucked sleep schedule ๐Ÿคก

hot hull
onyx loom
#

just why.

half harness
#

:p

oblique heath
half harness
pale shell
#

Imagine if only we could truely upgrade our memory irl ๐Ÿ‘€

oblique heath
#

okay good

lavish notch
pale shell
#

Don't mind me, just jamming a new bit of RAM into my ear.

oblique heath
#

ram is way too expensive to consider buying right now

onyx loom
#

is this still with the celeron or whatever u have dkim?

half harness
#

thats my laptop

onyx loom
#

ah

#

what u got in ur pc

lavish notch
pale shell
#

If humans had RAM slots, where would it be?

half harness
#

the laptop with a lower clockspeed than my 6 year old raspberry pi ๐Ÿ˜ข

half harness
hot hull
#

Up your ass

oblique heath
half harness
hot hull
#

Best location

pale shell
#

then it's going directly to the motherboard

half harness
onyx loom
#

@hot hull did it take u like 5 minutes to load a webpage on ur shite pc?

#

or however long it takes dkim

hot hull
#

no

onyx loom
#

didnt u have 2nd gen i5 too?

#

kinda sus

pale shell
#

you're sus

onyx loom
#

thanks

pale shell
#

I think I'm getting addicted to Kotlin.

#

The only hard thing is the lack of spigot documentation for it.

onyx loom
#

why would the spigot api need separate docs for kotlin

pale shell
#

I mean like examples

onyx loom
#

ur examples are in java

#

then ctrl shift alt k fingerguns

pale shell
#

lol

#

I just copy and paste the java code into Kotlin files

onyx loom
#

i mean for the most part its going to be the same anyway

#

ur just changing a couple stuff to make it work in kotlin

pale shell
#

but it looks different

#

are. you. fucking. joking. me?

onyx loom
#

whats up

#

maybe i am

#

who knows

pale shell
#

intellij didn't FUCKING SAVE MY WORK

#

GONE

#

FUCK SAKE

half harness
#

git fingerguns

onyx loom
#

๐Ÿฅฒ

pale shell
#

i didn't think git was needed

#

i hate myself now

half harness
#

๐Ÿ˜ฆ

#

you sure it didn't save?

#

it has autosave

pale shell
#

i dont think it did

half harness
#

btw does intellij have a save button?

pale shell
#

i'm missing a ton of files

onyx loom
#

it does

obtuse gale
#

That's why I hit Ctrl S like a maniac

onyx loom
#

but its not necessary

#

same emily

pale shell
#

like, I had a kotlin folder but that's gone now

onyx loom
#

its just habit for me

half harness
#

i stopped the ctrl s habit a while ago

#

started it because of eclipse not having autosave ๐Ÿคข

obtuse gale
half harness
#

ah, i remember when i got ip tempbanned from discord ๐Ÿฅฒ

#

aka ratelimited

pale shell
#

ok sorry for cursing the place out, IntelliJ didn't load the project for some reason so it made it look like i lost it.

onyx loom
#

๐Ÿ˜Œ

forest pecan
#

or smthing

half harness
#

i thought it was shorter

#

like 2 minutes

obtuse gale
#

I still Ctrl S like a maniac lmao

onyx loom
#

i highly doubt that

half harness
#

10 minutes is a long time

pale shell
#

I mean, it legit didn't even know what the project was

half harness
#

well it sorta makes sense

forest pecan
#

for me its like that

obtuse gale
#

Like it takes no effort so

half harness
#

because whenever my computer bluescreens

#

it always rollbacks like 5 minutes

#

which is annoying

forest pecan
#

Yeah

#

exactly that

#

Same goes with me when i accidently open the Material class

#

i lose my work

half harness
onyx loom
old wyvern
#

Intellij doesnt save on intervals but in actions I think

ocean quartz
half harness
#

i forgot my raspberry pi password ;-;

#

termius still has it saved

old wyvern
#

gj

half harness
#

but idk how to retrieve it

forest pecan
#

would you lose it all

old wyvern
obtuse gale
old wyvern
#

Like text blur, focus...ect

ocean quartz
forest pecan
obtuse gale
#

ยฏ\_(ใƒ„)_/ยฏ

old wyvern
forest pecan
#

it just freezes my ide

#

when i open the material class

pale shell
#

material class?

old wyvern
#

Yeet your PC

forest pecan
#

this is also on a good pc too

#

intellij just panics and i have to force quit it

pale shell
#

lol

obtuse gale
#

Sounds like a you problem lol

onyx loom
#

man ur pcs must suck

#

i cant scroll through material enums no problem

pale shell
#

I can load material easily

obtuse gale
#

Mhm

forest pecan
pale shell
#

you got enough dedicated wam going to it?

obtuse gale
#

Literally everyone else saying it works just fine

#

You tell me if it doesn't sound like a you problem lol

onyx loom
#

๐Ÿฅฒ

forest pecan
#

it's been there a while anyways...

old wyvern
#

๐Ÿฅฒ

pale shell
old wyvern
onyx loom
#

๐Ÿ˜”

pale shell
#

๐Ÿ˜ฆ

forest pecan
#

ยฏ_(ใƒ„)_/ยฏ

obtuse gale
#

I mean yeah there was a version it lagged fuck ton

pale shell
#

I'm remembering the legend

obtuse gale
#

But then it got fixed

half harness
#

f termius and linux has no way of getting the password

#

D:

old wyvern
#

Delete it

half harness
#

wat

pale shell
#

whats the password

old wyvern
#

Delete everything

#

Delete yourself

half harness
#

where does termius store passwords?

pale shell
#

@half harness tell me the password and I'll tell you what the password is.

half harness
#

;-;

forest pecan
half harness
#

oh termius dropped plain text storing

#

rip

obtuse gale
#

Uh no, I very distinctively remember a 2020 release it lagged, not before or after

#

Jokes aside sounds like something's wrong with your setup

forest pecan
#

then were a buncha people complaining about it

old wyvern
#

People with bad computers exist

forest pecan
#

i dont have a shitty pc tho

old wyvern
#

There are others tho

half harness
old wyvern
#

Hence the complaining

forest pecan
#

lmao dkim

half harness
#

oh wait it requires a gui anyways

#

tfryujhwsank

pale shell
boreal needle
half harness
pale shell
#

should i work on KSeries? eyesshaking

#

Making the XSeries fully Kotlin.

old wyvern
#

No

spiral junco
#

thonking i should talk here more often

boreal needle
#

yes

#

yes you should

pale shell
#

no??

boreal needle
#

helpchat pog

pale shell
#

why no

boreal needle
#

its like my server but better

spiral junco
#

lol

boreal needle
#

and with less crappy plugins

pale shell
#

ok you should talk but if any of these names start talking, stop talking. @onyx loom @prisma wave

#

there, you're safe.

boreal needle
#

why did you ping bm

pale shell
#

why not

old wyvern
#

Lmao

onyx loom
#

huh

boreal needle
#

brace yourselves for that language everyone

oblique heath
#

h

old wyvern
#

Why do you hate kali?

onyx loom
#

ever heard of haskell?

pale shell
#

that language??

#

oh no

old wyvern
#

Haskell!!

boreal needle
#

D: what have you done

pale shell
#

should i make bm angry

boreal needle
#

no

pale shell
#

ok

old wyvern
#

Kotlim bad, Hasksll good