#off-topic
1 messages ยท Page 314 of 1
i can
So um
Yes?
I wish I could use "
" on #general-plugins 
KiteBoard and HEXT updates will not be coming until next week

According to my parents I have been โon my computer too muchโ recently
My parents pull the Wi-Fi out whenever they need me which pisses me off every time
Hmmm yes
Lmao
lol
that doesn't happen to me but i dont think it will be as fast as ur wifi ๐
Lol my dad sometimes said โtommorow I will change the password for the WiFiโ
Oops I know the router password lol

tell him i can change it too ๐ ๐
What is it
its pretty cool
ngl
360 Render Render Artists MaakiXD CaseyMcNomNom Hiajen the Real Download map now! The Minecraft Project, The Devil Pumpkin | Pumpkin Carving Solo Contest, was posted by Hylarion.
Oo
How tf is that made on mc??
^ ๐
it's actually amazing
Some of my friends get to learn Visual Basic at their college
While Iโm doing python at mine
I did visual basic for 1 unit, well half of a unit before moving to c# for the rest
Cool
My college use python
Which I find dull
Especially after doing it for GCSE
U actually did programming in gcse?
Our IT gcse was just about ethics and stuff ๐
I did Computer Science
I donโt know if you meant that
But we did a bit of programming and the rest was just math and ethics and stuff
U could do computer science at gcse? Never got that choice lol
Oh lol
Closest i got was scratch ๐ ๐คฆ
Lol
I need that KiteBoard update, Niall ;-;
There's a point of stupidity that makes being a server owner just not realistic and I think Falcon has reached it
<o/ Banned
what
who is that
my ign is Falcon_Seeker
idk who that is
"There's a point of stupidity that makes being a server owner just not realistic and I think Falcon has reached it" well, at least i have not surpassed it <o/
๐คฆ dab
Dang it
I know you said "I was BorderrDamage" at some point but you must've deleted it
@fallow crow I would do it for money
what?
Your request
@sterile kiln very sorry for the tag, i was just wondering where i can report a bug with your mineresetlite?
Why'd you tag if you are sorry about it?
because i feel bad to tag people
ahhh i think i've figured out my issue. if you have any version of worldedit installed (in 1.13.2 at least) you can't create a mine, you get this error: http://paste.hewlothere.me/upoyagalew.log
i tried both fawe worldedit/worldguard and normal worldedit/worldguard and they gave me that error. i tried clearing selection, rebooting server, then using the built in mrl commands and it still gave the error (or a similar one?), but with neither it works
@pulsar blade if you're using my version of MineResetLite, you can submit a report/support ticket at vk2gpz.freshdesk.com
@pulsar blade which version of WG are you using on your 1.13.2 server?
I'm pretty sure only then new 7.0.0 works
i tried both latest fawe (dev i think?) FastAsyncWorldEdit-bukkit-18.10.26-94d5028-2069
as well as worldedit: build 3919
@sterile kiln
i might have to rebuild it against WE7
i think my build script is just looking at LATEST release, which i believe still v6
If it uses maven, 7.0 is in wg-core vs wg-legacy now
i've updated all WG related to support both 7 and older
but for WE specific, i haven't checked.
should i try any specific versions of WE?
na, for 1.13, i would need to update.
ah ok
looks like just one method invocation.
i should be able to add the support for multiple version support.
ah cool
probably gonna be like don't ask for release dates! will happen when it happens!, although any rough eta on that maybe?
it's not a huge inconvenience, but if i want to create a mine i have to completely disable worldedit/worldguard and reboot server, then create mine, then re-enable
i just had lunch break, but if it's 5 min job, i will release it as soon as test scripts finish testing the update.
oh nice
What kind of test script do you have?
any chance you can @mention me when it's updated?
i have bunch of maven/bash scripts auto construct Docker containers and run tests
Ahh
@pulsar blade i see big changes in API in v7, wonder how other MRL for 1.13 implemented this new changes and backward compatibility.
anyway, my new next release will work for both WE v6 and v7
@sterile kiln ah cool. same question as before (sorry for prob dumb question) any idea on when you might be able to update?
tests has been passing so far.
i can push it in a few minutes.
you can be the first test case.
removing an existing function is not a good thing to update for supporting 1.13 ....
that the one you meant?
i just added 15 new lines of code.. that's it to include v7 support while maintaining v6 support for older version...
lol
don't understand why they did not do that...
apparently they dunno how ๐
๐
ok, try my 2.2.0-VK version.
ofc.
coolio
let me know how it goes.
fawe uses WE, right?
i think it's like an extension of it
then it will work.
idk you need custom forks of a bunch of things like craftbook/worldguard/etc, i'll see if it works
FAWE is an Async for WE (FastAsyncWorldEdit)
na doesn't work with fawe rip
will try regular WE
what's the error?
lol, did you make selection?
regular WE doesn't work either
tried both wand as well as //pos1 and //pos2 (after reboot)
wait for new one.
although one thing you did fix:
if worldedit is installed, i can still use the normal commands with mrl
don't need to completely disable
lol, mybad
the one just uploaded thinks your WE 7 is v6 ...
ofc it wont' work..
i need more coffee.
lol rip
@arctic raptor had some questions about ur post in #367904196441276419 can you accept my friend request?
@regal juniper hey do you know how you can convert WorldEdit's world to bukkit world under v7?
Let me check if I have done it.
they usually have an utility class to do conversion.
Yeah I think I know what you mean.
ah BukkitAdapter.adapt.
Is the BukkitUtil not in v7?
Oh it isn't
public static BukkitWorld asBukkitWorld(World world) {
if (world instanceof BukkitWorld) {
return (BukkitWorld) world;
} else {
BukkitWorld bukkitWorld = WorldEditPlugin.getInstance().getInternalPlatform().matchWorld(world);
if (bukkitWorld == null) {
throw new RuntimeException("World '" + world.getName() + "' has no matching version in Bukkit");
}
return bukkitWorld;
}
}```
i just used BukkitAdapter.adapt(xxx)
Oh that works too
That's weird that they have 2 different ways.
Whatcha working on?
the one returns "BukkitWorld" which is not org.bukkit.World, right?
I believe BukkitWorld is different
updating MineResetLite to have v6/v7 WE support
Ahh
I think adapt works then
/**
* Create a Bukkit world from a WorldEdit world.
*
* @param world the WorldEdit world
* @return a Bukkit world
*/
public static org.bukkit.World adapt(World world) {
checkNotNull(world);
if (world instanceof BukkitWorld) {
return ((BukkitWorld) world).getWorld();
} else {
org.bukkit.World match = Bukkit.getServer().getWorld(world.getName());
if (match != null) {
return match;
} else {
throw new IllegalArgumentException("Can't find a Bukkit world for " + world);
}
}
}```
Yeah use this one.
Interesting, checkNotNull is within Google Annotations
I'll have to check that out sometime
ok cool
Tho I just created a command my own command context for methods.
That I guess can work the same way.
wth, plotsquared does not work with WE/WG v7?
Nope
i'm getting errors...
It's not updated
Last updated in 2016
Hmm it's still updated on GitHub tho
It's still being compiled under 6.0.0
That's why
:p
if you're eating Pizza and Jolt, then that's ok...
I'm waiting for my mum to bring my Subway :(
subway is too healthy for people doing computing/gaming...
True
you won't get enough fat to burn...
I don't understand how PS just compiled in like 5 seconds
does PS download something from a net at the runtime?

No I haven't lol. Give a girl some time to finish her food!
oh, i thought "girls are not allowed on the internet and have food".
Lol
take the plate on your room 
i'm just quoting someone that's not my opinion...i just heard...
I'm like nearly done
server booting
ok it works with regular worldedit, but not fawe
with fawe it's this error http://paste.hewlothere.me/yazufeyaya.sm
no, it replaces it in 1.13
oh.
maybe this is helpful vk?
Blazingly fast world manipulation for artists, large networks and developers: https://www.spigotmc.org/resources/13932/ - boy0001/FastAsyncWorldedit
grrr...
i mean you don't have to support it lol, i'm probably going to build initial things with fawe and then change to normal WE to ensure compatibility
iirc it does use WE and it just downloads it
ya, i thought the point of FAWE was that we don't need to use the code using WE API
you can skip java 9 and 10 since they are not LTS
๐
most/all things should still work with java 11 yea?
why is there only jdk and no jre for java 11 >.<
openjdk should be one.
meh i just install regular jdk
wait, does your FAWE downloads WE v7 or v6?
v7
hm is the JAVA_HOME environment variable in windows supposed to be this? C:\Program Files\Java\jdk-11.0.1\bin
wait
it doesn't download either
.... they downloads their fake worldedit and puts its version number as "unspecified"...
why... why....
ya, and version number is "unspecified"....
:/
(pls excuse dumb question) can't jdk also work as jre sorta? i.e. i can run things with java 11, like java -jar?
the JAVA_HOME environment variable is correct, right?
java : The term 'java' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ java -version
+ ~~~~
+ CategoryInfo : ObjectNotFound: (java:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException```
no idea why java -version doesn't work
smh fixed
i don't think FAWE is compatible with WE/WG v7
let me add something so that it will use WE v6 if FAWE is present
Dont they have a download link on their page? For WE and WG for 1.13 ?
i think if you install WE v7 separately, yes, that won't be a problem
but if you don't FAWE will use it's fake WE which is not updated to v7
and all the WE v7 code will break.
ah
it's ok i only really wanted fawe for voxel sniper for initial builds
on a different note, is there any kind of gui server wrapper for windows that's just an exe, or like a tabbed console (apart from powershell ise, that breaks things for some reason)
so annoying having like 4 or 5 powershell/cmd windows open
you can have both WE v7 and FAWE, right?
oh.
should i actually care what this says
or not really
so if you install worldedit as well as fawe, it just uses worldedit
FAWE auto-downloads WE on first start.
ya and the downloaded WE is missing many publicly available methods...
so code using those publicly available WE methods, which are not included in FAWE's face WE, breaks...
they should just use lex&yacc to create the face WE.jar...to make sure all public methods are covered.
no, they should be fixing it.
if they claim that code using WE's API should work.
atm it does not.
Open an issue then, lol?
no, i don't use FAWE, i don't run Minecraft, i don't play Minecraft....
so as far as my plugin is concerned, as long as it works fine with the WorldEdit, that surfice.
especially MineResetLite is not mine...
wait, that means MineResetLite never worked with FAWE?
i'd assume that's true
looking as MRL's code, it uses methods FAWE's fake WE does not have.
wow, that' bad.
@pulsar blade you should be able to have both WE (legit version, v7) and FAWE on the same 1.13 server.
yea, but there's no way to use fawe commands
FAWE should be checking whether the legit WE is there or not and if not, it will download their Fake one.
oh.
really?
i disabled their dummy one, installed regular WE and it gave me nothing for fawe
it would use regular worldedit (i.e. formatting/etc)
wasn't even a //fawe: or /fawe:
try install legit WE
and fresh FAWE
and restart the server.
sot hat FAWE does not download the fake one.
latest official or latest dev?
@fallow crow Are you the owner of retrolands?
Can I give you feedback on your site?
oh wait is retro lands legit using beta minecraft???
First of all, nobody uses the social media sidebars, they're just annoying. Emails are also not used by smaller servers and it doesn't need to be on the site. Clicking on your server logo redirects me to the website builder. Don't capitalize the first letter in each word >.<
The descriptions don't make sense and are repetitive
yep @pulsar blade
Beta or 1.7? 
beta 1.7
Beta 1.7.3 from 2011
Thanks for the feedback, the website is redesign so i will take that info on board. The Social tabs are their for SEO, tho im sure i can find a better alternative.
something i just found, assuming same site, the "about us" links back to your site
to the home page
Also you don't need the logo and title on the top right, just one of them.
it goes to our old website minecraft.online which has been ditched
oh lol
Tbh the website's size can be reduced by 80%
imo the design isn't too bad
It can just be one page, short description, IP and Discord link.
Sadly that won't rank us high on google, google likes a lot of content to rank. We are just looking for more useful info
to place on it
the caps here in this pic annoying
email who cares, use if you want
include an about us :D
possibly try to integrate the forum a bit nicer, or like, at least give a link to the home page ๐
sadly we can't place our servers on vote sites, don't support beta 1.7.3
ahmad what's your server's name
Thanks
Why? :p
just curious
CosmicRealms creative
if you don't have a website, your opinions can be considered from a user experience perspective but not very much from a site administrator's point of view. @fallow crow has done a decent job of seo, considering their server comes up as the first result when you search "minecraft beta server", and etc and also first result when searching "retrolands"
if you search "cosmic realms", you don't even get vote sites for your server. if you search "cosmic realms creative" the first result is PMC for someone else, then it's your site on namemc.com
aaaaaaaaand i'm sounding like a bitch lol
just "sounding like"?
lol vk
shhh glare
remember you're a girl who are on the internet. you already violated the rule.
:p
i still don't really understand
understand what
yea ๐ that's the goals
@sterile kiln from before, if you have both WE and fawe installed it doesn't enable fawe, and thinks both WE and fawe are a dupe http://paste.hewlothere.me/lasujajate.vhdl
yea i can't be bothered. i'll just use worldedit
since the original MRL supported WE.
as long as my version works with the legit WE, i'm happy
yea :p
also vk if you're on can you verify me on your discord ๐
Yo can I get verified too, I don't think I own anything but I'm pretty chill, right?
I'll ban people for you in this discord. Just show me they have cracked plugins and boom, I'll whip out the ban hammer and even video it for you.
๐
on spigot spigot?
i didn't yet but gonna buy tokenenchant when i get paid wooo
lmaoooo im prob doing this wrong but idk if works
meh o well
?what
Unknown command, run ?help for help.
Woah so many people banned since I was sleeping
@pulsar blade I don't want players to find my server using it's name though :p
:p
@pulsar blade
???
i know?
yes vk did
๐
If only I could buy it LOL
i's less than US$20....
Thats a lot
if you save 4 cups of coffee...
Yeah but im 15
you should have bought it when it was $5
When was this?
back in 2014
Yeah well back in 2014 I was a salty 11 year old who didn't have minecraft
The only difference is that now im a salty 15 year old who has minecraf
(on a separate note, how the heck do i make a completely void world WITHOUT extra plugins???)
i've tried these in server.properties:
level-type=FLAT
generator-settings=3;255*minecraft\:air;4;```
```generator-settings=3;minecraft\:air;127;decoration;2;
level-type=FLAT```
```generator-settings=3;minecraft\:air;
level-type=FLAT```
i've tried this in bukkit.yml:
```worlds:
world1:
generator: CleanroomGenerator```
every single time i try a different one, i stop my server, edit the different thing, delete the world folder, start it (it regenerates) but i ALWAYS get a superflat world
go on
No make a new world superflat
and use world edit
to delete all the blocks
and crash your server like 100 times
๐
Why do you need a blank world
so it uses less resources in a lobby
you cannot limit the world size?
Is that really neded?
visualize: yes
vk: didn't look into that
but still dunno why can't get void world
vk, if you don't mind me asking, what do you do for work?
but making void generator is very easy though.
Your assuming he has work
i do all kinds of stuff.
Elaborate
ranging from doing contract work, serving court, teaching at university, selling lemonade at the local shopping center, etc.
vk when you say but making void generator is very easy though., do you mean using a plugin? if so, i could but i'd prefer not to have additional plugins
Howdy
yes, it has 5% alcohol
visualize i don't have low ram, i have a 32gb dedi but the point is to minimise ram usage
I mean, I do run the place
That's such a weird range of stuff to do
ooo I see vk
How have you never seen cube before?
I have 3gb
Lol
Weird but good range
funnycube was in plugin help before
Was i?
yea you got me to pm you
Wouldn't of guessed
xD
Indeed
if that's ok for me to ask :p
Md_5's state
o true i forgot he was from aus too
You have to stand on your head to talk to them.
not if i'm from australia
Counteracts it
Oh man
Oh ty for adding me cube
ya, i don't like Sydney, it's too busy.
oh wow vk's from sydney? lol
Ever been to melbourne vk?
Oh, cool
used to do shopping at QVic market every weekend.
I have no irl life at all
Gotta get the donuts
Oh shit it's 5:30AM
melbourne is cool
I literally spend my time developing mc servers
Selling them
but like more melbourne then sydney
Or running my 14k member discord
Sell your discord
Just had to sneak that number in there
i find it hard to believe visualize runs a 14k member discord at 15
People do crazy things at a young age now days
I mean, I'm 13 and work on one of the biggest plugins on Spigot
FishSlapper
And been co owner in over 150k member servers
Like lil pump quotes
"None of this shit be new to me"
Damn they have 175k members now
How's it going fam squad
i need to organise eye-ball meetup next Feb
I'm top of the morning to ya laddies thanks
i shall flex
Whatcha meeting up for?
i'll be in EU for vacation
How hard is it to keep 203 plugins up to late
i thought I might meet up with some people I've met in Minecraft community
I've met with people before.
catfish 100
@fallow crow ffs ๐
ah, sounds cool.
awesome
It's actually pretty fun.
That flex tho
I've also met people in real life.
i will provably drive by maxim's house.
Crazy
Meeting up with people would be hell for me
if i'm traveling US, i will drop by at clip's too.
but that has to wait.
Im basically jekyll and hyde with my personality
I go to school and never speak and I go home and roast kids online
I met a guy last year IRL that I've played online with for years
Turns out we're right round the corner of each other
Well Iโm in the UK
and tell people come and find me.
Same
Would be cool to meet clip maxim and md5
Lol
@fringe sigil Where abouts are u
I agree on 2 of those names.
Surrey
i will be in UK for 1 week.
Southen ftw
Y'all remember when Maxim got his bike stolen?
southend*
No
No whos maxim
Maximise
Featherboard dev.
^
ik lol
mostrly in France but will drive to maxim's and Germany, etc.
Cool
I got my friend to buy featherboard for me
Um
(I get my friends to buy things for me its my way of life(
Lol why have some people been banned?
Mostly leaked plugins
Let's assume it was all legit above board
Like Featherboard and TokenEnchant
you ban them for that?
Lol when they ask โhelp me featherboard has broken hereโs the error: disabled due to piracyโ
For having leaked plugins? Or course.
Does this look like its a leaked plugin
And then I send you a nice little message on Spigot each time.
if someone was using leaked tokenenchant, that must have been very old one or broken one.
They only provide support if itโs owned on your accounts
Which it looks like it is
@sterile kiln I can link you to it if you wanted
How can i host my java discord bot on my vps?
In dms
I had a guy shit talk me after I banned him so I took the time to contact 30 premium plugin dev owners with his server information and stuff and let them know he might have leaked their plugins.
They gave him crap
no, i'm not aware of working latest version being leaked.
The latest hasnt been leaked I dont think
Just gonna drop this here...
- Don't include yourself in piracy talk, including plugin leaks.```
How can i host my java discord bot on my vps?
Okay
Wait how do u get the red chat?
I asked discord to give it to me
Install java on the VPS and you can run the Jar
Admin
- test```
+This is greenish
- this is red```
O
that looks like yellow.
I've had no tags yet, I wonder if we fixed the issue.
Oh I thought you meant username
its diff
Im colorblind
was wondering if i could quickly talk to a staff member
@muted fern what thing do u use
is it like js or something
,,,diff
- Red text,,,
i need help posting my server for review, due to the version its runs
replace ,,, with `
was wondering if i c ould get it posted manually
- tiktok bad boys```
ok done
ty
See on phone this looks stupid as its not coloured ๐
Same
I had no idea what they were on about
Don't think md works on mobile yet.
xd
Phone still don't have colour support?
@fallow crow you should be able to post
Aren't you cool.
Yas
wew
My server runs Beta 1.7.3 from 2011, so the bot isn't able to ping it
I like using the beta versions
You do what now
It deserves to not work if you're using that outdated stuff.
why not?
I know PAPI works on 1.7.3 sooo
Is it a forge server jet?
That's all you really need.
protocol does not support?
no, bukkit
why though
forge wasn't a thing really back then
Wut yes it was
modloader was more popular
2011 one ya, i remember that version.
Funny, can i get my server posted manually?
@muted fern any chance you could nick me
to Varouc
Why and no
rip ok
Because I would rather use my ign in this chat
I want to get it posted to Rate My Server
Hit the yote
Gary doesn't approve it jet?
@eternal apex any reason why his server wouldnt work?
very old protocol?
Yeah
jetpack can you pm me your ip again pl0x
Not totally sure what Gary is using
Also dont believe we have a manual override for that channel
I prefer you didnt
rip
o we do have one
post here what you want it to be
using the tags and everything
k 1 sec
ok
Legacy really means legacy (:
k jet its in
thanks
gotta do the stars manually
funnycube this servers icon is nic
@fallow crow why did you post a img of shopgui
@boreal garden why not
ty, its our spoopy one
anyone going trick or treating this year?
Not really an Australian thing.
Never been in my life
not doing it this yr
Taught to not take from random people then its ok for 1 day a year... i think not ๐
oh, yes, I could put poisoned candy in our basket.
hia
to shut them up.
Shoot
We're you talking about the needles in the fruit
Was hinting at it, yes.
ah
my question is
Why is trick or treating that dangerous lmao
how does one insert them into them
@sterile kiln put a broccoli coated in chocolate
so many vegitalian kids around here,
without leaving a trace
they would love it.
then put meat in chocolate
ew
Brocoli shaped chocolate
Nah make fried bananas they taste disgusting๐ ๐ ๐ฆ
too expensive.
Just prank them, and don't answer the door.
i think stinky Durian candy will do the job.
Seriously I dare you to fry bananas
fry bananas are great though.
so is joyner lucas's music
Doing Halloween is to Dangerous in Australia, Dropbears are out at night
Can confirm
Also confirm
"Your XXXXX personal storage space has been increased from 100GB to 1TB" it's looks so insignificant when you see "Using 146.15 TB of 12000 TB" on Dropbox...
because no reason to delete them
me neither....
How much does it cost to store that amount?
$0 for me.
Enlighten me
This is where he just says he owns Dropbox
i wish.
Is it because your in an organization that uses it?
something like that.
there must be a small print.but we've never encounter any issue.
we're just dumping every thing there.
time to go to bed and watch a movie, g'night guys
Google has the same thing
They just limit you at like 150gb per day
before they throttle
๐ฑ cube is a fellow Aussie
I'd love to be in australia
as crazy as it sounds I want to have more potentially dangerous things in my life. UK is boring
Great and train stations.... no
My grandad lives in Australia
All my family lives in England
@foggy pebble i kinda doubt this but is there any real way of getting either your spigot site api or your mvdwupdater to work with python in some way? maybe being able to run something with a commandline argument? i.e.
java -jar MVdWUpdater.jar <spigot username> <spigot password> <resource url>
and then having it fetch that file?
As in a python file as a stand-alone resource on SpigotMC
i mean a standalone python thing would be better, but like being able to run a console command to do that would work as well
i could, but having trouble finding much documentation for xenforo in python
Oh so through xenforo
well on a theoretical level, i assume if you changed a few values in maxim's, it'd work with other xenforo sites but i could be wrong
it is
i just don't know java ๐
Hence the name.
i mean maybe
yea kinda mostly meaning that ^
Gray waters, be careful.
๐
You guys actively use PAPI?
yis
Well I use it in all my plugins
Just wondering if you've had any errors in the past 6 hours. We did some backend changing.
Ah I havenโt used the expansion system for a while
Ahh
Good
Yup
@paper grotto Hey there, sorry but you don't currently meet the requirements for the Developer role. Try making your projects active again and apply again at a later time!
Already thought so. Doing too much private work atm to also do public work on Spigot. Thanks for checking it anyway
For sure! Hope to see you around!
I wish I could know, on how many servers my expansion is used ;-;
O.o
Guys
Anyone know any fun game modes I could use for my server
I deleted all the server files
And um now I need to make the server again
Battle Royale
Something like a battle between ships
Eh I need more popular gamemodes @fallow crow
Prisons and factions
I tried both of those
They are kinda popular
But hard to get big
Bedwars?
Requires no grinding
@fallow crow War
I used that plugin on my old server, It's (was) great
Don't know If it works anymore
What version
hm
Maybe a hungergames kinda gamemode
@cobalt pendant the previous punishment wasn't enough for you, huh?
they're botting the server
Some staff member?
he didnt respond it lol
will someone come ?!
god damn
-_-
Such idiots
mhm
Who removed the messages?
I don't think we have ever expected a raid 
๐ค
And why tf would you spam this server
kids
^ idiots
we banned all 50
accounts
cool

@serene sandal @ancient juniper @junior harness
oof no
Oof
there are only messages
it should all be gone now
Why was I tagged so many times
Because you're trusted and here was a spam-attack with some selfbots
Hey guys what did I miss?
?
of we do xD
Whatโs happened
Bots spammed the chat
o
what
๐
there are lots
get the best for you
mc-market has lots of unsafe for huge networks uhc plugins, for example
@naive barn i dont know any
Fixed a good amount of Issues in KiteBoard
Also released a bugfix for HolographicExtension
Gโmorning
"please ping @๐ Glare ๐" hmmmm...
@regal juniper
What do you want
Zoo wee mama
urmom?
@sterile kiln morning? xd
its still the same day for me
as when we last spoke
๐คฆ dab
Itโs nice sunny morning in Sydney.
@fallow crow do you know the Earth is rotating?
Let me guess a white square?
Well, I thought you just keep incrementing the number of edges to produce a new icon.
No :p
Based on your white triangle.
Please donโt take my statement seriously.
Why not make yourself a cool GIF pfp vk 
xd
Ripperoni
I still have you blocked
can you come on my serve real quick? i need to test invites
No
Donโt @ him either
@late schooner
What do you not get about being blocked? Your mentions do nothing
It can since it shows the intent
More like he dropped the painting in the puddle.
Cool
