#general
1 messages · Page 236 of 1
just get paper lol
Very cool too
less lag, better API, cool features, spigot compatible
Lmao
anything different I have to do compared to spigot server setup?
nah
just the fact you dont have to use buildtools
And your all good
don't say it here either
or ask the dev how to pronounce their name
At least you don't get banned here
dude rly said dont say it there
What about like
when a plane is landing
and like
in the sense that you're not using it to describe physical motion, it is not ok
to describe physical motion go ahead
lol wth? it runs a command prompt window and a Minecraft server window 
but don't overdo anything
Oh okay
add --nogui to the end
Zach
of your startup
ViaVersion not compatible with this I've gathered?
1.16.3?
latest Paper
no need
I mean what version above 1.16 are they gonna join with
none because it doesnt exist
what about backwards compatibility for 1.8.8 users
viabackwards
ah so this is compatible with Paper?
ah ok ty 🙂
you might need viarewind too
if you want 1.8 support
I could be wrong though
Ive got all 3...
ok I've got all 3 now, hopefully this is good 🙂
Can't leak your plugins, someone might copy your server 
LOL
lol
nice
honestly I'm curious about some of these plugins, mind if I DM you?
last time I made a server was 1.8.8 lol
if you want
or we can talk here
idc
ah ok ty
what is TAB, Spartan, AAC?
TAB is that thing when you press tab on the keyboard
And the other two are anti cheats
Is aac any good?
idk how long you guys have played but do any of you know about the plugin Hawkeye from back in the day? or Blocklog?
I need an ac
Use coreprotect
then we coded a custom core to take both and put it in one interface
It's those but good zach
It should
doesn't seem to have loaded
Might need a dev build for 1.16.3

Its only tested on whatever the latest paper is
yeah I'm running latest Paper and Carbon isn't loaded
Any errors in console at all?
and Essentials says unsupported server version 
The essential plugin for Spigot servers.
get it from there
the one on spigot isn't 100% up to date to the latest build
ah i see
ty
does anyone use anything other than X, Chat and Spawn?
not really lol
Nopers
When your uber driver isn't wearing a mask..
Hmm Nice
Gonna cave his head in about 2 seconds
More like 50cm
Old mates Toyota camry ain't the biggest thing in the world
I'm about to get out
Hold. Ur. Breath.
Fefo im still having issues. .getMapList() returns a Map<?, ?>, which is hard af to work with
So let’s say I have
for (Map<?, ?> map : .getMapList(“List”) {
key.get(“List”) // I can’t take the size of this list because the map is made out of ?
}
List:
-
String: 'string'
List:
- 'element'
- 'element'
-
String: 'string'
List:
- 'element'
- 'element'
Is it better to just use spigot plugins instead of the bukkit version?
they are basically the same thing
almost all plugin supports bukkit, spigot and paper
tho most will recommend using paper
So there is no official speed difference between both?
I use paper, but the plugins of course from bukkit (some spigot) just because bukkit has faster updates or something
Yeah i mean, essentials came 1 month later for 1.16.2 on spigot than bukkit
The new version for netherite items
https://essentialsx.net/downloads I thought
The essential plugin for Spigot servers.
Nope wrong url
bcu you shouldnt be updating to a new server release immediately as well
it usually plagued with huge game breaking bugs
Yeah i totally understand that
Like the new cave update that will come out, i have to reset the world to avoid issues with the server generation or something, but how can i save my builds etc that i made with friends?
Not to mention the huge performance loss
Like the new cave update that will come out, i have to reset the world to avoid issues with the server generation or something, but how can i save my builds etc that i made with friends?
You can update safely without needing to reset your world. New chunks will be loaded as cave update, already loaded chunks will stay the same
Yeah i've heard that but my friends and i explored alot of the world (the server is 45 days old) and we just kept exploring together so most of the things are still in the 1.16 version
Well, the world is 30 million blocks in each axis
So you’ve got a lot more to explore :)
Np
Does anyone know a good explanation video for deluxehub I don’t know why my inventory stays when I am changeing worlds
I mean
try multiverse inventories or something
I dont think dhub handles that
because its meant for networks
woww
what da faq
Pff
Of what dev was SpigotLib?
huh?
ugh
https://hub.spigotmc.org/javadocs/spigot/org/bukkit/configuration/MemorySection.html#createSection(java.lang.String)
This is the jd i use
declaration: package: org.bukkit.configuration, class: MemorySection
but fml this shit is confusing af
i wanna add a list entry
with set you add, change or remove a value
if it doesn't exist, it is created
if it exists it is changed
if you pass null as value, it gets removed
np
the set() method confuses me with Java's set() method
ye
mapList.set(mapList.size(), Stream.of(new Object[][] {
{"String", "string"},
{"String", Arrays.asList(Object, Object)}
}).collect(Collectors.toMap(data -> data[0], data -> data[1])));
```this is the code i made out of it now
THE HECK
since doing .set(size) is always out of bounds itll create a new entry
thats what u said
??????? I am completely lost at this point
what lol?
mapList is a List<Map<?, ?>>
i use set() with the index being the size of that list, so that will always be 1 out of bounds, thus creating a new entry. That new entry being a new map, because the list is made out of maps. The map is then filled with two
mapList.set(mapList.size()
you can't put something on a place that doesn't exist
THATS WHAT U SAID THO?
if you're putting things at the end (i.e. appending things) you use add
on the MemoryConfiguration
not on a list
but .add isnt a thing
it is on a list
just
no but like
paste your method
https://paste.helpch.at/
mmm
nah i think i got it
mapList.add(Stream.of(new Object[][] {
{"String", "string"},
{"String", Arrays.asList(Object, Object)}
}).collect(Collectors.toMap(data -> data[0], data -> data[1])));
```now?
that looks like something
so you are adding a new map to the list
and that's your method of making it on-the-fly
yep
remember this?
List:
-
String: 'string'
List:
- 'element'
- 'element'
-
String: 'string'
List:
- 'element'
- 'element'
yes
i basically add a new -
wtf is this
so:
thats not my actual code haha
1:1 itd be
mapList.add(Stream.of(new Object[][] {
{"String", "string"},
{"List", Arrays.asList("element", "element")}
}).collect(Collectors.toMap(data -> data[0], data -> data[1])));
do you have an existing list of elements? one containing the actual elements?
now its 1:1 with the example yaml file
do you have an existing list of elements? one containing the actual elements?
Anyway, I suggest you do the following
List<Object> elements = Arrays.asList(...);
Map<String, Object> temp = new HashMap<>();
temp.put("String", "string");
temp.put("List", elements);
mapList.add(temp);
I added blank spaces for you to see the different "parts/steps" I see it as
thats the same but not in one line right?
Java
lmao
well "main"
because i suck at Java
but its the one im best at lol
i made a sudoku ai in it
and some plugins
i made a sudoku ai in it
oo that's fancy
wait until you see the code
i think thats scarier than a horror movie
don't
yep
youve been warned
i wrote that when i literally started java coding
no experience whatsoever
im still proud of it tho
it can actually solve sudokus
and output the solution in three ways
. _.
the image output is my latest addition
was a fucking hell to write that
couldnt use for loops at all cause everything was offset
lmao
so at one point i thought of writing 81 lines of code
now i managed to slightly compact it
just
warning!
that 100% screams "math optimization"
but you still cant compact it
nope
its impossible
or you gotta add another var or two
wait LOL i see a huge flaw
loop is longer than needed
but that doesnt compact the loop
it makes the iterator 3 instead of 9
basically i = i / 3
PogU
Congrats
Thanks
guys anyone knows any broadcast plugin that can connect through SQL?
so plugins can broadcast all over the Network
or just broadcast with a bungee plugin?
No
I mean
....
I want my AntiCheat to be able to broadcast the "player was banned" message all over the network
or just broadcast with a bungee plugin?
Server plugins cant access bungee plugins
yes they can, plugin messaging is a thing
but anyway
wdym
plugins can communicate to one another throughout a network
how
that's a thing plugins have to support, not something you as an admin simply add
okay
so apart from that idea
do you know any broadcast plugin that can connect through SQL?
As litebans does
no because that doesn't make any sense at all
like
why would it use mysql?
or whatever db
okay whatever
nvm
how do you expect it to work?
like
what should it do?
why sql?
it's a broadcast plugin, not a massive data storage plugin
i’m guessing they’re going off the sql messaging system lp uses
You can write your own plugin which broadcasts the message
Hook into the anti cheat and use their events
But idk if that’s possible actually
Ignore what I said lol
it is
depends on how accessible the anticheat is (basically an api) but it is possible
what job did u get?
👀
But idk if that’s possible actually
Can you broadcast messages even when on a spigot server (so not the proxy)?
wat?
are you asking if I can broadcast through the whole network from a spigot plugin?
Yes
Yes, it is possible
It's called Plugin Messaging
How does that work?
Basically how servers know if you have a modded client or not
By exchanging messages with the client
the difference in this broadcasting case in particular being that proxy intercepts those messages rather than sending them to the client
exactly
you as in the player?
Anyone
no because
> proxy intercepts those messages rather than sending them to the client
in this case in particular
but anything other than a couple special cases
they are just packets
Ahh
a few of them proxy intercepts and doesn't send
I get it
but others are just sent to the client
like any other packet
and the client may respond
Yea
"hey are you a fabric client?" "yes I am a fabric client"
but they beep boop
they don't english
101010010101010101000101010100001001010100010010?
yo is there a plugin that announces all villager deaths?
Like near your area, or when your near a village.
It was random lol
Fred
Villager #56789 died of a creeper explosion. FATALITY
Ye?
Can anybody help me with Nucleus and LuckPerm? ❤️
Perhaps
I can't copy paste, but if you check the pins, nucleus is there
Owait I can
Deenoh is also nucleus master
I do support there too :p
Yes yes I know I know

It's chat formatting, deenoh. Choose your battleground
You guys are amazing aha
I know Spigot very well, im doing a ftb server
its killing me
So basically I need to setup chat via nucleus yeah? My name is just displaying green no matter what
I don't mind asking there but Deen? Would appreciate your help
"aha"
They have a 1$ plan, so I'm sure they have a 5$ one
:0 nice
Nah fefo said to switch channels
Oh ok
Hello
hi
👁️ 👁️
Uncomfortable
so zaid
what job u got?
Hello gamers
My upstairs neighbor is currently not home, which means I have peace and quiet. What should I do?! Watch some TV on low volume? Read in my book? Sit in my recliner and not do anything and just enjoy the silence? Play Super Mario Odyssey?
Quick! Before he comes home and ruins my life again!
sleep
upstairs neighbour??
wdym
Apartment buildings
Australia kinda stupid
Listen here
you american
we have apartments too
but only poor people live in them
unless they're in the city
then you have to be rich asf
that is such a generalisation tim lmao
there are lots of social housing apartments near the city of sydney :P
I mean
And not everyone is you Timario
if you live in an apartment you either 1. Dont have a lot of money 2. Are living by yourself or with a roommate 3. You're rich
Only for you Timinishing
A new name every sentence
speaking of upstairs neighbours, mine likes to practise his opera singing every morning
lol
free show every morning
u wot
the fuck do those words mean
hello turbio
Oi Timemachine mate thems english words
is it bad that im addicted to flight simming
no
You got a flight stick and rudder pedals or just controller?
youre not gonna believe it
he's just larry
no
no
Eyes?
u cant use mouse
tim why
a driving wheel
im using a....
Yeah you can
ps4 controller 
You got a flight stick and rudder pedals or just controller?
@short warren
Hmm?
Guessed it 
i only have 12% fuel , we're gonna die 
whats that
Alright buy me a wheel
"The leading cheapest MC hosting provider!"
Isn't that pebble lol. They're both cheaper and more popular afaik
yeah if you lie about something like that, what else are you lying about lol
New all-time best selling host PogU!
POGGERS
They said they just deployed i9 9900k servers
i beg to differ
POGGERS
NEW I9 SERVERS POGGERS
server pro kinda false claim their plans having the amount of ram it says
itll say 6gb with no *
but youll only get 5gb
because the other gb is used to run linux or whatever
which you dont have access to
1gb for linux? My pi is running ubuntu with barely 250mb used at idle
Yeah server pro man theyre a bit idk
like yes they're different things but linux doesn't have as much overhead as windows does
might try aternos just for the memes to see how it fits into the free server hiearchy lol
you'll probably get more ram lol
idk lol
trying to look up how much ram they offer, but their site won't even load lol
loaded straight away for me
for referenace
idk if thats aussie bucks or usd tho
Is it apex that offers "unlimited ram"
probably
Apex is so overpriced LOL
my god yeah
mcprohosting
doesn't even say what fking processor
"unlimited ram"
hold the fucking phone, I scroll down and see a 5.0 our of 5.0 average review
🙄
Domains are literally 1$ a year lmao
I dont see a * anywhere here next to unlimited ram
Gonna start UnixHost brb
I own 4 domains
?
The badge at the bottom
pterocraptyl
- A domain is not everything, you also need a static IP or clients will have a hard time when your IP changes
- Pterodactyl is a great OpenSOurce panel, and you could not ask for more for that price ( free )
uwu pterodactyl 1.0
Isn't there a thing you can get that mirrors your domain target to the current ip?
I remember seeing something like that
thats ddns, but its not fully reliable
Well, if you rent a server from a home hoster, you cant expect more XD
@vocal rivet the server I'm admin on is home-hosted, and once we migrated over, everything was fine until a few weeks later when we all forgot that despite being on a dedicated fiber line, it still had a dynamic IP lol
ugh
tbf it's pretty decent, r5-3600 w/ 16gb ram, all to ourselves ofc
I rent my dedis at Hetzner, and I have been pretty statisfied so far. I would home host if we wouldnt have the highest power prices in the world
f
yeah idk how power prices go, but apparently fiber is quite common in the country that the admin who's hosting lives in
to the point that he has 2 fiber drops iirc lol
We can have 4 fibre connections to our house here in aus
can ^ not saying its necessary for a family's use case LOL
I pay 37ct per kWh, lets say my server has a average consumption of 500watts, so that would mean 18.5ct per hour, that up to a day would be 4,44€ per day, and that would be 133,20€ a month for average consumption
jeeez
yeah that's a no lmao
eyup. We close all our power plants and buy power from other EU countries ...
But why
We are evolving backwards
Its so stupid
Exactly
and then internet .. the best you can get in a private areal without connections to providers or other concerns that could give you a better deal, you can get a 1Gbit connection Down at max here in germany
and up the highest is 150mbit
Same here, 1Gbit max
but not from the same provider
SO either I get 250 down and 150 up, or I get 1gbit down and 50mbit up
wtf?
Germany sucks
wtf which company is that tim
I pay 43€ a month for my 1gbit up and 50 down
aussie broadband lol
👀
telstra would rip you off more
i think we're with tpg
Gig UP and 50 DOWN? @vocal rivet
Yes
That's like backwards af
wait
I have the opposite ratio
Oh yeah, I mixed them up
blah, 1000mbps download isn't available at my place
1gbit down and 50mbit up
stupid nbn
Get FTTP turbo 😉
idk how that works with an apartment building
uwu
I also dont get the full gbit .. I have to use special download software to actually be able to use it
NBN is great. The way they rolled it out was absolute shit, but now that its settled its wayyy better than adsl omg
Apparently people praise the wireless internet
idk what its called but
the dishes and shit lol
I strongly think of a big download speed but also a huge latency
Surely if you get some bad weather it wont work as well
5g
nah not 5g
the fricken dishes people put on their roof
to get some wireless high speed internet
Satellite?
Imagine how long a packet needs from your pc, to the satellite and then to the target ...
I bet you could download at 10gbit, but with a latency of 500ms+
maybe longer
prob
how was your day so far then
Not bad, woke up 2 hours ago and missed a class but yeah not bad
Yeah, you need to go to sleep and wake up 3 days later
My software development teacher made us join a call to tell us to do our work
I have exams soon
I have to sit a 3 hour thing tomorrow
good luck
then next week I have the whole week of practice exams
and 2 weeks later I have a whole week of actual exams
So yeah fun times. I don't even know what I want to do after school LOL
GAGA wgat did i just read
I don't even know what I want to do after school LOL
push trolleys at coles
Become a helper on the LP discord
bitches will be all over you
Buy gato bottle with my coles discount, trim a bit of my neighbours hose and smoke a cone in the toilets
Im too arrogant to be a helper bro there is no chance
the best part - you get to wear hi vis
Yeah of course
Turbo you gone to coles at like ~12am high as fuck before?
The lights man
Try it
i avoid public spaces in that condition 😆
plus coles shuts at midnight lad
luuul
bad to the bone
god i hope i look that good at 60
let's not go there lol
Anyone know how to set a group as default for when a player joins?
Yes
!default
LuckPerms provides a group that every player is added to upon joining the server, called default. You can use multiple methods to change the default group or change the name of it.
:snipe:
❤️
HAHA this cant be good
it was the authme faq
Spoiler
Ah okay
Was not good
typical
is offline mode bungee network
isnt bungeecord
join with 127.0.0.1
:thinksmart:
I should really buy nitro
me:
also me:
i bought a year's worth
i'm great with money 🙃
though that's better than doing it monthly so maybe i am good with money
Nitro is cosmetic sure but if you use it enough it's a great cosmetic
16% savings turbo!
i really only wanted it to flex syscraft in my status
I use discord more than any other media platform by like a mile so nitro is epic
and i truly missed 
Yes bongoanus is the best
Because fefo is from south america
Yes
yay
Aye
fefo
Hello
yo
_11 just got nitro?
when you first get discord nitro ;)
If you enjoyed LIKE and SUBSCRIBE, it would make my day!
Thanks for watching! ;)
Socials
Check out my twitch: twi...
Give me a home among the gum trees
With lots of plum trees
A sheep or two, a k-kangaroo
A clothesline out the back
Verandah out the front
and an old rockinggg chair
Sounds like an Aussie tune Timbourine
indeed
Is it normal that the server ram is always being used 100% on 2gb (1.16.3)
Yeah when the server starts up, assuming you are using Aikar's flags, it will allocate all the ram you tell it to immediately.
(assuming you are seeing this in task manager or similar)
Can i may ask what Aikar flags means/is?
JVM startup flags you should be running your server with. They'll optimize the garbage collector so you will likely see less lag spikes from it
Thank you!
(If you are using a shared host i.e. pebble, bisect, etc which provides you with a panel, you likely already have those set and don't need to worry about it)
Well i use apexhosting atm, paper 1.16.3 and i have the world max size on 29999984 or something, but if i get 4gb ram instead would i be able to get rid of that 100% ram usage?
How are you measuring ram usage?
Even though it says that it's on 100% on the panel when i'm ingame and use the (TAB) plugin it says it goes up from 300-1500 and then resets back to 300 and goes back up etc.
hmm yeah the panel might be looking at how much the JVM has allocated, not how much it's actually using. What TAB is displaying might be the actual usage. The sawtooth rising & abrupt drop certainly sounds like it
(the pattern is caused by the garbage collector running)
That makes sense thank you
@tardy mirage Due to the way Apex does their startup flags thats normal and nothing to worry about, unless you're actually having issues in-game :)
Source: work for a host
🪨
Yeah i was just confused that it used 100% of ram but the server wasnt even lagging at all
Hello,
I am looking for a plugin that can give a money multiplier when a player ranks up, for example: rank-up prestige 3 = permanent x5 (base) and so on.
Thank you in advance !
anyone have any idea how to give global jobs bonuses with the jobs reborn plugin?
their support discord is shit so i figure I come here to ask for help
why does lp take so long to import brooo 😦
It doesn't
think you've got something wrong tim, I can do imports/exports on my 1.4k user/30 group server within 5 seconds
I think he means importing the GH repository
Huh?






I only have since 12 hours ago lol

here have a free nitro: https://syscraft.dev/helloworld
Sure is
I demand Minecraft Not found!
I remember when I joined a modded server with regular client ( no idea how I managed that ) and all mod blocks were just stone
Lol
So say someone bought 5 global keys from my shop to give to the players, why does it give it to players that are offline
someone logged in today with 55 global keys
same thing happenes with my vote party
why does it give it to players that are offline
so if I buy something and I'm not online I get nothing?
what shop software are you using?
Well it could que it until you get online Fefo
SO you get it as soon as you join the server
I know
but
why does it give it to players that are offline
like ?=????????? it makes total sense
why wouldn't it
also a good question
From the description I would assume the system has some issues
XD
No idea tbh, the message is lacking quiet a few informations, for example, what the hecc is a global key?
@gilded nova If someone bought something from the shop and they are offline, they get something. they shouldnt
Hey THS Woodypop! Please don't tag helpful/staff members directly.
And why shouldnt they get something while they are offline? So you want to tell us if they are offline they get nothing and have to buy it again when they are online?
so if someone is offline for a year, they shouldnt have a whole inventory filled with keys from the voteparty
Ah, so a key is a item, and players can buy these items for other players?
that doesn't seem like a good business model IMO
No.... If the player buys it, it goes to the player...
but what if I'm not online?
you would get it
But if a player buys it, they bought it and should get it, no matter how full their inventory gets
but im mainly trying to fix the voteparty and why do players recieve voteparty rewards when offline
No.... If the player buys it, it goes to the player...
I think you need to descibe your problem again, but a bit more detailed
ok
So when a player is offline, they would receive the vote party rewards which include a crate key called the "global key" and which that they can redeem at /warp crates. But I don't want them to receive offline rewards regarding the vote party if they arnt online to see it. Because since this is enabled, my players are receiving keys even though they arnt online or participated in the voteparty. Matter of fact, someone logged in with 55 global keys.
Issue resolved
RewardType: ONLINE
Up to ur vote plugin
overtype?
yeah you know those times you press that insert key by accident and type over what is already written and swear like you never did before?
Yeah, I hate that.
Yeah I actually use that somewhat frequently
Demon spawn!
Torturing yourself isn't a good use Fefo
😏 😉
It's mine 👁️
😮
I don't suppose any of you want to help me with a java question?
Well if you don't ask the question, nobody will answer it lol
well here goes it:
I have to reproduce this output using nested for loops. I am really close, I just need to figure out how to take out the top line of the inverted pyramid.
My Diamond Method:
public static void diamond() {
pyramid();
for (int line = SIZE; line > 0; line--) {
for (int spaces = 0; spaces < SIZE - line; spaces++) {
System.out.print(" ");
}
System.out.print(" ");
for (int stars = 0; stars < (2 * line) - 1; stars++) {
System.out.print("*");
}
System.out.println();
}
}```
The Output Produced By This Code:
*
***
*****
*******
*********
********* // <--- Need to get rid of this line
*******
*****
***
*```
How about
= 0 instead of > 0?
The "outer" loop
And if that makes it worse > 1
= 0 accomplished the same shape
and > 1 was not right
=1 also accomplished the same shape
😓
im dumb
I got it
@gilded nova Could you help with another possibly?
Hey Zach.! Please don't tag helpful/staff members directly.
my bad I forgot about that
Sure, ask away
would you say that these outputs are identical?:
Uhm
I guess?
No
pretty sure the one difference is the spacing below the first line
right?
Yeah there are spacing issues
might I refer you to an online text diff tool should you need to check that kind of thing again
Ye
^ smart man
It's called GitHub
Lmao
ty for the help guys 🙂
What was the issue with the first one btw
i just didnt know lol
i just wanted to know what nickname plugins are good i have nucleus witch alows nicknames but there no perms to use color lmao so i need a nickname mod or even perms to use the color haha
not with nucleus i went through all the perms unless im blind there isent lol
Geez that's dumb
maybe double check in their support, their discord is pinned
Timingling what is wrong with u. U cannot possibly believe anything bad about nucleus
Its bad that I've been called that before
EssentialsXChat not compatible with PAPI?
No
They have their own placeholders
Like {displayname} etc
Display name generally includes prefix
rip
do you know if they have placeholders for FactionsUUID?
No clue
Deluxechat has Papi support
@gilded nova ask the factions uuid people in MOSS or the EssX people in MOSS. Iirc there is a way to get f info in essxchat
!moss
Make sure you are using EssentialsX and Vault for prefixes. For any other issues with Essentials, you should seek support in either #general or the official EssentialsX support Discord.
idk what that discord is but I found out that exactly what I wanted is possible using [FACTION] on EssX
That's the discord for support for factions UUID, essentialsx, and a bunch of other minecraft open source software
yup
M O S S
I P O O
N E U F
E N R T
C C W
R E A
A R
F E
T
Jesus
that took wayyy too long to type lol

Hi turbo
high


there




