#guild_community

1 messages · Page 36 of 1

odd junco
#

i made a ton of enums too

#
class DungeonType(Enum):
    SKELETON = 'Skeleton'
    SPIDER = 'Spider'
    ANIMAL = 'Animal'
    ZOMBIE = 'Zombie'
    SILVERFISH = 'Silverfish'
    ICE = 'Ice'
    JUNGLE = 'Jungle'
    DECREPIT_SEWERS = 'Decrepit Sewers'
    INFESTED_PIT = 'Infested Pit'
    LOST_SANCTUARY = 'Lost Sanctuary'
    UNDERWORLD_CRYPT = 'Underworld Crypt'
    SAND_SWEPT_TOMB = 'Sand-Swept Tomb'
    ICE_BARROWS = 'Ice Barrows'
    UNDERGROWTH_RUINS = 'Undergrowth Ruins'
    GALLEONS_GRAVEYARD = 'Galleon\'s Graveyard'
    FALLEN_FACTORY = 'Fallen Factory'
    ELDRITCH_OUTLOOK = 'Eldritch Outlook'
    CORRUPTED_DECREPIT_SEWERS = 'Corrupted Decrepit Sewers'
    CORRUPTED_INFESTED_PIT = 'Corrupted Infested Pit'
    CORRUPTED_LOST_SANCTUARY = 'Corrupted Lost Sanctuary'
    CORRUPTED_UNDERWORLD_CRYPT = 'Corrupted Underworld Crypt'
    CORRUPTED_SAND_SWEPT_TOMB = 'Corrupted Sand-Swept Tomb'
    CORRUPTED_ICE_BARROWS = 'Corrupted Ice Barrows'
    CORRUPTED_UNDERGROWTH_RUINS = 'Corrupted Undergrowth Ruins'
    CORRUPTED_GALLEONS_GRAVEYARD = 'Corrupted Galleon\'s Graveyard'
#
class ClassTypes(Enum):
    ARCHER = 'ARCHER'
    ASSASSIN = 'ASSASSIN'
    MAGE = 'MAGE'
    SHAMAN = 'SHAMAN'
    WARRIOR = 'WARRIOR'
    HUNTER = 'HUNTER'
    NINJA = 'NINJA'
    DARKWIZARD = 'DARKWIZARD'
    SKYSEER = 'SKYSEER'
    KNIGHT = 'KNIGHT'
#
class ProfessionList(Enum):
    FISHING = 'fishing'
    WOODCUTTING = 'woodcutting'
    MINING = 'mining'
    FARMING = 'farming'
    SCRIBING = 'scribing'
    JEWELING = 'jeweling'
    ALCHEMISM = 'alchemism'
    COOKING = 'cooking'
    WEAPONSMITHING = 'weaponsmithing'
    TAILORING = 'tailoring'
    WOODWORKING = 'woodworking'
    ARMOURING = 'armouring'
#
class GuildRank(Enum):
    NONE = None
    RECRUIT = 'RECRUIT'
    RECRUITER = 'RECRUITER'
    CAPTAIN = 'CAPTAIN'
    STRATEGIST = 'STRATEGIST'
    CHIEF = 'CHIEF'
    OWNER = 'OWNER'
#
class TagList(Enum):
    NONE = None
    VIP = 'VIP'
    VIP_PLUS = 'VIP+'
    HERO = 'HERO'
    CHAMPION = 'CHAMPION'
azure egret
#

me too

void plank
#

grabe

#

holy shit glaidonus

odd junco
#
class Rank(Enum):
    ADMINISTRATOR = 'Administrator'
    MODERATOR = 'Moderator'
    BUILDER = 'Builder'
    ITEM = 'Item'
    GAME_MASTER = 'Game Master'
    CMD = 'CMD'
    MUSIC = 'Music'
    MEDIA = 'Media'
    DEFAULT = 'Player'
azure egret
#

explodable

odd junco
azure egret
#

guys who tryna gift me nitro So I can be gift

void plank
#

No

void plank
void plank
void plank
odd junco
#

it maps a symbol to a value

red sigil
#

ezppppd

void plank
#

oomy

red sigil
#

edoppe

#

exopod

void plank
#

ommph

red sigil
#

gruyhhhhh

void plank
#

rahhh

odd junco
#

e.g.

class Days(Enum):
    MONDAY = 'Monday'
    TUESDAY = 'Tuesday'
    WEDNESDAY = 'Wednesday'
    # etc.
red sigil
#

GRAHHHH

void plank
#

so if you call the value monday its gonna say Monday now

#

idk bro i just started learning

odd junco
#

Days.MONDAY would give 'Monday'

#

if you're learning Python learn typing

void plank
#

typing?

odd junco
#

e.g.

def addition(a: int, b: int):
    return a+b
#

the : int part makes it much easier if you're making larger projects so you don't have to be constantly checking what the use is

void plank
#

so if you were to print it it would be

#

uh

#

yeah idk

odd junco
#

it doesn't do anything explicit

#

like it doesn't force you to use those variable types afaik

#

hold on let me show

#

it's basically just for IDEs where you want to see what a type is

#

e.g. class_uuid is expecting a string

#

it helps for stuff where you use particular types

#

e.g. type: ClassTypes shows it is expecting a ClassType reference

void plank
#

i don't understand

odd junco
#

it just tells you what it is expecting

#

as in

odd junco
#

it just tells you it wants two integers

void plank
#

so what if you rpovide only strings

odd junco
#

it makes no difference

#

it only SHOWS the programmer what datatype is expected

void plank
#

oh

#

so you can enter a float or string or int

odd junco
#

so when i type Character() i know what types i need to give it

#

yeah

void plank
#

and it'll still work

odd junco
#

it doesn't actually limit you

void plank
#

but it just shows you what it wants

odd junco
#

yeah

void plank
#

yo

#

thats sick

odd junco
#

which is also good if you have overrides (multiple methods with the same name that accomplish different things)

void plank
#

so you can tell which one needs which

odd junco
#

e.g. you could have

def add(a: int, b: int):
    return a+b

def add(a: str, b: str):
    return f'{a} {b}'
#

afaik this works

#

idk tho

void plank
#

so if you provide an int it chooses the top one but if you provide a string it chooses the bottom one?

odd junco
#

i'm not 100% sure

#

i know in like Java and C# it does that

#

based on the datatype you provide

void plank
#

yea idk anything about c# or java

#

is it called c hash or c slash

odd junco
#

C Sharp

void plank
#

oh

odd junco
#

that is not a slash guh.,.,,.,

#

slash is /

#

or \

void plank
#

my goofy ass called it a c hash or slash

odd junco
#

LMAO

#

C/

#

😁

void plank
#

what about c##

#

c sharp sharp?

odd junco
#

C++?

void plank
#

🥹

#

c plus plus

#

just call it by the symbols bro

red sigil
odd junco
#

C# is music notation

#

C Sharp

void plank
#

yea

#

how is c## c slash tho

turbid shuttle
#

hi

void plank
#

what

turbid shuttle
#

c## is d

odd junco
#

^

void plank
#

no

#

oh

odd junco
#

B# is C

void plank
#

yeah

odd junco
#

mfs who write B# or Cb are complete fuckers

#

just write it as a natural

void plank
#

wtf is Cb

turbid shuttle
#

that's what I'm saying

odd junco
#

C flat

turbid shuttle
#

b

void plank
#

cdefgabc

odd junco
#

aka B

void plank
#

11½111½

turbid shuttle
#

this little excerpt I learned a few days ago had a Cb in it and I was slightly annoyed

unkempt ginkgo
odd junco
#

just write it as a natural

unkempt ginkgo
#

when the song is in weird key

#

key signature

#

and there's an accidental on a specific note

odd junco
#

if it's the key yeah

#

but like

unkempt ginkgo
#

that happens to be on C or F

turbid shuttle
#

accidental written as Cb

unkempt ginkgo
#

it's ok to use Cb B# E# or Fb

odd junco
#

writing B# in C Major is dumb

void plank
#

No

#

Its not okay

unkempt ginkgo
#

it is dumb

turbid shuttle
#

yes the thing I learned was in c major but everything was marked by accidentals

unkempt ginkgo
#

i scored something and i remember writting E#

void plank
#

bad person

unkempt ginkgo
#

since F is sharped in the key signature, writing Fbwould results in F# being played

#

so E# here is acceptable

void plank
#

What

void plank
turbid shuttle
#

it makes sense just looks wrong to me

unkempt ginkgo
#

ik

red sigil
sage granite
#

theres a symbol for that

sage granite
#

they just look so,,, off

unkempt ginkgo
#

also

#

it's just music theory ig

odd junco
sage granite
#

lmao wtf

odd junco
#

na render distance 3 because game dies in sky islands for some reason

sage granite
#

i heard its lighting issues due to the void

#

¯_(ツ)_/¯

odd junco
#

yeah it is awful

#

i'm on 1.12.2

void plank
warm knoll
#

yeah for some fuckoff reason minecraft doesn’t like blocks being above the open void

odd junco
#

iirc there's some thing that like

#

tries to skip loading chunks if there's physically nothing in them

#

mainly for the end so it doesn't have to load huge chasms on end islands

whole drift
#

who wants a sneak peak of mag moments 3

rocky coyote
odd junco
#

😁

whole drift
rocky coyote
#

i love mag moment

odd junco
#

LMFAOOOOO

warm knoll
#

funniest mag moment 🥺

whole drift
#

bro got the ultimate rizz

odd junco
#

W rizz

whole drift
hollow temple
#

Really...

glass axle
#

@warm knoll u down desperate holy shit

warm knoll
#

just another day on the wynncraft minecraft mmorpg server

grave falcon
#

@warm knoll wtf is wrong with you 💀

red sigil
#

😁

grave falcon
#

hello oomy

red sigil
#

flynn!!!

red sigil
#

fr

warm knoll
#

so how are you all today

grave falcon
#

mostly good

red sigil
#

awesome

grave falcon
#

👍

red sigil
red sigil
#

ponbtosaurus taq discord gif

warm knoll
#

great.

red sigil
#

what about you asth

warm knoll
#

im ok

grave falcon
#

🆗

odd junco
red sigil
#

YOU CURSED ME

odd junco
red sigil
#

u can dupe on hypixel??

warm knoll
red sigil
#

ahhhhh!!!

#

hahhhh!!!!

warm knoll
#

what happened to trippie redd man 😭

odd junco
#

that is physically, mentally, metaphorically, and literally me.

red sigil
#

LOL

grave falcon
#

sup trippie redd

red sigil
#

hop on discord scrabble

warm knoll
odd junco
#

1264901

warm knoll
#

1264901

red sigil
#

Im begging you! Please stop scrolling!

#

1264901

odd junco
#

brb guys gotta clean up

red sigil
#

yeah

grave falcon
#

💀

#

I need to find whoever makes these videos

red sigil
#

they r on tikto

grave falcon
#

whats the username

red sigil
#

lemme check

warm knoll
#

it doesnt say here unfortunately

#

however you should listen to this sound to lower your credit score

odd junco
#

my eyes are firmed closed

red sigil
#

their acc got banned 😭

warm knoll
grave falcon
#

LMAO

red sigil
#

LOL

grave falcon
#

damn

warm knoll
#

rest in peace

red sigil
#

its literally gone omfg

odd junco
red sigil
#

atleast undertime slopper is still there..

grave falcon
#

lemme see if theres a tiktok archive site

red sigil
#

omg nvm

#

nvm

odd junco
#

21288432

#

i feel like these videos contain like

#

coded messages

grave falcon
#

hulkspaceformytribe

warm knoll
#

stoooop scrooolliinng!!!

#

21288432

red sigil
#

holdon i got a good one

deft fractal
grave falcon
#

this guy has a twitch

odd junco
#

🤨

grave falcon
gilded pebble
#

22812888 22812888 22812888 22812888 22812888 22812888 22812888 22812888 22812888 22812888 22812888 22812888 22812888 22812888 22812888 22812888 22812888 22812888 22812888 22812888 22812888

warm knoll
gilded pebble
#

WTF HELP

warm knoll
#

22812888

grave falcon
#

holy shit he's actually streaming in 10 minutes

gilded pebble
#

i love undertime slopper

grave falcon
#

oh wait thats a record stream

red sigil
#

22812888

#

22812888 Bye!

grave falcon
#

this thing is a rogue AI

red sigil
#

why is there a wynndata on the top left

warm knoll
#

i gotta tune into this stream coming up

odd junco
red sigil
grave falcon
#

The next stream is on Tuesday at 6:30 PM GMT-7.

red sigil
#

i look like this

gilded pebble
red sigil
#

UNDERTIME SLOPPER!!!

grave falcon
red sigil
#

I LOVE UNDERTIME SLOPPER!!

gilded pebble
#

I LOVE UNDERTIME SLOPPER!!

red sigil
#

What?! 6 COOKIES???

odd junco
#

I DO NOT GET UNDERTIME SLOPPER

grave falcon
#

this is some of the most bizarre stuff to exist

gilded pebble
red sigil
odd junco
#

bro i just remembered where i had seen the undertime slopper sound while i was drinking water and almost spat it out laughing

grave falcon
#

also look at the instagram holdspaceformytribe

red sigil
#

Rude
Resting
Cow

hybrid smelt
#

moo

grave falcon
warm knoll
#

yo how can i download tik tok videos

red sigil
#

press the screen

warm knoll
gilded pebble
#

WTF!

odd junco
#

89902152

gilded pebble
#

89902152!!!

warm knoll
#

89902152

grave falcon
red sigil
#

89902152

odd junco
#

i love undertime slopper

warm knoll
odd junco
#

LMAO

red sigil
#

gta

grave falcon
red sigil
warm knoll
odd junco
#

18126142

warm knoll
#

i tried it, it worked

red sigil
grave falcon
#

yeah that video is pretty cool

warm knoll
grave falcon
#

it is

warm knoll
#

omg 😦

red sigil
grave falcon
#

wow that's the eiffel tower everyone talks about

warm knoll
red sigil
red sigil
grave falcon
#

wait actually that kinda reminds me of those things from dead space

#

dead space also has towers which send signals that turn everyone into zombies

red sigil
#

never played it

grave falcon
#

it's a video game series

#

it's pretty good but also its horror

red sigil
#

r there jumpscares

grave falcon
#

yeah

red sigil
#

😨

warm knoll
odd junco
warm knoll
#

about what exactly :p

odd junco
#

about weird comments people reported you for

warm knoll
#

oh

#

pedojoke?

#

if you can take it you can take it if not then you can’t

#

i don’t think people are reading the fact that i did intend it as a joke though 💀

odd junco
#

poe's law i guess

#

like some of the time the messages appear to be in a joking way

warm knoll
#

i should have been clearer D;

odd junco
#

idk they are like

#

pretty borderline weird jokes

warm knoll
#

mhm

odd junco
#

idk if necessarily a permaban was needed

warm knoll
#

idk what was the ban for though 🚪

#

i mean the doxx was stopped

#

a while ago

odd junco
#

wdym

warm knoll
#

i’m not even the person doing it

#

hell the person who told me they’re doing it isn’t the one doing it

odd junco
#

yeah but why was it a thing in the first place

warm knoll
#

lashing out

#

if you want a more thorough explanation of why that part happened come dm’s

odd junco
#

i don't need to know exactly why

#

it just seems drastic

warm knoll
#

what happened

warm knoll
#

care to explain

#

i have time

warm knoll
odd junco
warm knoll
#

ig it depends on your views though as well!

odd junco
#

as someone who has been doxxed right here in this very channel i do not think it can be "not nearly as bad"

#

unless the person in question did some world endingly horrific thing

warm knoll
#

Who was banned.

#

it depends how you view it

#

me!

#

What was the reasoning

warm knoll
odd junco
#

@turbid shuttle it was full legal name posted in this channel btw

warm knoll
#

and some don’t care

odd junco
#

over hunting someone at FF

#

💀

warm knoll
#

💀

turbid shuttle
#

epic

warm knoll
#

@turbid shuttle btw how do appeals work

#

@warm knoll are you trying to excuse these screenshots as a joke?

#

it is a joke

odd junco
#

type what you did wrong and type why you won't do it again

warm knoll
#

so

#

the ban is for doxx threats

#

i already stopped the doxx lol

#

'already stopped' lmfao

turbid shuttle
#

since you were banned for essentially behavior things it seems as long you show you know what you did was wrong and you won't do it again, understanding that another incident like this will likely have no chance of appeal

odd junco
#

saying "i stopped it" says that it was a thing that was happening

warm knoll
#

i mean again

#

i’m not directly the person doing it

#

this person just told me they are trying to doxx that person

#

from what ik

#

they have their own beef or whatever

#

you know what else is a funny joke

shut perch
#

how do you stop a doxx surely its either happened or hasnt

warm knoll
#

this is the doxx stop

#

hasn’t happened

#

or at least if it has i don’t know anything about it

warm knoll
#

both sides stop doing stuff

#

so this was kinda resolved lmao

#

Are we seriously just going to excuse everything said above as a 'joke'? You've got to be kidding me

odd junco
#

what is "n thing" and "r thing"

warm knoll
#

if it’s too much for you asthae that’s fine

odd junco
#

i do not understand these terms sorry

warm knoll
#

dw

#

it’s the person who the doxx was aimed ar

#

at

odd junco
#

idk the wording of this sounds

warm knoll
#

yep

odd junco
#

wrong

warm knoll
#

it is a bit sus

#

i should have worded it better

odd junco
#

"i have..." sounds like you were getting someone to do it

warm knoll
#

but yea that person isn’t so much connected to me

warm knoll
odd junco
#

but i get what it could have probably meant

warm knoll
# warm knoll This is so disgusting

but this was made in a server where (ignoring my skill issue of not realizing blurred person in scrots might find this weird) stuff like that is correctly read as a joke

#

so yk

#

taking it out of context

#

in a place where that kind of humor isn’t read

#

definitely!

#

makes it seem sus af

#

You got anything to back that up?

#

wym

#

The claim of it being in a server where this would be read as a joke

#

mhm

#

that discord (at the time) was me and a few friends mainly

#

people ik pretty well

#

I'm not going to take your word for it

#

ok

#

Dawg

#

you expect me to believe you just like that?

#

if you can’t read it as a joke that’s fine

#

Oh yeah FUNNY JOKE

#

Haha!!

gritty inlet
#

questionable

warm knoll
#

You've got to be joking

#

and you also expect to believe just like that that i totally meant it seriously?!?!

warm knoll
warm knoll
#

what dumb fucking pedo says oh not 13 not 15 but fucking 14

#

We wanna talk about the hard r screenshots next?

#

it’s not supposed to make sense

#

I suppose those were funny jokes aswell

warm knoll
#

that’s me lashing out

#

i have no excuse for that

#

if you wanna know why i lashed out well

#

you prob don’t care anyway

gritty inlet
#

try to

warm knoll
#

Nothing excuses that sort of behaviour

gritty inlet
#

not get emotional

warm knoll
#

e

#

ok

#

basically in short

gritty inlet
#

you prob don't care anyway not ideal response

warm knoll
#

so yk i’m trans right

gritty inlet
#

I'm trans wrong 🤣

#

sorry..

warm knoll
#

lol

#

anyway

#

so r person

odd junco
warm knoll
#

when they could have done what @odd junco is doing

#

targetting just pedojokes right

#

this person

odd junco
#

wdym

#

you are saying i only target people who make "jokes"?

warm knoll
#

nono

#

so

#

r thing threw

#

me being trans into all this

gritty inlet
#

is ye a reference to the famous popular raper Kanye West?

warm knoll
#

in compound

#

with pedojokes

#

basically

#

she proposed i am faking it

warm knoll
#

and attempted to spreading that to others

odd junco
#

it was just people said "ye" a lot

warm knoll
#

ye

odd junco
odd junco
warm knoll
#

idk

odd junco
#

brother what

warm knoll
#

i mean we already kinda resolved anything

#

so i’m a bit confused

#

why you’re getting involved now @.@

odd junco
#

who is "we"

warm knoll
#

me emhan cud axo r

odd junco
#

there was other people

gritty inlet
#

brother cant even say the full name instead of just r

warm knoll
#

in general extending to sdu and fuy ig you could say

gritty inlet
#

sister*

warm knoll
#

ryakuu

#

r is shorter

odd junco
warm knoll
#

that is 6 characters

warm knoll
gritty inlet
#

so true ye

warm knoll
sage granite
#

r thing is 7 characters :?

warm knoll
#

no it’s 1+5

#

spaces are an exemption

sage granite
#

that is literally not true

turbid shuttle
#

🐴

warm knoll
#

i do not like typing 6 characters followed by a space!

#

something like

odd junco
#

i had people reach out thanking us for reporting it

warm knoll
#

mhm i bet you did

gritty inlet
#

what about nagger bitvh how does that compare in typing length

warm knoll
#

6 and 5

gritty inlet
#

trololol

warm knoll
#

lol

#

i have failed my code!

warm knoll
#

are the ones that r managed to manipulate successfully into not even trying to investigate the other side

#

bc rn you’re asking for my side cmt

odd junco
#

what other side is there

warm knoll
#

those people wouldn’t bother

odd junco
#

you say they're jokes

warm knoll
#

yes

#

dawg your side is

#

that is the side

#

'it was just a joke lol!!

#

LMFAO

#

it was!!!

gritty inlet
#

you are aware that there has been action taken against you even though your side was known right?

odd junco
#

other people who i've spoken to don't necessarily agree it was jokes

gritty inlet
#

it was just disregarded

warm knoll
#

by whom 👀

warm knoll
#

please stop talking

odd junco
#

isn't your side also your opinion?

#

idk

warm knoll
#

@odd junco dm then?

#

arguably

odd junco
#

why dms

warm knoll
#

but since the message is from me i’m telling you my intent

warm knoll
#

you are making me mad

warm knoll
#

that’s what the pact was about

#

that we stop talking about it unless engaged

odd junco
#

asthae i love ya brother but please stop the grandstanding 😭

queen radish
#

what's the tea

gritty inlet
#

you know that people joking can by other people be considered harrassment or bullying right? qnd thats not just "their opinion", it is entirely dependent on view point

warm knoll
#

what is grandstanding

gritty inlet
odd junco
#

no offense

warm knoll
queen radish
warm knoll
#

lol

#

im not gonna sit here and watch how u get gaslit in the dumbest way possible ..

#

btw

#

@odd junco

odd junco
#

i'm not getting gaslit lol

warm knoll
#

did you know anything about the pact

odd junco
#

no

warm knoll
#

ok

#

that was made like

#

2 weeks ago?

odd junco
gritty inlet
warm knoll
#

ok..

#

omg

warm knoll
#

it seemed like you were just buying it for a moment

queen radish
warm knoll
#

and that was seriously ticking me off

odd junco
gritty inlet
#

taking the real W by not having to play the game

warm knoll
#

yeah go ahead, im not gonna watch it unfold

warm knoll
#

goodbye

odd junco
#

cya ast

warm knoll
#

where were we @odd junco

gritty inlet
odd junco
#

i don't know what this pact is but the way you described it has no relevance to the stuff in the main screenshots

warm knoll
#

the pact was the supposed resolution to everything

#

all scrots known from both sides (i’m not sure if you were sent the ones from us) and an agreement between me and r to stop talking about it unless engaged as well as by extension attempting to shut down people talking about it

#

was the pact

odd junco
#

what is a scrot

turbid shuttle
#

sardonius camerot the seventeenth

queen radish
#

ok Oggy Terance Richardson

warm knoll
#

shot

#

(scrot)

odd junco
#

my brother in christ just type the word instead of using weird acronyms

odd junco
warm knoll
#

scrot is 5 characters

queen radish
#

zoomers on their way to skip both typing class and hand writing class

warm knoll
#

someone was trying to post a website with stuff against me

#

and so by pact i told axo to try to shut that down

#

the pact was only about trying

odd junco
#

shut it down in what way

warm knoll
#

and from him it didn’t work

#

just stop talking about the situation altogether

odd junco
#

axo as in sir_axolotl?

warm knoll
#

mhm

odd junco
#

ddos it?

warm knoll
#

but that managed to get shut down by emhan

#

no

#

like

#

ask the person to stop

odd junco
#

if someone was wanting to expose you how would asking them to stop make a difference?

warm knoll
#

that’s the pact!

#

bc not just me

odd junco
#

why are you avoiding answering this?

warm knoll
#

but r also wants to stop engaging with this

#

eym

#

wym

warm knoll
#

it’s bc the other side as well wants to stop engaging with this

#

now ofc if you’re

#

outside of this all then it doesn’t apply

odd junco
#

like you said, if someone was making a website to expose you, how would asking them to stop make a difference in whether that website goes up or not

warm knoll
#

it’s just by ask of both sides

odd junco
#

who was the website going to be by?

warm knoll
#

if it doesn’t stop them it doesn’t

#

hex

odd junco
warm knoll
#

yes but the asking people to stop applies since axo is in sdu hr

#

lol

shut perch
#

Guild comenity drama

rocky coyote
#

@warm knoll crocs

sage granite
#

ive seen better dramas

warm knoll
odd junco
#

if the pact thing was a mutual agreement between parties then why were people in the party wanting it to be brought to light publicly?

warm knoll
#

i don’t think hex was informed of the pact

red sigil
#

💀

warm knoll
#

i mean

odd junco
#

well one of the people in the screenshots said that they were glad something was finally done

warm knoll
#

2 weeks later

#

and you didn’t know either

rocky coyote
#

what sort of guild community drama are we in today

rocky coyote
#

i hope sir cmt have some insights for me

shut perch
#

Who called it a pact too sounds like some middleschool homies for life pacts or some can’t it have just been called an agreement

warm knoll
#

i already apologized to ely a whiiile back

warm knoll
#

pact is less than

#

6 characters

#

agreement is too long

odd junco
#

holy fuck why are you rationing letters like it's world war 2

warm knoll
#

!!!

#

lol

#

i’m on phone

#

so it’s harder to type a

#

so shortening!

odd junco
warm knoll
#

no

odd junco
#

so not all parties were in on this pact

warm knoll
#

ok so this is ely derivative rn?

odd junco
#

multiple people came out and thanked us lol

warm knoll
#

i can guess a few

frail niche
warm knoll
#

omg

odd junco
#

ok but the point is

#

not everyone was obviously in on this "pact" and it sounds more like a coverup than an agreement not to talk about it

warm knoll
#

i tried to push for like

#

a hard apology agreement

#

but didn’t work

shut perch
frail niche
odd junco
#

@frail niche @shut perch as the #2 message count user in #guild_community i sentence you two to 20 minutes of shutting up

warm knoll
#

lol

#

who’s

#

#1

odd junco
#

oxzy

odd junco
warm knoll
#

!!!!

#

apologize to each other and actually like fr fr resolve it all

odd junco
#

and you did apologise?

warm knoll
#

according to axo r was adamant on not apologizing so :p

shut perch
warm knoll
#

i told him

#

i want to apologize but he said

#

to not

odd junco
#

LMAO

#

whoops

shut perch
quick crow
#

hi guild community 🥺

odd junco
#

i deleted my own message

warm knoll
#

sircumt!!!!!

odd junco
#

nah because being ex #1 does not grant me #1 permissions

#

yeah

warm knoll
#

how do you check

#

who’s #1

shut perch
#

Not unless they remove the channel

#

😼

warm knoll
#

o

odd junco
#

in:#guild_community from: YOUR_TAG#0000

frail niche
warm knoll
#

omg

frail niche
#

no more toxicity

warm knoll
#

(pro)grammer?!?!???!?!

odd junco
#

my way is better since the autocomplete works for most recent tag

warm knoll
#

(professional grammar)

shut perch
odd junco
warm knoll
#

free sircumt!

odd junco
shut perch
#

That might be abit harder

odd junco
# warm knoll to not

ok well i think i've gotten enough of your side. i can't really make a full judgement of it because i do not have context but i still think the screenshots are like really sus, but could be out of context i guess

shut perch
#

Why the duck is that pinned

warm knoll
#

sircmt stands neutral?

odd junco
#

no

frail niche
#

most informative guild community message

warm knoll
#

undecided?

odd junco
#

i still think those are really weird things to say

frail niche
#

pinned for high effort

shut perch
#

My original one didn’t get pinned

odd junco
#

about a 14 year old

#

joking or not

shut perch
odd junco
#

i stand undecided on the punishment

shut perch
#

Nothings been going on here forever

odd junco
#

(everyone in this channel)

warm knoll
#

@warm knoll send

#

voices gif

shut perch
#

Everyone interesting got bullied out the channel or out of wynn

warm knoll
#

elangche!

shut perch
#

Shutup low rank

shut perch
warm knoll
#

a

shut perch
#

I meant intersecting but not criminal

odd junco
#

brother you are the definition of boring

shut perch
#

Role players or whoever

warm knoll
#

wait

#

@odd junco what guild

shut perch
warm knoll
#

are you

#

in

odd junco
shut perch
#

Guilds are boring

warm knoll
#

o

#

what rank

odd junco
#

Chief

warm knoll
#

wha

odd junco
#

why

warm knoll
#

who’s leader

sage granite
#

i cant believe i will be #3 in a few weeks

odd junco
#

CalAnders

warm knoll
#

i thought it was you

#

who @.@

odd junco
#

the better Cal

warm knoll
#

@shut perch is he better

#

than you

shut perch
#

Probably

#

What would I care

sage granite
#

bro that is actually so much effort

#

no

odd junco
#

chryssie just use an alt that is automated

sage granite
#

i would do that if i knew how to code it

shut perch
#

Self botta

sage granite
#

guild community is dead most of the time so it wont reach 10 msgs per second anyway

warm knoll
#

who is @sage granite

sage granite
#

Ok

#

@fallow delta

shut perch
#

@fallow delta

sage granite
#

yes

odd junco
#

!help

frail niche
#

@fallow delta

odd junco
#

?help

sage granite
#

its because of me

red sigil
#

just remove ur sweat glands

odd junco
#

@honest frost

sage granite
#

factual

#

this schizo xera sister person speaks truth

warm knoll
frail niche
#

banger

sage granite
#

.

warm knoll
#

dead channel

odd junco
#

@sage granite join grapple gods discord 😁

warm knoll
sage granite
odd junco
#

grapple hook clips 😁

turbid shuttle
#

invite me

wide shadow
#

oxzy dodging the water droplets in the shower:

wide shadow
#

unless that was also part of the rp

warm knoll
wide shadow
#

yea i saw it

#

so true

#

idk personally i just find the oversexualizing humor just. really fucking gross

warm knoll
#

not everyone is comfortable with it ig

wide shadow
#

idk well at some point it seems like you reached a point where there were a lot of people who were not comfortable with it

#

that you were doing it with

warm knoll
#

and that's when i stopped!

wide shadow
#

so i mean if you can realize that thats good

#

alright

#

hodl on i am taking pizza out of oven

warm knoll
#

omg

#

what kind of pizza

wide shadow
#

why is it called an oven if you ov in the cold food and ov out the hot food

wide shadow
#

garlic bread pizza

#

lol,

wide shadow
#

okay well abt the stuf here

#

not much i really have to say except like

#
  1. i find the humor gross and so do a lot of other people, please be mindful of where you're doing it/who you're doing it around, maybe dont do it in public spaces. however
  2. if it is sexualizing minors at all it is not okay in any circumstance, i dont care if both parties are joking, it is fucked up and if you do any more of that then i have no intention of associating with you
  3. i dont really know much abt the situation with ryu but i guess like. maybe just chill and dont bother holding such a huge grudge. you can just avoid them and your life will be easier and simpler
flint shuttle
#

oh we're talking about sync?

#

💀

#

a person messaged me about that a few months ago & they told me they didn't want to tell anyone because who would listen to someone like him or whatever

#

it was rlly fucked up

#

regardless of intention, it put a minor in a rlly sticky situation & should be at least learnt from and isn't the sort of behaviour that should be acceptable as just joking around

warm knoll
#

hm?

#

sure

flint shuttle
#

y'all are talking about it in a private fuy channel :c

warm knoll
#

yo lowkey give me fuy roles back ..

warm knoll
#

i never really left ..

#

🥺

flint shuttle
#

i will give u uh

#

avo build doc?

#

idk

#

i have nothing

warm knoll
#

lmao

flint shuttle
#

no doggy will be annoyed

#

i've already done it once

#

& he was annoyed then

#

LMAO WHAT

warm knoll
#

dude send it again

#

i didnt see

#

in dms

#

if its not allowed on this server

flint shuttle
#

thats so awful

#

was it JaydonTheWarrior

warm knoll
#

oxzer..

#

send in dm

wide shadow
#

this shit

flint shuttle
#

what#

warm knoll
#

yeah lmfao

frail niche
#

/srs /fr /ong

warm knoll
#

master troll

#

😭

#

they really had us

wide shadow
flint shuttle
#

ok tbf I get the harm prevention idea?

#

but apart from that

#

its stupid

#

he touched a lil bit on the idea that he'd rather they look at drawings

#

than actual kids

#

which yes, yes that would be ideal if they're going to do it

#

its not right either way

warm knoll
flint shuttle
#

its not right either way

warm knoll
flint shuttle
#

but how would you like to be a kid in one of those photographs?

#

because I have been & its incredibly dehumanising

#

its not right, its not good

#

but if they're going to do it, I'd rather an actual child wasn't left feeling like that in the process

#

it takes the victim out of the equation

#

which is honestly a major win

wide shadow
#

still is not ok or acceptable behavior whatsoever but its a less bad situation

flint shuttle
#

I'm not justifying doing it, but crimes like t hat are absolutely awful for the children wrapped up in them

#

that*

#

I'm not sure if that would impact legality though

#

i hope it would

#

wouldn't*

wide shadow
#

wdym

flint shuttle
#

@warm knoll

wide shadow
#

legality of what

flint shuttle
#

i am not a pedo sympathiser

#

i swear

flint shuttle
wide shadow
#

oh yea

#

for sure

warm knoll
flint shuttle
#

its just as dangerous & worrying

flint shuttle
#

I've exposed at least one pedo!

flint shuttle
#

frfr

warm knoll
flint shuttle
#

no

#

turtle was a paid actor!

warm knoll
#

FAAAACTS

#

slaaayy

#

he was just joking 🤣

flint shuttle
#

frfr

#

turtle tried to buy my silence at one point

wide shadow
#

it was aj oke guys 🙂

flint shuttle
#

i took the screenshots & didn't shut up

wide shadow
#

with what

#

le?

#

💀

warm knoll
flint shuttle
#

nope

wide shadow
#

oh

flint shuttle
#

he had some screenshots about imp I wanted

#

& i asked him

wide shadow
#

imp 🔥

flint shuttle
#

and he was like

#

"oh yeha i'll give them to u if u never mention my name again"

#

too bad

flint shuttle
flint shuttle
#

& being super mean about some other people

#

was it anbu or was it pho

#

either way it was

#

rlly mean

flint shuttle
#

and says a lot about his character 💀

flint shuttle
wide shadow
#

i think he is past that and realizes how dumb as shit it was

warm knoll
#

ok i dont know them then ..

flint shuttle
#

i hope so

#

hence why im not putting them here

#

its very old wynn drama

wide shadow
#

idk he was like. in a disaster mental spot during that time so i think he became a lot better afterthat

flint shuttle
#

that coincided with him being doxxed

warm knoll
wide shadow
#

not that it excuses that

flint shuttle
#

i'd have taken the LE

#

and kept talking

#

lmfao

wide shadow
#

parzizal 🔥

flint shuttle
#

Parz is

#

an interesting character

flint shuttle
#

ngl i still have parz added

#

on this acc

wide shadow
#

aw hel nah

#

u should msg him

flint shuttle
#

i dont speak to him

wide shadow
#

a gif

flint shuttle
#

i can

#

lmfao

warm knoll
#

whats the parz story

flint shuttle
#

no clue

#

its rlly weird

wide shadow
#

tell him to join discord gg the aquarium

flint shuttle
#

he wont

#

Parz doxxed Alex iirc?

#

& sent it to Turtle

warm knoll
#

lmfao

wide shadow
warm knoll
#

guild game was diff back then 😭

static thorn
warm knoll
#

funny that i only hear bout all this shit nowadays

flint shuttle
#

you know that ss I have about turtle saying he got a valk leader's address?

#

that was alex

#

I have some more screenshots relating to the context hidden away somewhere

wide shadow
#

its ok he moved

flint shuttle
#

good

wide shadow
#

i think

flint shuttle
#

I still haven't lmfao

wide shadow
#

idk i havent talked to him in a while

flint shuttle
#

how mnay people have been doxxed over wynn

#

fr there's like

#

at least 4-5

wide shadow
#

at least 8

flint shuttle
#

yes

#

Cath, Alex

#

Me

#

who else

#

like malicious doxxing not just saying names

wide shadow
#

gotta double the numbers for people who it never got out for

flint shuttle
#

wdy,m

#

wdym

#

oh Nynnf tried to blame Travis for doxxing me

wide shadow
#

iono man theres gotta be shit like that that never made it out

flint shuttle
#

which is quite funny

wide shadow
#

idk

#

lol?

flint shuttle
#

oh absolutely

wide shadow
#

arent they friends

#

man ihave no idea

flint shuttle
#

yep

#

me neither dude

wide shadow
#

speech bubble

flint shuttle
#

also none of those 3 doxxes actually got out

#

we just know about them because the people affected were open about it

wide shadow
#

yea

flint shuttle
#

Like, my address is out there & idk how well or what parts of it were put out

#

I just know they were

tardy garnet
#

💀

flint shuttle
#

I've had people message me my village 💀