#general

1 messages · Page 334 of 1

solar meadow
upbeat pilot
#

ono the evil kotlin

tender abyss
turbid sedge
#

it's a joke channel

tender abyss
#

Every1 uses General anyway

upbeat pilot
#

am i doing this right:
MethodType mt = MethodType.methodType(m.getReturnType(), m.getParameterTypes()[0]);

solar meadow
#

if you have a Method you can use lookup.unreflect(method)

quasi plaza
#

is there a mod that highlights parties in dungeon finder that you can join, ik cowlection does it but that's the only feature i use with it

tender abyss
#

Just saw swavys vid he dropped some guy with 400 hp 50m in diamond blocks i feel like some1 is gonna get banned and wiped lol

upbeat pilot
#

yt are exempt from watchdog

ruby wasp
#

boosting bans arent from watchdog

#

they just flag it

upbeat pilot
#

well then it shouldnt be terribly concerning bc they will see yt and ignore it

tender abyss
upbeat pilot
#

well ye but the assumption is that if yt is involved at all watchdog is told to only flag it

tender abyss
#

Its still gonna get flagged cuz it got dropped and not traded also it wasnt rlly serious

lean whale
#

itd be hella funny if the guy he dropped the blocks to gets banned but swavy doesnt

#

Yep

upbeat pilot
#

ok looking into the backend of both i see why this is

#

.invoke into a methodhandle immediately calls native

#

method.invoke does so much stuff

#

checks if you have access

grave pike
#

they are aliases... you type in a custom command instead of a default one

rocky current
#

bruh

#

we have one of these guys

#

deletes their messages

upbeat pilot
#

GDPR is bad because it forces discord to support users deleting their own messages

peak snow
#

Poggers

formal jay
#

POG @rocky current

  1. Nice file name
  2. yay another thing I can turn off in sbe
rocky current
formal jay
#

:)

rocky current
#

not sure if it works on other layouts

shrewd vine
#

I am sorry my friends but i switched to sbe

rocky current
#

ew

#

ban him

shrewd vine
#

yes

#

I am sorry

#

😦

#

okay im gonna leave

quasi plaza
#

🤮

toxic basin
#

What the fuck

robust mist
#

@rocky current what is that arrow turning solver

#

there can't be any solver for it

#

I mean you can't cancel the event

rocky current
robust mist
#

and the solution is veryclear

rocky current
#

this but numbers

robust mist
#

ah

rocky current
#

apparently pro players like seeing how many click sthey need

robust mist
#

hmmm

#

I'ma add that to dg

rocky current
#

its really easy

robust mist
#

actually I need to fix simon says first

rocky current
#

pasted ice path solver

#

and changed it

robust mist
#

what

#

lmao

#

lmao

#

that's just lmao

rocky current
#

now i just need to make it numbers

robust mist
#
Dir {UP, RIGHT, DOWN, LEFT}
visited_nodes = {}
toVisit = {[R,0]} // R = redwool
actualNodes = {}
while toVisit not empty:
  thaNode = toVisit.pull()
  if thaNode[0] is null: continue
  if visited_nodes has thaNode[0]: continue
  add thaNode[0] to visited_nodes
  if thaNode[0] is Arrow:
    add [thaNode[0], thaNode[1].reverse()] to actualNodes
  for dir in Dir:
    add [thaNode[0].offset(dir), dir] to toVisit

// here, we have actualNodes with directions.
rocky current
#

it's just pathfinding but you have multiple start and end points

robust mist
#

that's not even pathfinding at all

#

lmao

rocky current
#

what it called them

#

search?

robust mist
#

ofc

robust mist
#

lmao

#

no need to hamilton path all the way through

#

and it's not hamilton path at all like icepath

rocky current
#

¯_(ツ)_/¯

#

i just took the ice path alg

robust mist
#

and how many lines is it

rocky current
#

and then changed it so it moves 1 step

robust mist
#

13 lines!!

#

how is it even related to icepath

rocky current
#

it moves in direction from start -> finish

#

thats how

#

yes

robust mist
#

breh

rocky current
#

but instead of movinng multiple blocks it moves 1 block at a time

robust mist
#

but pasting icepath solver there will just make you lose performance

rocky current
#

¯_(ツ)_/¯

#

ill figure something else out when my brain works again

robust mist
#

smh

#

imagine not having brain work

rocky current
#

smh

robust mist
#

how many lines is your ocde

rocky current
#

300

#

most of it is junk

solar meadow
#

bruh

robust mist
#

bruh

#

use my 13 liner

solar meadow
#

my scuffed mc astar impl is like 20 lines

#

and this doesn't need astar

robust mist
#

simple bfs would do it!

solar meadow
#

new Thread(() -> {
solve();
}).start();

#

performance fixed

robust mist
#

imagine doing it every tick

solar meadow
#

dungeons room mod used to do that

#

then I added thread pool lol

robust mist
#

fun fact: my solvers except icefill run in ticks, without any threads attached, and I still don't lose any performance

#

my solvers are that good

toxic basin
#

Good job smile

quasi plaza
#

my solver better

#

big brain

vague tundraBOT
# quasi plaza big brain

On updating to new 1.x pre, your config will be a bit messed up. Make sure to change the following:

  • Larger Heads
  • Dropped item scale
quasi plaza
rocky current
#

ok look it works

#

does it matter

robust mist
#

I dont wanna lose thousand fps while playing dungeon

quasi plaza
#

then just have a thousand fps to begin with

robust mist
#

actually if I ose thousand fps it goes into negative reason since my fps is only like 30

#

linux go brr

quasi plaza
#

kool

rocky current
upbeat pilot
#

@solar meadow send me the source of MethodHandle.invoke(Obj..) i cant find it

solar meadow
#

its a native method

upbeat pilot
#

yes how to find source of native methods

solar meadow
#

you look in jvm source code

#

but why

upbeat pilot
#

i want to see how much different func(obj) is from mh.invoke(obj)

#

maximize performance

solar meadow
#

well good luck understanding jvm source

#

you should also be using invokeExact btw

upbeat pilot
#

Unfortunately I have to stick with invoke i think

solar meadow
#

how come?

upbeat pilot
#

callbacks to functions are wrapped with my custom eventcallback similar to subscribers in guava

#

those can handle any event

solar meadow
#

invokeExact just mean the signature must match exactly (same as Method#invoke)

upbeat pilot
#

so if i have SpecialEvent extends Event, thats not gonna mess anything up?

#

tbf i need to actually just run the code

solar meadow
#

I think invokeExact won't actually work but invoke should work

upbeat pilot
#

well lets see

#

havent even run the code yet, been distracted by bytecode

#

ye java.lang.invoke.WrongMethodTypeException: expected (ScoreboardTeamInEvent)boolean but found (Event)boolean

#

no

misty rivet
#

carl saw exception and does that

upbeat pilot
#

carl is genius

#

invoke works well

#

should probably start figuring out how to track performance with mods

solar meadow
#

profiler?

upbeat pilot
#

looks like intellij default profiler attaches to gradle nice

#

thats what i was looking for

#

the performance of gradle

#

ok apparently it still captures mc just as part of the profile

rocky current
#

ew gradle 4

#

also isnt hysky that thing that got shutdown or something

upbeat pilot
#

idk i just made a name that rhymes

rocky current
zinc merlin
#

?

upbeat pilot
#

smh only 2 rhyme

floral rose
#

I think editing locations is bugged

vague tundraBOT
timid oyster
#

what is a good fullbright mod

rocky current
#

patcher

zinc merlin
#

skytils moment

rocky current
#

what book

zinc merlin
#

ult wise 5 i think

rocky current
#

f

#

no wait ultwise 5 is green

zinc merlin
#

what

rocky current
#

the rarity is uncommon i think

#

anyways

#

how to reproduce

zinc merlin
#

yeah it is green

#

its green when i created the auction

rocky current
#

oh

#

how reprod

zinc merlin
#

idk

#

i was trying to undercut by 1

rocky current
#

and it typed 5?

#

what

zinc merlin
#

it typed 1

#

then hypixel capped it to 5

#

very nice of them

#

i think npc sell is 5?

rocky current
#

did you press enter immediately after entering the gui

zinc merlin
#

probably

rocky current
#

it probably didn't calc the price yet or something idk

misty rivet
#

what is sbe smoking

rocky current
#

it does tht on everything

#

complex is dumb

misty rivet
#

“Hello my name is complex origin and I forgot how to steal the code from skytils that checks the scoreboard for my also stolen phase timers”

turbid sedge
#

nono he said his "f7 splits" are "customizable so you can use them on any floor" when clearly they just don't work

rocky current
#

e

#

need pro dungeon player azured to come on

#

to test the arrow thingy solver

toxic dawn
#

why am i a partner

#

i forgot

rocky current
#

skyclient

toxic dawn
#

oh yeaaaaaaaaaaaaaaaaaah

rocky current
#

yea

#

i just pasted what nacrt sent

toxic dawn
#

crying

#

partnership is usually something huge

rocky current
#

¯_(ツ)_/¯

toxic dawn
#

hey, go use skyclient
10/10 announcement

cold cosmos
#

:yes:

turbid sedge
#

neu's was shorter

cold cosmos
#

also ty for the two pings

toxic dawn
#

lmao

#

skyclient

#

skyclient

#

skyclient

#

👎

rocky current
#

i need word notifications plugin

cold cosmos
#

carl moment

toxic dawn
#

exists

cold cosmos
#

!hl

rocky current
#

so that i get notifications on sbs and sbz

toxic dawn
#

half-assed

rocky current
#

word notifications for powercord

toxic dawn
#

cutecord is a thing

rocky current
#

betterdiscord sucks

cold cosmos
#

-hl

winged spruceBOT
#
Page 1/2 (7 commands)
[highlight|hl] [word]

Inspired by highlight bot, Carlbot now also does highlighting.
Highlighting means you will receive a message when your keyword is said in chat.
The matching is approximate and works really similarly to discord search
(basically, if you search your keyword in discord search, you will find messages that would trigger the highlight, roughly speaking).
It will only notify you if you haven't posted anything in chat for the past 5 minutes.

highlight add [word]

Adds a word that will notify you.

highlight block [blocks...]

Messages sent in this channel/from this user won't notify you can select many channels and or members with the same command

highlight clear

Removes all highlights from you

highlight matches <words>

This shows which of your highlighted words will be triggered with a test sentence

rocky current
#

cutecord isn't really the same

toxic dawn
#

it doesnt ping unless you dont have the server muted

#

for example, luna

rocky current
#

hm

#

i thought it did something else

#

maybe i just didnt confgiure it right

toxic dawn
#

🤷‍♀️

rocky current
#

oh

#

skytils

#

cool

#

need to blacklist the guild

toxic dawn
#

if you have notifications on it'll show the a notif when someone says the word

toxic dawn
#

whatever you use for notifications

#

it wont show a (1) on the server tho

#

should prob suggest that

#

like if you have in-app notifs, it'll show

rocky current
#

oh

#

i don't

#

thats why

tight crown
#

imo skytils map better than neu map

#

have you ever seen a better watermark

#

than Use neu

#

plastered on ur map

#

i think not

rocky current
#

lmao

toxic basin
#

We Stan

wanton comet
#

guys did you know that there is a dating app called bumble and I'm really pissed about it's existence

rocky current
#

lmao

wanton comet
#

it's very sussy

#

I don't want it to exist

#

I can't wait for it to be taken down (aka never but I can hope)

rocky current
#

best dating site

wanton comet
#

it has only a handful million downloads

#

but I hate it

rocky current
#

"only a handful million"

wanton comet
#

lmao

#

it is the reason I want to rebrand myself on the internet but like nahhh

rocky current
#

bumble best

wanton comet
#

I would not mind being the ceo of their brand

#

it would be pretty gamer

deep robin
#

What the fuck

tender abyss
#

Very :deadchat:

tender abyss
#

why am i getting a message that i got removed from party chat sometimes when i click on my screen bruh

tender abyss
#

casual hp

patent mirage
#

bad hp

cloud scroll
#

Yea

#

For blue whale + goldor + reaper

zinc merlin
#

lvl 93 whale

tender abyss
#

when did tank get so good at hp

patent mirage
#

since tanks actually use health reforges

#

instead of damage

tender abyss
#

no i meant like

#

when f7 was highest floor

#

most tanks had like 4m ehp

#

since master mode its 15m or smth

patent mirage
#

nah they dont have that much

tiny saddle
patent mirage
#

unless they stack defense

patent mirage
tiny saddle
#

well then thast easy

#

i can get up to 5k i think

tender abyss
tiny saddle
#

when you game a lot

tender abyss
#

stack defense?

patent mirage
#

its not fixed

tender abyss
#

whats that

patent mirage
#

its stacking defense

tender abyss
#

.-.

tiny saddle
#

these admins

tender abyss
#

abd whats stacking defense

#

explain

#

im confused

tiny saddle
#

no ty

tender abyss
#

.-.

patent mirage
#

i remember doing it in regular f6

#

to survive terra

tiny saddle
#

just letting you know its been since f7

patent mirage
#

and mastiff wish

#

since f6*

tiny saddle
#

might be older

patent mirage
#

and probably f5

tiny saddle
#

yes

#

its really op

tender abyss
#

how much defense can u get with it compared to normal?

tiny saddle
#

double

tender abyss
#

oh welp

#

xD

patent mirage
#

you can get triple

#

but its rng

tiny saddle
#

sometimes 2/3

#

yeah

#

depends on your pet/class

tender abyss
#

ok...

tender abyss
#

firewolf whats ur ign

clever echo
#

FirewolfGB

tender abyss
#

lol

tender portal
#

֎

tender abyss
#

what?

#

bruh that requirement

patent mirage
#

1k secrets is hard

deep robin
#

Wdyn

#

Wdym*

#

Just go for s+

tender portal
#

wat highest master floor rn

deep robin
#

6

tender portal
#

just run m6 solo s+ sub 0 seconds amr

tender abyss
#

can some1 buy all the shelmets off the ah so i can sell mine for 10m per? tyvm

deep robin
#

Yes

#

Whats the price rn

tender abyss
#

4,8m

deep robin
#

Ima buy one in like 18 hr

tender abyss
#

ok.. xD

tender abyss
#

hypixel should add a rule that says ur not allowed to abuse party finder for solo runs or smth bruh its so annoying when ur on a new profile

#

party finder is officially weird

#

ah yes that guy died 3 times left the dungeon warped us to the island and called us noobs

odd remnant
#

what is that hyperion

#

its look shit

tender abyss
#

its not a hyp tho

odd remnant
tender abyss
#

called renaming items

#

i wont get a hyp lol

odd remnant
#

what even is that

tender abyss
#

aote

#

uh so like u guys remember that duper insta selling 3k cooked salmons?

#

my friend bought 2400 of those .-.

patent mirage
#

look below my hp

#

best orb

tender abyss
#

yea man

patent mirage
thick sparrow
#

howw many f5 runs was that.

patent mirage
#

¯\_(ツ)_/¯

frigid hill
#

L not chestplate

#

PepeLaugh

patent mirage
#

I already got chestplate in solo run

tender abyss
#

im not sure if i got 3 or 4 sa cps so far

rare grail
#

Very cool

turbid sedge
#

hm i need one more t3 skull for a t4 skull

tender abyss
#

Why would u craft them together instead of selling the t3 skulls and buying the t4

turbid sedge
#

idk i sold them anyways

tender abyss
#

this chat is so dead today lol

rocky current
#

azured not here

tender abyss
#

ok

rocky current
#

@patent mirage test the turny thingy solver ty

ruby wasp
#

bro

#

i lost 30m

#

to a glitch

rocky current
#

L

ruby wasp
#

ffs

#

great

#

it happened agin

#

50m lost in total

#

lets go

patent mirage
#

not doing f7 zzz

#

got a test tmrw

tiny saddle
#

no more kids with old forge again 🦀

mild fiber
#

🦀

frigid hill
#

🦀

wanton comet
#

🦀

misty rivet
#

sbe filed a takedown request

wanton comet
#

lmao wtf

#

did they really?

mild fiber
#

actual clowns

#

this truly does proof a point

wanton comet
#

the whole repository is gone

tender abyss
#

Nice

wanton comet
#

actual clowns

turbid sedge
#

what was even their reason for a takedown

zinc merlin
#

blankblaze.png

turbid sedge
#

ah yes

hallow geyser
tender abyss
#

No

frigid hill
#

yoo the quirky and unique meme of spamming discords with quirky and unique pictures

upbeat pilot
#

Remember they are operating entirely illegally, they are in violation of Microsoft’s copyright

turbid sedge
#

sbe isn't violating microsoft's copyright at all

upbeat pilot
#

Sbe is paid right?

rocky current
#

mojang

turbid sedge
#

and it's eula

#

not copyright

#

they're not selling a minecraft clone

upbeat pilot
#

Mojang is part of Microsoft tho

#

Well they are illegally using their service which iirc can be hit under DMCA

misty rivet
upbeat pilot
#

Actually would just be a shame if someone released cracked sbe

turbid sedge
#

technically you can if you provide some other service

#

such as hosting a server for a paid modpack or something

#

where you get access if you pay

rocky current
#

i think that's talking about plugins

upbeat pilot
#

It’s pretty clear to me

#

Actually

#

Doesn’t sbe take code from other people

misty rivet
#

yes

#

a lot

summer hawk
#

yeah

misty rivet
#

its funny

turbid sedge
#

You may make money from Mods as described below in the section, "Servers and Hosting."

upbeat pilot
#

Can you just dmca them if they aren’t doing what your license says?

misty rivet
#

the eula self-conflicts a few times and its so annoying

turbid sedge
#

it can mean forge mods

rocky current
upbeat pilot
#

Any Mods you create for the Minecraft: Java Edition from scratch belong to you (including pre-run Mods and in-memory Mods) and you can do whatever you want with them, as long as you don't sell them for money / try to make money from them and so long as you don’t distribute Modded Versions of Minecraft: Java Edition.

#

Try to make money from them seems like it snipes that

#

The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version.

#

You are within your rights to DMCA if you have proof they are using your code

turbid sedge
#

there's multiple people who could but it's not really worth the effort

#

who's gonna spend like tens of thousands on a lawyer

upbeat pilot
#

It’s trivial to do btw

turbid sedge
#

over a minecraft mod

upbeat pilot
#

You send a notice

turbid sedge
#

except you can't prove it bc they obfuscated code

upbeat pilot
#

Whoever hosts their stuff MUST take it down

rocky current
#

inferno

patent mirage
#

LOL

#

no problem lily

rocky current
#

thanks man

#

told everyone it has session stealer

patent mirage
#

you wouldn't want that kind of people with no brain on support

rocky current
#

pro coder moment

patent mirage
#

WHY NO WORK

misty rivet
patent mirage
#

I DOWNLOSDED THE CODE

#

WGY MOD NO WORK

turbid sedge
#

bruh he has a lower skill average than me

#

how

upbeat pilot
#

Slander is harder to fight than dmca

rocky current
turbid sedge
#

hm

rocky current
#

idk

tender abyss
#

Are people actually gonna believe skytils is a Session id stealer cuz 1 guy said it?

upbeat pilot
#

Idk if someone sends me the obf sbe code I’ll analyze it and find who it’s copying

rocky current
#

a lot of people have it

upbeat pilot
#

Ye I’ll find someone who does

rocky current
#

gaming

misty rivet
#

it really is a thing

upbeat pilot
#

Idk it kinda pisses me off that they dmcaed someone

misty rivet
#

embed fail pog

rocky current
#

pays is dying

#

@misty rivet look up from chay in feburary

tender abyss
#

Bruh

misty rivet
#

and they botted the forum post

#

ok sure

toxic basin
#

AM BOT

tender abyss
#

loosing brain cells

misty rivet
toxic basin
#

Yes

rocky current
#

fekzy is joking

#

lmao

misty rivet
#

i cant tell because they are all equally as stupid

rocky current
#

he uses the mod

toxic basin
#

Isn’t he in the server

shrewd vine
#

when am sus

rocky current
#

yeah

#

azured says he carried fekzy

toxic basin
#

Oh yeah

rocky current
#

dungeons w/ gubbl

misty rivet
turbid sedge
#

gubbl m3 gamer when

misty rivet
#

brain size extra small

toxic basin
#

Also i was so offended when that guy said I’m a bot

rocky current
#

gubbl carried m3

#

disco afked m3

lilac scroll
#

uh

toxic basin
zinc merlin
#

"i can play archer guys"

lean whale
#

skytils is a session id stealer because i said it

rocky current
lilac scroll
#

is there a bug with skytils rn?

turbid sedge
#

-role @lilac scroll read

winged spruceBOT
#

Added read to Drenodude23#4114.

turbid sedge
#

thanks carl

tender abyss
misty rivet
#

sychic typed it faster than me

rocky current
misty rivet
#

smh

turbid sedge
upbeat pilot
rocky current
#

^

#

accidentally posted our webhook on github

#

i will admit

toxic basin
rocky current
#

we have webhooks that send us data from your mc

#

this is proof and you can see in the code

#

it has been verified by complexorigin

rocky current
#

idk

toxic basin
#

Sychic already has my session id when I tested damage splash for her

rocky current
#

yes

#

i have sychic's password

#

it's sbebad123!

misty rivet
#

sychic leaks her password atleast once a week

turbid sedge
#

only once

#

i should probably change how i come up with passwords

misty rivet
#

ok

#

why does everyone think its a logger this hurts me internally

#

lmao

#

im just gonna close my alt

turbid sedge
#

¯_(ツ)_/¯

rocky current
#

idk how secure that is

#

but i can't really talk

tender abyss
#

Surprising in sbe no1 says rn skytils is an id stealer or smth

rocky current
#

my password has my name in it + sequential numbers + sequential symbols

misty rivet
#

cus sbe just mutes everyone that talks about skytils

rocky current
#

literally just slide my finger down my keyboard

rocky current
tender abyss
#

Lol

rocky current
#

try it yourself

turbid sedge
#

most of my passwords take 34 thousand years to brute force

misty rivet
#

my schools laptop password is something that has to do with sbe and skytils and also like 6 numbers

#

its super easy to bruteforce

turbid sedge
#

lol

misty rivet
#

altho I dont know what they'd steal

zinc merlin
#

my spam classifier is so innacurate its more accurate to reverse the result and then take that

misty rivet
#

its a chromebook

zinc merlin
#

plz help

misty rivet
#

¯_(ツ)_/¯

turbid sedge
zinc merlin
turbid sedge
#

nice

turbid sedge
#

idk i used that website

misty rivet
#

that sounds like my assortment of many pentium 3s and 4s

turbid sedge
#

plus mojang locks you out if you try too many times from an unrecognized ip

tiny saddle
#

its my actual pw wideW

misty rivet
#

i mean once i get 2fa on my mc account ill be fine

#

unless i break my phone, then that'd be bad

rocky current
#

my old password from when i was 5

turbid sedge
#

nice

rocky current
#

before that

#

current password

livid glen
#

Hi

turbid sedge
#

i could just make my password longer tbh

upbeat pilot
tiny saddle
#

mine is a combination of 2 passwords that used to use

upbeat pilot
#

My is Tr0ub4dor&3

misty rivet
#

my phone doesn't even have a password anymore after I broke my home button lol

toxic basin
#

my new password sunglaso

rocky current
#

just use 2fa

turbid sedge
#

2fa is cool

misty rivet
#
  • 2fa for my discord
#

im probably fine

toxic basin
#

have 2fa on everywhere i can

rocky current
#

authy best

misty rivet
#

i prefer google authenticatior

rocky current
#

my authy password is the same password for everything

#

it's more likely i'll get credentialstuffed

#

than brute forced

misty rivet
#

same

#

lmao

#

I don't trust password managers

rocky current
#

¯_(ツ)_/¯

misty rivet
#

I usually just write all my passwords down on paper or on a cd/tape and put it in a box in my closet

rocky current
#

credential stuffing is the most popular

#

so

#

literally nobody wants to brute force passwords

#

unless you are someone important

misty rivet
#

cus i doubt someones gonna care about reading a tape in my closet to get my passwords

#

or bruteforcing

rocky current
#

i can use authy on phoen + pc

#

and it'll sync the codes

misty rivet
#

oh well I always have my phone with me

#

so its not a big deal

#

shutup

#

stupid bad bot malil

remote heath
#

128 characters

#

i store it on an usb stick

tender abyss
#

"42 sextillion septuagintillion years"

#

i totally dont suck at writing at all

remote heath
#

either way this is nothing to a quantum computer

solar meadow
tender abyss
solar meadow
#

rsa is kinda fucked by quantum stuff but other methods arrent iirc

misty rivet
#

i mean once quantum computers become mainstream im gonna have to have like 10000 character passwords

#

ed25519 gang

remote heath
grave pike
patent mirage
#

hahahahaha

misty rivet
#

hahahahahahaha

#

i should change my password to *V4%4TT?9F8g9cyNeYj*4fA+tYmn+!5sky%CS3h5j%L^GBGDLu7ah%n&us9Pa*buQ==wM7%vELgUpXKt8Bqb_aXWdFaUN6vSbFh!#gmJEc5t9Z6VWhe+E5=sWPVrN2#GV8kKsm9=C*A9n8CT3nqszjxD_k?b36JCT#vmY#axbT&e_r8AP=kk&VG_L!Q6b#V2RXj4!PtjMUn-Tr8yVe%Xt5URgLAu#HT9YL*MUyG*nM4ac&ude$fG_GBL#upG7uE8

tender abyss
patent mirage
#

im changing my password to

#

lIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlI.lIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlI.lIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlI.lIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIlIl

solar meadow
#

🤣

patent mirage
#

thanks redstoner

#

im funny

#

whawt

#

how many 0s is that

solar meadow
#

more then there are in complex's bank account

patent mirage
#

damn

tiny saddle
remote heath
#

you will believe

tiny saddle
remote heath
misty rivet
#

IllIIlllIllllIllIlIlIlIIlIllllllIIlIIIllllllIIIllIlIIlIIIIllIIIlIIIIIIllIIIIllIlIlIIIIIllIlIIlIIlIIIIlIIll/IIIIIllIIIllllIlIlIIIllIIIlIIIIIlIlIllIlIlIlIIlllIIIIIIlllIlIlllllllIlllllllIlIIIlllllIIIIlIIlIIlIlIllI/IllIIlllIllllIllIlIlIlIIlIllllllIIlIIIllllllIIIllIlIIlIIIIllIIIlIIIIIIllIIIIllIlIlIIIIIllIlIIlIIlIIIIlIIll/IllIIlllIllllIllIlIlIlIIlIllllllIIlIIIllllllIIIllIlIIlIIIIllIIIlIIIIIIllIIIIllIlIlIIIIIllIlIIlIIlIIIIlIIll/IIIIIllIIIllllIlIlIIIllIIIlIIIIIlIlIllIlIlIlIIlllIIIIIIlllIlIlllllllIlllllllIlIIIlllllIIIIlIIlIIlIlIllI is my new password

remote heath
#

@rocky current in #Faq Archived does this have something to do with modcore 2

misty rivet
#

embed fail

quasi plaza
upbeat pilot
#

My password is 1 nanoseconds

quasi plaza
#

sbeisbadlolsbeisbadlolsbeisbadlolsbeisbadlolsbeisbadlolsbeisbadlolsbeisbadlolsbeisbadlolsbeisbadlolsbeisbadlol

remote heath
#

or is this part of modcore 1

rocky current
#

is what

remote heath
#

dependencies in Vigilance, which hides certain modules if a different module is not enabled.

rocky current
#

that we take advantage of

#

basically it hides certain stuff if a switch isn't enabled

solar meadow
#

@ Nora pog

turbid sedge
#

1.16 vigelance when

wanton comet
#

cloth config for config guis exists

delicate phoenix
rocky current
#

so

zinc merlin
#

????

tender abyss
#

am i dumb or is that random

upbeat pilot
#

Modcore reeee

#

Has good UI but also reee

summer hawk
#

skytils doesnt use modcore anymore

#

they just use vigilance

upbeat pilot
#

Sk1er stuff meh tho

rocky current
#

sub 17 paul wr f7

upbeat pilot
#

Insane wr

#

Remind me to add you all to my “never play with these people” list

turbid sedge
#

way faster and also decent money

tender abyss
#

how is m3 decent money

turbid sedge
#

stars are like 10m

#

and the skulls are 4m

tender abyss
#

r they so common??

turbid sedge
#

¯_(ツ)_/¯

#

i got 3 stars in 4 hours

#

got 2m cata xp though

tender abyss
#

bruh

rocky current
#

also i had to test the arrow alignment thing

#

and it works

turbid sedge
#

most of them are pretty good tbh

#

there's some clowns but eventually you'll find a decent party

zinc merlin
#

i played last night and got a storm tank that tried to do secrets while we were blood rushing

tender abyss
#

cata 27 sweat party be like

turbid sedge
#

most tanks aren't too stupid

patent mirage
rocky current
patent mirage
#

also nice skytils score calculator!!!

rocky current
#

9m 53s boss entry

patent mirage
#

have fun spamming those nerds

#

make them join the discord

rocky current
#

i left the party

#

they still didn't want to enter at 9m53s

modest bridge
#

bread 👍

rocky current
#

because 2 secrets were missing

misty rivet
#

bruh

rocky current
#

azured should get the skytils cape on enu

tender abyss
#

combat 51

#

1% more dmg

#

op

turbid sedge
patent mirage
#

enu

tender abyss
#

ok i feel ignored as always

misty rivet
zinc merlin
#

emu???

misty rivet
#

we should rename our mod to enu

tender abyss
#

which corner this time..

rocky current
#

guys can somone carry me f3

#

i need to make guardian hp!

tender abyss
#

a f3 carry? srsly?

#

wat

patent mirage
#

guardian hp?

#

isnt scoreboard good enough

zinc merlin
#

is respawn timer in scoreboard

rocky current
#

oh wait it shows on scoreboard

solar meadow
#

scoreboard has hp

rocky current
#

nvm snow is dumb

#

snow bad

zinc merlin
#

no!!

solar meadow
#

timers above head

patent mirage
#

snow bad

zinc merlin
#

ok thats what i said

#

read my suggestion

#

smh

solar meadow
#

would be nice to show timers on scoreboard

patent mirage
#

lily i can carry you m3

zinc merlin
#

see

#

im smart

patent mirage
#

:)

rocky current
#

oh it doesn't show timers

#

uhhhhhhhhhhhhhhhhhhhhhh

#

prob would do it position based in a bounding box?

#

idk

solar meadow
#

the guardian nametag armorstand is right beside it

rocky current
zinc merlin
#

yeah

rocky current
solar meadow
#

other then being 100x easier

rocky current
#

i dont do f3

zinc merlin
#

but the guardians dont respawn in 3 seconds

patent mirage
#

yea but i wanted to test tank set

rocky current
patent mirage
#

you just have to deal all the dps

#

ok

rocky current
#

uhhh

turbid sedge
#

ooh i can practice scythe swapping

rocky current
#

might be a problem

turbid sedge
#

i have archer gear

tender abyss
#

azured carry me also lol i can deal a bit dmg

rocky current
#

L azured started wo you

patent mirage
#

L

turbid sedge
#

lame

zinc merlin
#

i can solo an m3 sa without tank now

turbid sedge
#

i can't bc i'm bad

zinc merlin
#

i got warden

tender abyss
#

i havent tried anything past m1 lol

turbid sedge
#

then you can't even enter m3

tender abyss
#

u can

zinc merlin
#

no u cant

#

u need completions now

tender abyss
#

ew

zinc merlin
#

ppl tried to join m5 parties without m4

solar meadow
#

I got bored of dungeons after having a week off school and not being able to play because of backpacks being disabled for "2 days"

tender abyss
#

i feel like i could survive f7 boss fight in fb better then in necron

rocky current
#

azured has 5m ehp

tender abyss
#

at the start of a run?

rocky current
#

pro player _risk

patent mirage
#

6m*

rocky current
#

he thoguht the chest was behind the thing

#

didnt know there was a chest behind the leaves

tender abyss
#

ok

patent mirage
#

☠ SlashSlayer was killed by Bonzo and became a ghost.

tender abyss
#

lol

rocky current
#

{
"AbsorptionAmount": 0.0,
"Air": 300,
"Attributes": [
{
"Base": 20.0,
"Name": "generic.maxHealth"
},
{
"Base": 0.0,
"Name": "generic.knockbackResistance"
},
{
"Base": 0.10000000149011612,
"Name": "generic.movementSpeed"
}
],
"DeathTime": 0,
"Dimension": 0,
"DisabledSlots": 0,
"Equipment": [
{},
{},
{},
{},
{}
],
"FallDistance": 0.0,
"Fire": 0,
"HealF": 20.0,
"Health": 20,
"HurtByTimestamp": 0,
"HurtTime": 0,
"Invisible": 1,
"Invulnerable": 0,
"Motion": [
0.0,
0.0,
0.0
],
"NoBasePlate": 0,
"NoGravity": 0,
"OnGround": 0,
"PortalCooldown": 0,
"Pos": [
214.0625,
71.65625,
226.6875
],
"Pose": {},
"Rotation": [
5.625,
0.0
],
"ShowArms": 0,
"Silent": 1,
"Small": 1,
"UUIDLeast": -4732041493937583455,
"UUIDMost": -1887950279889042579
}

forest pelican
#

wtf there's a waypoint for chest in dungeons since when

tender abyss
#

since they got added

forest pelican
#

what mod has that I don't remember skytils having that

turbid sedge
#

it's not skytils

patent mirage
#

Imma go diner

tender abyss
#

its so annoying when people write in the chat the answer for quiz puzzle bruh like who doesnt have a mod for that

patent mirage
#

I'm afk in m3 boss

tender abyss
patent mirage
#

yea

tender abyss
#

ok ig

rocky current
#

hes still alive

#

afking

tender abyss
#

lol

patent mirage
#

I'm best tank I told you

#

nice dps lily

#

3 mins to kill a sa

tender abyss
#

mans doing one of the hardest floors existing most people cant do and afks

rocky current
tender abyss
#

4a 1m is still used in f7 or?

patent mirage
#

4a 1m

#

yep

#

4 archers 1 mage

patent mirage
rocky current
rocky current
tender abyss
#

now answer

patent mirage
#

nice embed

tender abyss
#

lol

rocky current
#

my mage wall glitched

#

and blocks their line of sight

#

so they can't see you

patent mirage
#

well meta is still 4m 1a ig

#

but archer isn't that important

rocky current
#

also i got stuck int eh center barriers

patent mirage
#

how

rocky current
#

idk

#

it let me fly in

#

wont let me fly out

turbid sedge
#

nice

patent mirage
#

op

tender abyss
#

archer is still needed in lower cata parties or?

turbid sedge
#

archer is nice to have

tender abyss
#

yay

rocky current
#

im gonna suffocate azured

patent mirage
#

noo

tender abyss
#

some say that run is still not done.

rocky current
#

it isn't

tender abyss
#

welp xD

rocky current
tender abyss
#

when its done can u make it so it shows in every dungeon room u go in? just visual

rocky current
#

?

#

i boxed a guardian

quartz tendon
#

jeff

rocky current
#

yes?

tender abyss
#

like when u walk in a dungeon room or smth make it so u see the house staying in the mid of the room

rocky current
#

it's not visual

#

the blocks actually exist

tender abyss
#

ye ik

#

but copy it and make it in the new version so that u see that house in the mid of a room

rocky current
#

it's hard to do

#

you need to glitch the blocks so they stay

misty rivet
#

this is just spamming my chat

#

sbe doesn't know how to interpret items 2021

solar meadow
#

sbe moment

misty rivet
#

agree

patent mirage
#

helo im back

rocky current
patent mirage
#

this is fine

turbid sedge
#

nice dps

rocky current
#

im dead

tender abyss
#

the dungeon is gonna close soon

rocky current
patent mirage
#

i can't die

#

help

turbid sedge
#

so how's that m3 going

patent mirage
#

51 minutes

turbid sedge
#

just take off your armor if you want to die

#

or hug chaos

fickle totem
#

You gotta go to another hub at halfway of griffin burrows instead of all of them showing at the same time?

patent mirage
#

nah too easy

patent mirage
#

unless i attack him a lot

turbid sedge
#

hm

patent mirage
#

and if i attack him

#

i get kb

#

so i wont be in range

#

prob

rocky current
#

chaos doesn't kill him

turbid sedge
#

hm i should do more m3

rocky current
#

caught in 4k

patent mirage
#

im just too good

#

what can i say

tender abyss
#

can u tank double warrior in m2 without a healer?

rocky current
#

probably

tender abyss
#

theyre dealing 250k per hit arent they

#

ah yes

rocky current
turbid sedge
#

nice

tender abyss
#

lol bad imagine dying

tender abyss
rocky current
#

no he got sent to limbo

#

i think for flying

patent mirage
#

a

rocky current
#

L

turbid sedge
#

nice

patent mirage
#

you see the problem is

#

tank clearing

turbid sedge
#

i can clear

tender abyss
#

i can clear and only need 1 min for a 1x1 room

#

and ill only die like 5 times

patent mirage
#

aight we can test

tender abyss
#

why do i feel like you dont mean me

turbid sedge
#

i forget what i was doing

patent mirage
#

r u joining

tender abyss
#

onehit

#

nice

#

i survived like 5* as long as azured

patent mirage
#

i take you and sychics dmg smh

tender abyss
#

but he only attacked you

#

lol

patent mirage
#

nah sychic died first

tender abyss
#

welp

turbid sedge
#

i thought we were doing priest first

tender abyss
#

we were at first

turbid sedge
#

but then everyone ran

tender abyss
#

no u died at the priest instantly

#

i was just tryna somehow survive

#

ghosts cant run :c

#

i thought im gonna be onehit by a lurker or smth

patent mirage
#

you don't die if you are near me in clear

tender abyss
#

but i was also clearing some rooms alone

#

ok like 2

patent mirage
#

well what we can all safely say is

#

Sychic bad

tender abyss
#

yes

turbid sedge
#

wow rude

tender abyss
#

and i shouldve prolly used diamond head

#

nvm its worse

turbid sedge
#

cool second master star is 125m

tender abyss
#

and first one?

turbid sedge
#

17.6m

#

no one runs m4 lol

tender abyss
#

lol

#

hyp isnt much better then valk or?

rocky current
#

azuredblue proved it

tender abyss
#

Do i have to get edib mace now? .-.

patent mirage
#

plus gen is no longer fun

ruby wasp
#

azure

#

what texture pack do u use

patent mirage
#

snowfault

toxic basin
#

sweatpack

tender abyss
#

wth edib mace is op

#

triples my dmg

patent mirage
#

yo what

ruby wasp
#

yo what

tender abyss
#

112m dmg at the start of a run

ruby wasp
#

no swap?

tender abyss
#

edib mace swap

ruby wasp
#

oh damn

#

how is ur dmg so high

tender abyss
#

admins are pretty good at game balancing

#

wait i couldve bone stacked

#

why is my dmg not showing anymore

#

nvm figured out why

#

275m dmg

#

yeeee i dealt a bit dmg

#

☠ You died to a trap and became a ghost. eh

formal jay
#

lol I wanna know how many partners there are vs how many other mod devs there are

#

I've only ever seen myself and 1 or 2 other people

rocky current
#

and then we kinda did

#

and then all these sk1er discord people came and became contributors

#

so now our server list is crammed

clever echo
tacit harbor
#

What is probably good enough ehp for f6 btw

clever echo
#

idk like 300k?

tacit harbor
#

Cause im gonna need to do those soon

tender abyss
#

300k is overkill

rocky current
#

depends on class

tender abyss
#

just get a healer and a tank

#

then u only need 150k or smth

rocky current
#

you don't need a healer or a tank

#

just go all bers

tacit harbor
#

Tank sometimes is farming or grinding

tender abyss
#

sa and la have the same defense or?

#

If des i think i can cycle kill m2 las with blessings

formal jay
#

if you are lower cata, decent healer+tank+either mages or berserks

#

archer poop

pseudo bolt
#

just go all mage

#

and one shot terracotta

rocky current
#

bers is really good class

#

ok clear, ok ehp, and ok damage

patent mirage
#

tank is too op