#general
3141 messages ยท Page 613 of 4
well i assume it's supposed to be found from the perimeter of the entire window
idk
oof
Hm, not sure if the height matters, let me think
really, what i need is:
(pi*x)/2 + x + 2h = 8
here's how you do it
i think that's what it is
wait
The perimeter is x + h + pi*(x/2) = 8
height is important 
So, from there, isolate x
right, solve for h in terms of x then substitute?
well I'd just have some dumb shit for h
that's the general pattern i think
Yeah
maybe it doesn't matter 
well, if i just get h in terms of x then i no longer have to give af about h
itll all be x
i think i can do this
hold up
^ Yes, that
the window is literally infinitely vertically scalable
except for the perimeter is maxed at 8ft
simple...x -> 0
ok whatever yall do, dont answer it for me
h -> infinite
ill brb
bruh the perimeter is 8
WIZ STOP
does a norman window have some special shit to do with height and the semi circle
oh I see
we're all fucking pepega
this is an optimisation problem
literally
fucking
get the area equation
oh, you can get h in terms of x
yes
cuz you know 8
did i not say it was optimization or did i omit that
optimisation is for forks
Oh boy. I miss that problem ๐
yea i just need to do 4 more of these and hopefully not many on the exam in a few hours and then fuck optimization it can get fucked right in the ass
A = (x * h) + (0.5 * pi * r^2), P = 8 = x + 2h + pi * r, r = x / 2. plug r into A, solve for h, plug h into P, optimize in terms of x
NO
ye
poggers
im not clicking those im going to flex my brain
imagine actually doing min/max by hand
All WA understood of that was "maximize" anyway 
what a waste of time
I swear that website got dumber in the last few years
I'm alright with math
my math is slowly decaying, let's see what's left of it
I teach Geometry. Sooooooo, probably good at it.
if the triangle is equilateral then you're just trying to get the side length from the apothem, right?
apothem is going to just be the radius of the circle.
the apothem is perpendicular distance from center to the center of an edge
(DiscordBot) https://en.wikipedia.org/wiki/Apothem -- Apothem - Wikipedia: "The apothem of a regular polygon is a line segment from the center to the midpoint of one of its sides. Equivalently, it is the line drawn from the..."
oh waity.
cool
Well. Yeah. Can the vertices of the triangle be calculated. Yes.
Can you? idk
look at all this fucking math in here 
the circle is inscribed not circumscribed
^
if that's your confusion
massive pepega
why is there a circle there
don't need a circle
just need some trig
You have an apothem, a 90ยฐ angle, and a 60ยฐ angle. That's more than enough knowns for even 9th grade geometry
poor 8th graders
you can solve this problem generally for all regular polygons
can't solve for vertices of the triangle
it's the same math for every one, just a different interior angle measure
@still smelt just realized something. There is a restriction. Do we know how the equilateral triangle is oriented? It is only possible if you know how it is tilted (if at all)
depends how big the triangle is
Like is the flat end down
5cm
oooh. Would be rather easy in polar coordinates. probably. lol
oh so it's shifted up then?
that's funky
(DiscordBot) https://en.wikipedia.org/wiki/Polar_coordinate_system -- Polar coordinate system - Wikipedia: "In mathematics, the polar coordinate system is a two-dimensional coordinate system in which each point on a plane is determined by a distance from a..."
idk i don't think polar coordinates are the answer here
you basically have r and an angle
it's a trivial enough problem that it's about as much effort either way

one of these days you're going to have so many taylor emotes stock piled
you'll just react to everything with a unique emote
9.2376
nice numbers billy
I have a drawing of the problem Worry it gives too much away though.

the problem is trivial once you draw the picture.
y'all nerds actually code? wow
i pretty much do my best work late at night, helps with not thinking too much while coding
Coding with c is like coding in the 80s
I rly need to learn a non objective based language
quit while you're ahead and don't learn any programming languages
just use static all the time
in arrays length is a field, not a method
^
in arrays length isn't technically a field
it's certainly something
it's the length of the array
it's on the allocated array
the jvm places the length on the array object
with C you don't because nothing places the length there
cuz arrays are dumb
i remember when i first learned java, i was coding a graphical calculator by using the suggestions in eclipse for different methods. That program was ugly AF
length for arrays is specified at compile time
https://github.com/AdoptOpenJDK/openjdk-jdk14/blob/master/src/hotspot/share/oops/array.hpp#L45 that's where it is, if you're interested
JDK14 mirror from https://github.com/openjdk/jdk14 - AdoptOpenJDK/openjdk-jdk14
i think
cool
I remember when I had to code a linked list in C and then visualize it in nodes. I wanted to kill myself holy shit
just when I try to finish a PR
ppl create new issues
Related to: https://github.com/PaperMC/Paper/pull/1846/files Specifically, ` public ChunkData createVanillaChunkData(World world, int x, int z) { return Bukkit.getServer().createVanillaChunkData(wo...
that are related to my work
I dont even know anymore why I have up on that
I know that gian wanted to have that, I created a custom build for him and we were fine
should have installed the github app
gotta tap into the people reviewing code on phones market
yes github has an offical app
actually this is a better explanation i think https://github.com/AdoptOpenJDK/openjdk-jdk14/blob/master/src/hotspot/share/oops/arrayOop.hpp#L108
JDK14 mirror from https://github.com/openjdk/jdk14 - AdoptOpenJDK/openjdk-jdk14
idk i'm just poking around and don't have it open in my ide so
god knows
declaring it with int is monka fucking christ
some serious monka christ in fact
probably does whatever the fuck that does
or was it long that varied on 32 vs 64
fuck if I know
I just use stdint, specify width and forget
i want to say long is pointer-sized always but it might also be always 64
I think long is the one that varies
long is 32 on 32 and 64 on 64
maybe not 64 on 64 if you're on vsc
or something?
yeah this is why we have stdint
yes
signed int max specifically
numeric type names are the one thing rust did right
because god forbid unsigned exists
yup having them named after signed and unsigned and width is ๐ฏ
no fucking confusion ever
no dumb bullshit where the compiler decides
it's really unsigned long long int
what
long is short for long int

this is C mikropenis
my mikropp is so long that i must use unsigned long long int already to fit the number
in terms of 10^-99 cm? sure

Viper, look at the smaller triangle (OPB) forget the big triangle. You know one side (8) and 3 angles (90, 60, 30). Just solve for OB. OB is the same as OC ;)
extern simply declares that given symbol is available at runtime
available to be used by other source files at runtime
union gives me cancer
union { int a; float b; }
memcpy ez win
ye
struct { union { struct { union gang
clion
emacs
(n)vim ty
emacs
does emacs have a white theme
vim ecosystem has so fucking broken plugins
no
yes
no
vim is impossible to quit
the broken and barely maintained ecosystem is the reason i hopped off from vim boat
that's the worst meme of the century
fuck me already
i ran minecraft server in neovims :term
no that's gay
ye bby
and honestly using vim is just a turnoff
vim is so hot
I use vim for all my C shit
but visual studio code & nano >
yuck
your'e dumb and your opinions are wrong
I'm always wet

pog
how's toothpick mikro
but nothing turns me on like leafy ๐ ๐
see my discord
already left

you're missing out
i wanna be in ur shitty discord 2
do you really
yes
using discord
.g mikroskeemsrealm firefly
(DiscordBot) https://github.com/mikroskeemsrealm/Firefly -- mikroskeemsrealm/Firefly: Waterfall fork - GitHub: "Waterfall fork. Contribute to mikroskeemsrealm/Firefly development by creating an account on GitHub."
there's the link
suc my pp
hang on, symbian os phones support java apps, i wonder if my phone could run a minecraft server
it's J2ME
not J2SE
does estonia have any famous youtubers except for aksually?
i mean they are technically similar, but it only has 30MB ram and internal storage anyway, way too little for minecraft
fuck i have emerged from that problem, i did it totally retardedly probably and spent way too much time simplifying the area function before taking the derivative but i did it suck my balls and ass https://sxcu.net/xVAG7h.png
according to google I'm either pregnant, have stomach cancer, ulcers or a b12 deficiency
or a combination of all of them .-.
interesting, what are your symptoms to create that strange mix?
Whenever I eat I get extreme pain and and fall asleep ๐
And if I don't eat I get extreme pain and fall asleep
So you basically have pain and fall asleeep 
o well I contacted the local clinic and they said they'd get back to me some time this year basically
and I went to the pharmacy to get proton pump inhibitors and a security guard asked me if I had a cough and didn't want to let me in, it was very strange
ye basically. I've had issues for years because I'm auto-immune, but over the last 1-2 weeks it has gotten significantly worse, so the point where I can't concentrate on uni at all and am sleeping like 16h a day lol
ulcers does sound pretty plausible tho ngl + I've been stressed as fuck over the last 6 months between having to take care of my dad's death, having a 200% uni course load and working two jobs + then maintaining like 52 hobby projects D:
tbh in your situation i would call emergency services
they won't do shit
unless you're pooping blood it's not an emergency
I should eat a shit tonne of beats ๐
But if I'm pregnant then I want simple to be my baby daddy ๐
then learn how to make drama with hospitals, it's the only good way to get them to hurry up. My dad taught me the way
make them panic
it works, trust me
The Swedish healtcare system is notorious for the long waiting times
Healthcare is free and top class but you need to wait 52 years to get care in the first place
that's why you need to make them panic, most people don't understand how to do it properly
does my spotify clone look decent?
@heady spear i bet its from the aids
was that a gay joke
at least make it something original
at least i'm not dying from the flue
nah but the rest of your countrry is
more living space
k im moving in
ok fellas.
when do you take a constant out vs take it to 0 when differentiating
cuz im having a crisis
Because the differential is a linear operator and it's a property of linearity
a function is linear iff
f(cx) = cf(x) and f(a + b) = f(a) + f(b)
So the contant just scales the function ๐ Because of this, it also scales the derivative
does estonia have any famous youtubers except for aksually?
@heady spear who's aksually
lol a commentary youtuber
ok here's the deal
k is a positive constant
Y = kN/(49+N^2)
I need to differentiate, so i product rule that bitch
Y' = ((49+N^2)d/dN[kN] - (kN)d/dN[49+N^2))/(49+N^2)^2
for d/dN[kN], k is a positive constant like previously mentioned, does that entire thing become 0 or do I pull out k and differentiate N (1)?
tbh no clue i rarely visit youtube
and when it comes to 49 over there, im pretty sure that becomes 0
All 1-time differentiable continuous functions (C1) form an abstract vector space and because of this, the properties of linearity are kinda necessary for the derivative to be a thing at all
ok i dont know what that means city
Pull the k out beforehand
this is another language
do you pull the k out bc multiplication
you can think of "+ k" as + "k * (N^0) and N^0 would differentiate to 0
and k * 0 = 0
so it's the same rule, ish
I should do my own calc homework but I'm busying doing the same fucking quest 950 times over to make sure it doesn't break
I hate QA
wait ok then i can pull the k out in front and do the product rule on the other shit right, and then redistribute it later

yes, pulling out the constants will almost always make your life a lot easier
thank u
This are some demo songs
In my spotiy clone
I have a weeb playlist with 80 songs myself
I literally only listen to fucking fedez nowadays idk what the hell has gotten into me
he's so hot tho holy shit <.<
i've never heard of this slang
ye no
i just have a playlist of around 80 songs that i like and only play that, mostly metal, grunge and some rock
I've gone through this dialogue 950 times. If I didn't get paid to test my code I'd jump out of a window rn
jesus fuck
didn't they remove barty's optimization guide because of tuinity
yes
the old one is grandfathered in
signatures have been left entirely alone in a similar vein
guess we'll see if that changes
They don't seem to care unless you go out of your way to promote paper/forks
same deal in the Discord, unless you're telling people to jump ship and download Paper they don't seem to give half a fuck
which is undersandable ๐คทโโ๏ธ
My paper only plugin got removed from spigot tho
obviously?
well... yea?
tf did you expect lol
So they do care
Y = k(N/(49+N^2))
Y' = k * (((49+N^2)d/dN(N) - Nd/dN(49+N^2))/(49+N^2)^2)
Y' = k * (((49+N^2)(1) - N(2N))/(49+N^2)^2)
Y' = k * ((49+N^2-2N^2)/(49+N^2)^2)
Y' = k * (49-N^2)/(49+N^2)^2
now i a stuck. how do i simplify that further
i thought maybe i'd be lucky and have part of the denominator cancel the numerator but negatory CITY HELP I BEG
you posted unrelated shit in their resource section
of course it'll be removed
simple im too tired for maths rn ngl
have you tried symbolab?
it's lit ๐
according to wolfram alpha that is the best derivative i can get
so
FUCK IT HERE WE GO
(DiscordBot) This command requires an API key from wordnik.com.
Hell the fact that they allow the paper recommendation thingy in free resources shows how little they care 
@still smelt aren't a lot of anime songs on spotify restricted to certain regions.
why r u listening to weeb music
I see
On spotify?
You can locally add songs and download those to other devices with your account
I did that to bypass regional restrictions
I am building my own spotify now so soon regional restrictions wont be an issue anymore
Although just renting a cloud server to store all my songs on would be 100x easier then building the spotify interface
y not just use homehost ๐
homehost allows you to use both spotify media + shit not on spotify
so if anything is missing you can upload that, and just rely on spotify for everything that's on there
If I were to locally add song y on my desktop to a playlist and wanted to listen to it on my phone then I would have to click the download playlist button on my phone and my desktop has to be online. After downloading its just there permanently
I have both the Beyerdynamic 770 and 880 pros
880 pros
pog
beyerdynamic pog
i have tidal
i don't any difference w/ spotify tbh
but i do have it 
Do you hear better due to your headphones?
I have my mom put the phone to her radio speakers and that's my media streaming
You viper
very good quality
Its a shame that a lot of anime music is mastered so bad
I've had the worst luck with seenheiser shit, audio quality was nice but the headphones fell apart
like three times
expensive piece of shit >:(((
sennheiser is german too, I know because I had to mail shit there multiple times smh
Sennheiser feels more targeted at selling in quantity instead of quality compared to beyerdynamics if you ask me
Those things are wireless? @still smelt
Right, it's a mainstream mid-range brand and they certainly belong to that category quality wise
Iirc my friend had those and it sounded like shit compared to my beyerdynamics 770 pro
But for convinience those things are nice
Uhm
Just get a job at the supermarket
300 a month ez
Ok not during the pandamic
It is common here for people here above 15 to work part time
๐ณ๐ฑ
Kaaskop
No u
No u
Ok gn
Ima pray to god that I may dream about anime once more
Yesterday's dream was an epic tournement arc
(โฏยฐโกยฐ๏ผโฏ๏ธต โปโโป
who wants to watch some Netflix?
im streaming nf if anyone wants to watch!
(โฏยฐโกยฐ๏ผโฏ๏ธต โปโโป
ask for link if u do
o_o
Amine
smd
vic am gonna finalize first hv beta soon-ish, there's barely anything left for me to add
Noice
I wanna get started on rewriting PlotSquared commands using ACF .-. But like, maybe I should try to not fail all uni courses too
ah ye
I mean it's clearly related to multivariate calculus because uh
the plot is an object in R^3 so ye
am I missing out on the math o.o
im gonna try swapping intellij material theme for gradianto
it looks pretty cute ngl
eh not a fan lol
Material UI intellij seems like it has a lot of whitespace
I like it on my 27" monitor, makes it feel less crammed
but everything is way too big on my 13" mbp
am I the only person who just uses darcula
nah
I do too
I even use light theme at work quite often
but didnt since I was forced to stay here
i just use darcula taco man
where
@hard pelican might've
Memes Generated by an Artificial Neural Network
light theme users
Is this allowed?
Still funny tho 
@scenic lintel @rose summit
Thanks for the report. No, it is not allowed.
@proud lance these guys are preventing rape https://gifimage.net/wp-content/uploads/2017/08/office-space-printer-gif-9.gif
lmfao I'm so bookmarking this site
these are the best ^_^
...
classic
lmfao

@golden gust would approve
@vernal moth uhm
@upper flicker the fuck
I use cyan light you bitch
usually should avoid using it until the .1 release
seems to work great ๐คทโโ๏ธ
yeah it's unlikely anything would break
but even canonical says you should wait just to be sure
the default update command won't even let you jump LTS versions until the .1 release actually
you have to provide an override flag if you want to get around that
it's one of the themes jetbrains released to showcase the new theme system
Screenshot pls
HOW IS THAT BETTER
I think my favorite things about it is it's a light theme that's not straight white
it looks great
Tbh I might try it later
Always open to trying new themes
Even if theyโre light themes ๐คข
lol so my webcam light was just on... I'm not using my camera, that's unsettling
wooo
that freaked me out once then I realized I had opened a settings panel and it had webcam related settings in it and showed a preview
oh apparently google chrome re-opened an old Messenger call window .-.
@mental pumice has a custom theme he uses in intellij
alright, it's a little better
eclipse looks horrible
kinda reminds me of xcode's syntax highlighting style
who wants a screenshot of my custom theme?
ah nice
but this is paired with the ide Material theme
rather
I built it after finding the Material theme for the ide itself, editor theme I made by hand
god i suck with girls
Error:java: Compilation failed: internal java compiler error
the hek
mfw was trying to compile for bytecode version 1.5
ok boomer
(DiscordBot) So I was afking at my creeper farm over night and uhh... I nearly died : Minecraft - 1,254 comments, 53,008 points - ImMeanBro_, 8h ago
tbh it kinda is
should just add some other way to get their membrane item and turn them off
membrane item is useless
doesnt it repair elytras?
you can enchant mending
at least the new nether stuff is pretty cool
updating to 20.04 broke my media keys D: ;-;
Hey can anyone help me set up an economy on my Minecraft server
depends how much help you need
Like I have no clue
How to do anything lol
Or what plugins are the best
And what works together with what
Because thereโs so many
enter key =/= space my friend
I apologize
it's aiight
but I'd recommend either hiring someone or just doing a lot of research, we don't know what you want specifically ยฏ_(ใ)_/ยฏ
I mean honestly Iโd be fine with whatever is best right now
There isnโt anything specific I need
I just want a basic economy where players can buy and sell things
Not too set on any specific idea
Donโt want a custom plugin
Iโll take whatever exists already
Have you searched on spigotmc?
just slap essentialsx on it and call it a day
mfw can't depend on multiple versions of craftbukkit at the same time ;-;
using maven
that's what maven modules are for
.-. TinyProtocol doesn't even work anymore D:
oh wack it doesn't work on paper compiled with Java 11 :o
i ran make clean for my openjdk environment but i forgot that i was linking to the build dir directly so now i don't have a new enough version of java to recompile it
arch doesn't even have 14 in the repos
I just slapped together moneyhunters, vault, phantomeconomy, and simple sign market and called it a day lol
works surprisingly well
Hello, in the next few weeks I'll be done with finals and a friend and I want to setup MC server for about 10-20 people. I have some experience hosting a server from home but the most I have ever hosted was 5 people with no plugins and sometimes a few mods. I was wondering if anyone has some recommendations on server hosting sites (I was thinking Apex Hosting) and what plugins my server should have. I am very new to this so it all feels a little overwhelming right now but I trying to do as much research before launching the server.
Thank you!
first of all, what kind of server? SMP?
ideally vanilla using paper since I've been hearing its very well optimized
well your host doesn't really matter since there are literally hundreds of options, just pick one that doesn't charge $1/gb and go from there
and then start with basic plugins like permissions and essentials
ok cool, yeah my biggest concern is what are some essential plugins I really should include
but thank you, I am gonna look up permissions and essentials
it really depends on what your players are interested in, but in general you probably want some kind of economy too
and land/chest protection
good points, land/chest protection is definitely something I need
weird my timing cost for 226 was 1k and for 220 it's 200 o.o
@wicked birch paper versions dont have anything to do with your timing cost, thats all on your hardware/hosts cpu activity
Ty for the clarification!
Edit: budgeted minecraft server is now $100
That's not bad for starting out.
A nice dedicated machine, domain, maybe a couple of plugins.


mohdz
@slim nymph (super sorry for the ping) Not sure which channel to discuss this in but - I don't think the github issue you just closed about the blockstates where you pointed towards another issue is the same one if I'm honest - unless paper actually does affect region files in some way that it would somehow carry on into for example singleplayer worlds. - The issue you pointed towards seems heavily world-edit focused.
did you rbeak the block and replace it in sp
yup
but yes the suspected patch can do that
Oh wow, I didn't think that was possible.
wel not even suspected, we know its the case
There's a very good chance I was wrong then, that's actually giving me hope.
Maybe I should test the world on an older paper version before that patch?
Any idea which version/patch that was?
Afaik, that's a long standing limitation of redstone
it's down to how redstone actually popagates or something afaik
It's not just about redstone though
Redstone does not explain water not being updated either
I'm telling you they're different issues
random tick and scheduled are fucking different
that's what I've been thinking too though considering the issue you pointed towards was about grass and growth and such
these issues have nothing to do with random tick
-
// We drop the fluid tick since LAVA is ALREADY TICKED by the above method. -
// TODO CHECK ON UPDATE
is what im suspicious of, maybe you got something wrong there
i meant the water
nope water doesn't tick
yes i agree redstone could be typical issues
The way I see it, both the redstone, lanterns and the water all have exactly the same issue
they stay in certain states once they become active in that state and are unable to be turned off
all these things are right next to each other and I can tell that by time, the issue is spreading around and affecting more things in that general area
it affects observers, redstone trails, repeaters, water and I think it's highly likely that it affects even more which I just haven't seen because the blocks aren't right there. some get locked in their off state, some get locked in their on state
and you can check that in 5s via mc-dev src
I know why they wrote the code that way but they totally fucked it up
so whats thought on why the water stopped then
certainly nothing to do with random ticking
could that one be next tick list?
if anything it's the tick list
and you didnt use FAWE or anything around this area did you @vivid ivy
Nope
Don't use fawe. I've tried //regen with regular we on a very small part of the area where this issue occurred (2 blocks only) but it didn't make any difference.
I've also tested the region file on a clean paper server with no plugins
Like I said, I don't think it's the same issue.
god damnit
just blew $50 on michaels server again
so budget is back to $50
I just neeed playerss
i have players but not enough money to afford a server to sustain them lmao
i have a ... i guess it would be called enhanced survival server? it's not even really public yet but we at least have a relatively active community and usually somewhere between 3-12 players
Ah
the rest of them is mostly just active in the community, maybe another 10 people or so
enhanced

Eh, there's a bunch of stuff, economy is a part of it though, yeah
although economy was more fun in beta when people didn't have automated farms for fucking every item in existence
np
smh
tfw i mistook him getting money as a remark about people using economy 
i haven't slept in 24 hours, I'm becoming slightly pepega
cleaning this server's mess up by going from 6 centos dedicated servers, filled with monero miners & one multicraft panel for each box instead of a central one, to 2 infra-2's
does feel good tbh
What servers mess up?

oh

wtf
uh mods can we clip that

No no
Just fuckin around with emojis

๐บ

Ok
haven't been doing servers since 1.14.4, has server performance (especially chunk generating and loading) increased much in 1.15.2? I know that 1.13.2 and then worse for 1.14.4 were horrible for server performance, even with all that paper does
channel description xD
.leaf
did not ember
@peak dust to answer your question, 1.15 is slowing approaching 1.12 levels of performance
We in a really good state right now
Hello to everyone
Ppl pulling 150+ users on survival without issues
ez
I was wondering why my localhost was able to maintain 20tps so well
there's still lots of servers struggling with 50 players @ 20tps though
I'm never going to be that successful so I'm probably alright

has memory usage improved much? I know 1.14.2 required a heck ton of memory more than 1.12
still requires more memory
just stick to 10gb
yeah ig
@polar sonnet well that went fast
What sort of plugins should I get or should I not get any at all?
depends what kind of server you're running. if you want it really fun make sure to not have an anticheat
Iโm running just a vanilla survival server with friends
a sleeping plugin is useful, so that only one player has to sleep
other than that, meh
That I have
How send code by discord?
Please paste large logs to a pastebin: https://paste.gg
A sensible, modern pastebin. Share text and source code snippets with no hassle.
or smaller with ` / ```
If I want to run multiple waterfalls, do I need a plugin like RedisBungee, or is that feature built in somehow?
venturechat is horrible
I like it, it works good for my usecase.
how many players do you have?
10-20 maybe
in my experience it does not work well for a some what large network
not aiming for a large network.
alright
why would you want redisbungee / multiple proxies at that playercount though?
Because I can? :)
that is a good point
though venturechat might not like redisbungee
if you plan on using bungeecord with venturechat
It works perfect with Redisbungee, has been running in a few tests
Damn using dedicated CPU Cores over shared ones feel good. My TPS barely drops under 15 now.
Idk if you are using a shared host then you could also use a raspberry pi to host a server
So I've been experimenting with waterfall since I'm planning on converting my server from paper to waterfall, but for some reason all of the UUIDs are messed up and I can't figure out why. When I log onto the survival server, it says my UUID is 92ee1542-9548-3c4a-bf11-b7761e67e4d5. That UUID... doesn't belong to any Minecraft player. My UUID is actually ba6604d6-a064-4b64-a02b-a3396785c68a.
Interestingly, it only happens on one of the servers I brought onto the network. Does anyone know what might be causing the UUID mistake?
yep
Make sure you properly enable all the settings for IP forwarding and bungee mode and that bungee is in online mode
Offline mode? You need bungee=online
Paper=offline
most likely bungeecord: hasn't been set to true in spigot
TIL that apple has a shortcut to swap between extended/mirrored displays
yes
also apple won't let you use external display when you haven't connected the charger & main display is closed
:)))
yea
moving charger to another outlet? oh lemme just put myself to sleep at the meantime
waking up takes 5mins
reeeeeee

Thanks for the help it looks like I just forgot to make the bungeecord: true in the server that had incorrect UUIDs
Is anyone here familiar with how protocol lib works internally? I'm trying to write my own TinyProtocol since it doesn't work anymore but I'm not sure what some things mean
why don't you simply use protocollib?
you've been like wrestling with tinyprotocol for a week now?
It's way overkill and I don't want all the reflection and wrappers and such
i mean, it just shoves itself into the netty pipeline
Yeah sorta I haven't really been programming all that much haha
Its also pretty efficient
doing all of that yourself will blow everything way out of proportion
idk man
just stick with PL
you're simply wasting your time at this point
protocollib does the thing you need, and very likely protocollib is already installed on most of the servers
not really sure what alternative you'd have other than reflection
Issue is that you're dealing with nms internals, there is ProtocolWrapper which aims to provide some better mapping of that stuff, but you're dealing with internals
hardcoding channel ids and manually reading bufs, but that again, sounds dum dum
I'm reading bufs either way haha
Yeah y'all are right idrk why I didn't want to use protocol lib. It even makes the multiple version support easier lol
And it has nbt wrappers so I don't have to do that too lol
"An unexpected error occured at image 546, pixel 23:758"
There's a guide on the Spigot forums for using Microsoft Paint as an IDE
What a waste of time that people actually make an IDE out of it
They simply use the text field of paint and compile that
The intial post was basically a fancy OCR, but it has evolved and is now more advanced.
(For just the demo, skip to 2:18 )
MS Paint IDE is a program that allows you to run, compile, and highlight code written in paint. The IDE uses a custom OCR written by myself in the past 10 months since the previous release, increasing the speed by several hundred times.
To d...
(DiscordBot) MS Paint IDE v3 Demo - length 9m 28s - 106 likes, 5 dislikes (95.5%) - 11,401 views - Adam Yarris on 2019.07.17
holy crap low melt solder is expensive
i know there's shortages going on but gees
i wonder if i could elctro plate the joints instead
lurking a old launcher mc post and guess what, old post from Aikar xD https://i.qcfb.ca/20200429093829.png
D
didn't knew Aikar used Magic Launcher way before I knew Spigot/PaperSpigot xD Shame the Optifine' dev does not maintain it anymore which is sad xD
@<TNTUP [Auto] We're now known as Paper.
ik xD
heh, i didn't even own minecraft account when magic launcher was popular
๐ดโโ ๏ธ
not buying Minecraft in alpha
PaperSpigot
@<iso2013 [Auto] We're now known as Paper.
oo
"now"
has the bot become afraid of tagging?
PaperBukkit
PaperCraft ;)
CraftPaper ๐
PapyrusSpigot
@<TheViperShow [Auto] We're now known as Paper.
๐ค bot dont ping anymore
I mean what did you expect? xD
Lol same
Sometimes I need to log out and log back into my account
Thatโs the worst
nah, it's random
i just switch acc n back in launcher
It almost always happens if you open up another instance of the game
have spend hours semi-active on my test server, try to switch to live "please login again"
MCEdit has, or WorldEdit source code I guess
Uh I saw some pretty good docs for .schem somewhere (I think somewhere relating to Sponge as they made the format)
Iโll see if I can find it
yeah, it's nbt
frickn nbt
that's sponge schematics though
Thatโs what .schem is
or right, MCEdit uses .schematic 
Yea worldedit used to use .schematic back in 1.12
it supports both nowadays
I think you can still load them in 1.13+ but it creates new ones with .schem
mhm
My server averages about 70 players max at peak times and 30+ players average most of the time. Should be worried about breaking the EULA
you should always worry about it tbfh, sooner or later you'll get axed
if you're not ready for dealing with being blacklisted then rip
rip kk then
guys what workarounds could be made for the EULA, hypothetically if I were to sell a spawner or spawn eggs
MโrMโusโklโe: take a look at byof
I just want to sat: Thanks for making Minecraft server hosting better and I LOVE YOU! โฅ๏ธ
build your own fork
Theres a server with 400+ players consistently that sells items
they are most likely breaking the EULA, but nobody here is a lawyer
you can't sell in-game items as they affect the gameplay
@still smelt read the updated commercial usage guidelines please
Since that's not true anymore
i meaaan
hypixel sells /fly
yeah, you can only sell stuff that doesn't give you an advantage
yea that is uh
(which is literally everything non-cosmetic but ยฏ_(ใ)_/ยฏ)
The key thing is that it has to be in a competitive gamemode
Fly in lobby and shit is fine
Yeah my server isn't competetive
Fly in creative while others have it might even be fine
It's just SMP
But if in doubt, just email mojang
even a leaderboard of anything is "competitive" btw
"Hey Mojang... Hypothetically... if I were to sell /fly... would that be bad?"
As that's analytical and shit
"not saying I AM doing that but..."
But like, really, stuff like this is often decided on a case by case basis
So reach out to them
i mean the guidelines literally say "a scoreboard can make a noncompetitive gamemode competitive"
so baltop....
kinda fits there
yeah
Can ;)
if there's a ranking of players with wealth, and you sell a way to increase your wealth
anything on which players can compare itself with is competitive
that is definitely pretty shady
so make sure your players can't see each others buildings ;)
That's what Helen said
But again, she doesn't decide, I don't decide, talk to enforcement@mojang.com
Or is it brand enforcement? I don't remember
Or just brand@mojang.com
bruh
lol
viper wtf
hah I deleted eula so you can't tell my I accepted it!
levels of retardation here getting too high
.g byof
(phoenix616) https://www.urbandictionary.com/define.php?term=BYOF -- BYOF - Urban Dictionary: "Sue: Hey Sally you going to that baby shower at Chili's? Sally: Yes it's BYOF Sue: What's BYOF? Sally: Buy your own food! by Smartbabyshowerlady..."
hm
Nice shader 
let it burn!
just gotta








