#general
1 messages ยท Page 273 of 1
you can apply if it reaches 75 servers, and your bot won't be allowed in any more than 100 without getting accepted
is jda loading the data of every single user in every guild for that intent? cuz I literally just want a number, idc about their data
there's no way to specify exactly what it loads
it'll load everything if you have it on, and nothing if you have it off
ok
just going to disable a few cache flags you don't need and stuff, for optimal speed ๐
static <E> Set<E> of()```
Returns an unmodifiable set containing zero elements. See Unmodifiable Sets for details.
an empty Set
oh you want me to use that?
I was using that the other day, and Fefo pointed out that Set.of is a thing lol (Java 11+)
yeah use EnumSet#of(blah, blah, blah)
just asked the JDA Discord to see if they know of a way I can only cache the member count and not the members
apparently you can just retrieve guild metadata, so I'll do that
oh is it just called InfoCommand
yeah that
ah yeah only the server modification commands are prefixed with bot
due to their impl being shared with the console command system
might need to add a caching library to cache metadata btw if you don't mind
since the only problem with retrieveMetadata is that it bugs the Discord API every time
what caching library in particular?
idk, still talking with Kantenkugel about this, so might not even be caching
it's either enable the intent and use getMemberCount, which will cause more events to be called like member join, leave, etc. but still may enable me to disable member caching
or disable the intent and query for Guild metadata from the API and cache it
also, if I wanna change the class type in addBinding, where do I do that?
like where do I need to reflect that?
just before you disappear
everywhere JDA is injected
jda is injected in constructor parameters, where the constructor itself is annotated with @Inject
e.g.
aye you got the verified role
@Inject
public Blah(@NotNull final JDA jda) {
}```
alright cheers
gn and thx for verified
gn
Good day!
Should I sort /glist by lowest amount of players, highest or from A-Z?
Highest imo
ok now i gotta find a way to do that
think I found it out
List<RegisteredServer> sortedServers = server.getAllServers().stream()
.map(RegisteredServer::getServerInfo)
.sorted()
.map(si -> server.getServer(si.getName()).get())
.collect(Collectors.toList());
for (RegisteredServer rs : sortedServers) {
no clue
Stream<T> sorted()```
Returns a stream consisting of the elements of this stream, sorted according to natural order. If the elements of this stream are not Comparable, a java.lang.ClassCastException may be thrown when the terminal operation is executed.
For ordered streams, the sort is stable. For unordered streams, no stability guarantees are made.
This is a stateful intermediate operation.
the new stream
can't get player count from ServerInfo
and can't sort with registerserver
d; velocity ServerInfo
public final class ServerInfo
extends Object
implements Comparable<ServerInfo>```
ServerInfo has 1 all implementations, 7 methods, 1 implementations, and 1 extensions.
ServerInfo represents a server that a player can connect to. This object is immutable and safe for concurrent access.
d; velocity RegisteredServer
public interface RegisteredServer
extends ChannelMessageSink, Audience```
RegisteredServer has 1 super interfaces, 3 methods, and 2 extensions.
Represents a server that has been registered with the proxy. The Audience associated with a RegisteredServer represent all players on the server connected to this proxy and do not interact with the server in any way.
Hm
can probably do si -> server.getServer(si.getName()).getPlayercountmethod
Ya
whut that mean
wait
i know
.sorted(Comparator.comparingInt(si -> server.getServer(si.getName()).get().getPlayersConnected().size()))
Beautiful
i want to get rid of this, but if i hard depend on LP it'll errror because lp isn't loaded yet
Can't you specify a load-after in plugin.yml
its velocity
Oh
actually, I think that was because i used LuckPerms and not luckperms
nvm not gonna bother sorting it from highest > lowest can't get it to work in the good way

for?
patreon
cancel it then
i swear i did cancel it
via patreon or paypal (assuming you used that)
login to paypal, go to settings, payments & click show automatic payments
you can cancel there
Does anyone know of a crop regeneration plugin working for 1.16
basically tryna setup a plugin for skyblock that can regenerate wheat crops to full grown as tick speed needs to be at 0
please tag me if you know one
d;spigot setAI
public interface Stairs
extends Waterlogged, Directional, Bisected```
Stairs has 5 super interfaces, 2 methods, and 3 extensions.
'shape' represents the texture and bounding box shape of these stairs.
d;docs Entity
โข jdk/jdk11 โข 1.14.4
โข jdk8 โข 1.14.3
โข 1.16.5/latest/spigot โข 1.14.2
โข 1.16.4 โข 1.14.1
โข 1.16.3 โข 1.14
โข 1.16.2 โข 1.13.2
โข 1.16.1 โข 1.13.1
โข 1.15.2 โข 1.13
โข 1.15.1 โข 1.12.2
โข 1.15 โข 1.12.1
d;spigot Entity#setAi
void setOp(boolean value)```
Sets the operator status of this object
value - New operator value
d;spigot Entity
public interface Entity
extends Nameable, CommandSender, PersistentDataHolder, Metadatable```
Entity has 6 super interfaces, 148 sub interfaces, 60 methods, and 4 extensions.
Represents a base entity in the world
wait what dockdex is in here?
public static interface PermissionHolder.Identifier```
PermissionHolder.Identifier has 2 fields, and 2 methods.
Represents a way to identify distinct PermissionHolders.
amazing
yep
since when 
i think yesterday
ah neat
@onyx mason
@steady tangle
@rigid widget 

<3
larry 
i have created a beautiful channel for namelessmc today
setAi is on livingentity not entity
d;spigot livingentity#setai
void setAI(boolean ai)```
Sets whether an entity will have AI. The entity will be completely unable to move if it has no AI.
ai - whether the mob will have AI or not.
yeah I figured that one out after googling the API Javadocs lol
because as good as DocDex is, I still prefer good ol' javadocs lol
altho the algorithm shouldโve corrected that for u :/
also, did one see my PR?
haha fair enough
public interface UserManager```
UserManager has 14 methods.
Represents the object responsible for managing User instances.
Note that User instances are automatically loaded for online players. It's likely that offline players will not have an instance pre-loaded.
All blocking methods return CompletableFutures, which will be populated with the result once the data has been loaded/saved asynchronously. Care should be taken when using such methods to ensure that the main server thread is not blocked.
Methods such as CompletableFuture.get() and equivalent should not be called on the...
This description has been shortened as it was too long.
lol
public static String join(CharSequenceย delimiter, Iterableย elements)
throws NullPointerException```
Returns a new String composed of copies of the CharSequence elements joined together with a copy of the specified delimiter. For example, ```java
List<String> strings = List.of("Java", "is", "cool");
String message = String.join(" ", strings);
//message returned is: "Java is cool"Set<String> strings =
new LinkedHashSet<>(List.of("Java", "is", "very", "cool"));
String message = String.join("-", strings);
//message returned is: "Java-is-very-cool"
Note that if an individual element is null, then "null" is added.
a new String that is composed from the elements argument
delimiter - a sequence of characters that is used to separate each of the elements in the resulting String
elements - an Iterable that will have its elements joined together.
NullPointerException - If delimiter or elements is null
No search
Cas
ooh a new toy
Hmm, I wonder why tab completion wasn't working...
you can use d; or d;search
same thing
and all of those commands worked I assume, they're just not in chat because the op probably deleted them via the trash button on the message
This one wasn't working
d; StringUtils#join
public static String join(CharSequenceย delimiter, Iterableย elements)
throws NullPointerException```
Returns a new String composed of copies of the CharSequence elements joined together with a copy of the specified delimiter. For example, ```java
List<String> strings = List.of("Java", "is", "cool");
String message = String.join(" ", strings);
//message returned is: "Java is cool"Set<String> strings =
new LinkedHashSet<>(List.of("Java", "is", "very", "cool"));
String message = String.join("-", strings);
//message returned is: "Java-is-very-cool"
Note that if an individual element is null, then "null" is added.
a new String that is composed from the elements argument
delimiter - a sequence of characters that is used to separate each of the elements in the resulting String
elements - an Iterable that will have its elements joined together.
NullPointerException - If delimiter or elements is null
k then
is now wasn't then
weird
"DocDex is initializing" or something
ah
It's fun downloading a 33GB zip file with <500KB/sec

but tbf I'm also downloading 2 isos on a different pc
and watching a serie on phone
Even my UK internet speed isn't that bad
Tf is this? McDonald's free WiFi?
not on ethernet
Imagine having access to ethernet
I use M.2 WiFi lol
i.e not pinging mc servers, downloading maven stuff
Lol
Hello
Hello
No
Aber >:(
Fefo! 
Hello Fefo

.
why is off topic so active I need to like scroll all the way up there
oh nvm I can take ss


Turbo Im working on one of my laravel projects after a long time and I'm so in love w/ it
Always forget how nice it is ๐ฅบ
nameless laravel rewrite when
honestly
Wouldn't be opposed
Worst part is always starting a new laravel project, all the bloat it comes with
PHP big ew
no
Yes
dont call a language bad just because some of its developers suck
modern php can be beautiful and a great solution to many problems
Language haters go that way

can you give me some insight?
Just the way it's designed
like ?
The lack of types, the way variables are declared is horrible too
LOL
you obviously havent used any modern php
types have been a thing for a long time now
Lolllll
I've tried PHP 8
then how do you think there is a lack of types
Because there kinda is
No, there absolutely is

ok youre not worth any more of my energy
Lol
was looking forward to an actual conversation so i can understand why people say that
but i guess thats just another person who read twitter comments from 8 years ago 
I just don't like how it's so... hacky
It just doesn't feel nice to write in
It's messy
i could say that about any language
isnt this about how the developer writes their code?
name your favourite language
i can write a disgusting program in it
Actually I can't say shit about ugly languages
My language of choice is Kotlin
I swear if someone flames me for using an objectively superior language ๐
I can tell you never worked with pointers, huh
PHP is one of those languages that's designed in a way to encourage sloppy and hacky code
interesting
A bit like JS and Python
why would you think hundreds of developers would intentionally create a language which is sloppy
sloppy code is a fault of developers
look at laravel for example
True
that shit is gorgeous
Also, I have an objection against it because of it's conventions
wtf is an allman
It's the name of a programming style
ah
In computer programming, an indentation style is a convention governing the indentation of blocks of code to convey program structure. This article largely addresses the free-form languages, such as C and its descendants, but can be (and often is) applied to most other programming languages (especially those in the curly bracket family), where w...
The one where you put the bracket on the next line like one of those
look how much room i have tho 
but ye i agree its a bit jank
only use this style in laravel stuff
otherwise im... according to that list "K&R"
oh cool
At least 80% of my stuff is open-source on my GitHub
oh lol
Thanks for reminding me that still exists and that I need to remove it btw
hehe np
That command framework is a classic example of "it's horrible, but it works"
Also, you'll see that quite a few of my contributions are to other people's projects
yea
random question, but would anyone have any idea why I wouldn't be able to install Jekyll on my CentOS 8 machine?
it fails installing eventmachine, which fails because pkg-config --exists openssl gives nothing
nvm, seems I wasn't reading
-_-
I mean, I'm not surprised I didn't read the big glaring text that said "no such file or directory"
and also that I didn't read all the prerequisites for Jekyll
lol
When you get banned from SpongePowered because <no reason exists>
usually
probably resize?!
had to change it to ntfs or something. Now i wait
you need to remove the partition and make a new one
if you use windows it is done with 3 clicks xD
Seems like it is a USB stick when it is FAT
Hi, Does anyone know how I could prevent players from finding my machine's ip address from the domain name?
!work
Sorry! I do not understand the command !work
Type !help for a list of commands.
not actually sure if it would work, but you could try using TCPShield
Good day
good day.
@ luck hello make aber very unlucky, unlucky, helpful, office assistant, and verified
nah I lose attention to anything im working on too quickly
I really need to manage myself better with that, my attention span to projects is next to nothing
Aside from being very helpful
Aber for Office Assistant
Uh, I dont do much currently. Mostly just guitar now
might bother learning java though
just to waste time
wbu?
Mostly nameless and random java things
Which is unfortunate because when I have a burnout/no motivation period, then I have nothing to do
But it's fine because they're fun and I know they help people
Buy Doom Eternal
No regrets
Noooo I gave up gaming years ago
You'll have guts to see and demons to cut open all day long
I think that's a common thing when you're a programmer lol
I haven't!!
I program mostly because I get bored and like helping others out
program lol
I haven't really made anything yet though that's actually been good
thanks ๐
I mean, the reason for that is likely because I spend more time making contributions to other people's projects than I do my own
cloud is sooo confusing
Cloud? Nextcloud, ownCloud, CloudNet, CloudHosting etc?
is there a plugin that allows u to lock items to hotbar e.g a journal or a compass
not sure what id search for to find that
anyone know any cool plugins to add into a arcade server? asking for a friend
crash casino
No
hm
So I wanted to make a /staffonline discord command with a bot: essentially itโd run a command through discordsrv console and return it to the discord server staff chat: would anyone know how to by any chance?
e.g
[Staff-Chat - Staff member] /staffonline
[Hub-Console - Bot] XYZ - Survival
[Staff-Chat - Bot] Survival Staff: XYZ
@ me if anyone had a response :p
@round atlasOOOOOOO
Does anyone know how to remove .html when running a website for pages? So like from .com/rules.html to /rules?
would be a rule with apache or nginx
otherwise using a frontend framework with a built-in router is another solution
hello
Does anyone know anything about PlotSquared?
just ask the question :P
Sorry
For some reason, I'm standing in a plot then doing /plot claim, but it's saying "You're not in a plot."
turbo do you know if its possible to cast a column in laravel and rename it
class Transaction extends Model
{
protected $casts = [
'purchaser_id' => User::class, // I want to be able to get this with $this->purchaser
'cashier_id' => User::class // I want to be able to get this with $this->cashier
];
}
i cant figure out what search phrase to use in google
@onyx mason
i honestly couldn't tell ya, almost 2 years since i worked with laravel haha
fair
ive been rewriting this massive laravel project to be more object oriented and its incredible the page load improvement after making some changes to how the models work
wouldn't you usually do that with relationships? like
class Transaction extends Model {
public function purchaser() {
return $this->hasOne(User::class);
}
}
then do $this->purchaser->id or something
that definitely might be the proper way to do this
ill have to look into that
seems like many ways to do certain things, cant tell which is the best
haha yeah, tbh it probably is better to just reference the column directly as it will save sql queries
do you use the debug bar at all? it's good at showing how many queries are ran for a single page
no i never even heard of it
enjoy
awesome, tysm!
oopsies
it do be like that
Someone here got experience with technicolor routers?
!bungee
If you run a BungeeCord network, learn how to correctly setup LuckPerms on all server instances (including Bungee).
Syncing data between servers
hello
@short warren 
Hey aberdeener! Please don't tag helpful/staff members directly.
Aber ๐ธ
what does frog mean 
Frog

i thought I would have to restart my pc to be able to access another hard drive turns out I don't
question ( doesnt have to make anything with LP )
but i bought BungeeNPC
and it doesn work
how to fix it
tried their support?
!nw
We really would absolutely love to help you out! However, telling us that it isn't working wastes everyone's time. Please, just describe the issue you're having clearly and with as much detail as possible, and send any relevant screenshots of whatever problems you're having.
@glossy python you clearly never read then
Note #3: If you find an error or have an issue, open an issue here: https://github.com/MrMaurice211/BungeeNPC
rude
how's that rude
you say they don't have support when they clearly do
ยฏ_(ใ)_/ยฏ
then gl, you just wasted ur money
๐ฎ
Amazing
i want a refund from them lol
couldve better just used Citizens...
lol
imagine if luck did that
hey i sell LuckPerms! but i give you no support bc why would i!
๐ฎ
i gave players perms to do ./server but there is a testing server for admins that i dont want them to join how do i disable it so only server testing they cant join but the others they cna i use citizens and the command is -p server [SERVER] thats why i give them this perm
/whitelist on?
yeah but i want it so when i give someone a rank they can join without whitelist
See the "restricted" field and the note below
https://www.spigotmc.org/wiki/bungeecord-configuration-guide/
it's like a whitelist for /server
hello
Yo I am creating a survival hub any good plugins for a "pvp pit" of some sort?
I have my spawn in a seperate world to where they will play survival but just want an area for them to fight with their stuff from the survival world itself
Also any good easy to use spawn protection plugins or is world guard my best bet for flags and things?
worldguard is not that hard to use
just takes some reading
but if you just want like a free pvp area with no kits (you say with items from survival so i assume no kits), you can just have it in a different world with your world manager
might want to set keepinv to true in that world
depends on if you want that or not
The pits in my spawn world though like in the spawn itself
is the spawn world the same world as your survival overworld?
so just make a region that has pvp enabled for that area of the spawn world
With world guard ?
yeah
Ok ill take a look thanks for your help
select the area with worldedit, /rg define <name, probably "pvp">, and then /rg flag <name> pvp allow
Thanks alot ๐
@PhanaticD i am interested in a holding deal with PocketCreative - if you are interested please accept my friend request and we can talk.
hello
hELLO
!!!
ok uh I need some help installing forge server
it keeps saying that it missed some libraries
fot 1.12.2
yeah uh
the folder is empty
i just am installing through the installer
the latest version of 1.12.2 forge
java is updated
So you put the installer in a folder, and then ran it and extracted everything into that folder right?
does the installer have to be in the same folder?
i just did it from my desktop and chose the folder
doesn't have to be
yeah it's empty
jsut as long as everything goes to that folder
yeah it does go
And you accepted the eula and all that stuff?
well i haven't ran it yet
it won't work if I run it because it didn't finish installing
like I said it doesn't finish
it misses a few files
Try putting the installer in the same folder and running it
Not sure, but I would only do install server
Did you google this issue?
might be a good plan
hmm. Well this is as far as my knowledge runs. I'd suggest waiting for someone more knowledgeable to help out
hope you can get it fixed tho
i do have another server that is running forge + sponge right now
and it uses an earlier version
what are you trying to run exaclty?
which one? mind sending the download link?
last (and only lol) time I installed a forge server it worked fine 
1.12.2 right?
impressive
huh
I can download the jar/universal installer
I guess that's the forge server loader?
I've been having weird behaviour on the server, some plugins doesnt seem to work anymore, mainly PVPmanager doesnt seem to have working commands and worldguard doesnt protect crops anymore
did you run /reload or anything of the like?
ok i'm trying it after downloading through chrome
OH
Now only two libraries are missing

not since you told me to never reload
any changes you made to the server recently?
install a plugin, change a config, etc
I havent touch it in a while
no new plugins, and only config I tweak were about flying
ill look into essentials to be sure
I doubt that would have changed it lol
I'm trying to use the older version 2838
it worked for me on other servers
but it's getting becoming an older
oh
it didn't work
that's really sus
I don't know what to do at this point
well it says it failed to download them
so my guess is the server they're hosted in are down or something ๐คท
Anyone know what kind plugin ppl used to make the custom help chat?
with each thing linking to similar pages with more info
sorry if im not supposed to send that here
can you try downloading them
that's the adfoc thing
and just try running the server install in some random folder
then I'll know it's my problem
AdvancedHelp I think it is?
lemme see
yeah it's struggling to get them apparently
spitting errors like there's no tomorrow 


hello this is proably not the right chat but how do i port forward on multiple devices with differnt ipv4 ips? in the pannel it only lets me to do 1 ip if i try another ip with the same ports to forweard it tsays this rule is arlrady there
so is there an ip that is with everyone in my network?
i thought it already dose
https://i.deltapvp.net/wZRhnt-D.png I don't think this is correct
why when i uploaded the plugin BungeeChat in my BungeeCord Network my default rank cant write in chat? i already gave the permission chatlock like /lpb group default permission set BungeeChat.admin.chatlock
help
!help
!advanced
!api
!argumentbased
!ask
!bulkupdate
!bungee
!bungeecheck
!cauldron
!colours
!commandequivalents
!commands
!config
!context
!cookbook
!default
!downloads
!editor
!editorsafety
!errors
!essentials
!extensions
!extracontexts
!faq
!formatting
!helpchat
!inheritance
!install
!libsdir
!locale
!meta
!migration
!notworking
!nowildcard
!pasteit
!permissions
!placeholders
!selfhosting
!stacking
!storage
!suggestions
!switchstorage
!sync
!testingperms
!tracks
!translations
!upgrade
!usage
!userinfo
!verbose
!weight
!whyluckperms
!wiki
!bungee
If you run a BungeeCord network, learn how to correctly setup LuckPerms on all server instances (including Bungee).
Syncing data between servers
ask their support
where
can you send the link to their discord
....
Hi, i've written a simple warp gui skript and when i use it with no warp-tp-delay it works fine, but as soon as i add a delay it stops working and creates error messages in my console. Can someone help me with this? The console says something about luck perms in the error message, so i thought that here was the place to ask. Here is the skript: https://pastebin.com/ePDAK1Uq and here's the console error: https://pastebin.com/GCF598rX
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
Are you allowed to have 3 lines in the sevrerlist plus config for a motd?
like
- |-
&4&l&nRage&c&l&nLand| &eHello, &l%player%! &8[&c1.7&7-&41.16&8]
&61.16 PVP &8[&5Bedwars Skywars KitPVP Skyblock Factions and SMP&8]
&2&l&nStore.Ragemalik.com
will this work?
xdd
5.2.99
Hello
hi

Yo guys anyone know the best plugin for teleporting to the wilderness?
My survival world I want them to play on is seperate to my spawn world
essx wild is one of the best tbh

Pop did a test on almost all of them, essx wild was one of the top with some other one being above it
bluey's quantum is the best 
never mind, it seems it is the best, I cant find the Jake's RTP gif from pop
ignored 
everytime 
Hi aber
Impressive

Hi quick question
im using buycraft {user} when i do a title displays the users ign in the title
but when i do it with /broadcast it just comes up as {user}
https://i.deltapvp.net/C42CpNdw.png wonder what key that is
|?
it aint on my keyboard lol
EssX wild?
/tpr
it's VBar (|) and SplitVBar
|
EssX is pretty wild
md 

(not that one)

Is there a discord for bungeecord?
use waterfall
then ask in papermc
just replace bungeecord .jar with waterfall.jar from https://papermc.io/downloads
Its the same right? So I dont have to resetup anything?
Best android apps for people looking to get into stocks?
can i reload the bungeecord.yml? i really dont want to restart the sevrer at the moment
reloading is scary business
not ./reload but possibly a plugin reload
if there is one ofcourse
that's even worse haha
hello
hai
!errors
!errors
also no
!errors
stahp


hellooo
fefo why is off topic above dev api
not my call
well you better FIX IT
i needed that link fefo ๐
groundhoggers
what did you get
farmers wrap sausage with medium single single
and hashbrown
7.81 after tax
farmers wrap (sausage) medium double double and hashbrown
WTF
so close
TWINS?
imagine working at tim hortons and Larry from Luckperms comes to get food ๐
oh also i voluntarily signed up for school over the entire summer today :^) i have betrayed my younger self
uni summer breaks were what junior high larry dreamed of... so long and empty
fair enough, youre doing 2 bs in 3 years
same :D
listening to a presentation that I have a script for basically
so uhm, not listening
same :D
single single tho? rly?
usually
smh
dude the sugar high is half the fun
damn
i usually just have coffee/timmys once a week before work
really gets me thru the day
why wont entities go thru the nether portals
Chunk loading
The other side needs to be chunk loaded
Hello Llama's Pie - please use the space bar instead of sending a new message for every word! Thank you!
Fefo why are you such a troublemaker
heh
sorry il try to never do that again didnt mean to upset oyu
yeah even with both chunks loaded? they dont work
cant send entities thru
is there a way to check with a debugging tool
it's both quicc and easy
really the fastest way
and no, the debugging tool is a binary search
what do you do when you have no friends and youre just alone
what
personally i learn things or play some online games and chat with people, maybe make friends
cant related way too insecure and introverted
i cri
breh
ok
so
um
you can type more than one word per message
I know
it's a feature discord supports
I KNOW
This is the last warning before you're banned
In the EssentialsX config.yml there is an EssentialsXChat section
go to it and configure as desired
Oh, my bad, I thought I was talking in the M.O.S.S Discord server. I didn't mean to waste your time.
Maybe. I shall try my best to type paragraphs.
imagine getting banned for typing in multiple messages though
That's not why Blizzard was warned
Rule 4 is not a guideline it's a necessity
repetitively 'yelling' "READ" at people trying to help you is a great way to demonstrate you have no desire to be helped
uwu

??? How far the messages travel? Like if I was 10k blocks away, and my friend typed "fck you, why are you so far?". The radius is set to 0, which is 0 blocks, then I would receive in the chat "unreadable language"?
I think I did..-
0 makes all chat global ๐คฏ
no that's for messages sent to chat
Imagine begging for friends
But, if the number value is changed, wont the recipient have a different outcome of the message sent in chat?
i wasnt begging for friends but ok

Sounded like it
people will simply not see the message if the sender is further away than the radius

not really
Stop it you two
youre just a bit salty that not everyone likes how you ban people for typing more than once
I'm trying to learn
I appreciate that, Blizzard
I can't cuz yall are going at each other
I could give no fucks about what anyone thinks about me ๐
lol
After all, it is off topic... ๐
Or what, Lazza
dose anyone can help with luckyperms ?
I can-not?
any further questions Blizzard
Pls help is not working :( :(
Well, I kind of lost my thought...
send cute snaps for help 
you can ignore messages from these folks by blocking them Blizzard, if they're distracting
Ok, so it is like this, If the radius was set to 5 my friend typed to my 6 blocks away, I wouldn't receive it, yet if they were 4 blocks I would receive the message. Would it work the same for /msg?

Turbo you're a massive troll today arent ya
when isn't he
Lol I'm waiting for my MacBook to update
๐ค
11.2?
the first part yes, the second part no - messages are different afaik
Ok, thanks ๐
Ok
Is this the right format? I want it to be:
Blizzard:
[Owner] Blizzard: (message)
Larry:
[Member] Larry: (message)
If you were a member Larry and I was the Owner.
I will check this out first: http://wiki.ess3.net/wiki/Chat_Formatting
also it doesnt take long to start your server and see if it works
might be quicker to do that than wait for a reply here ๐
breh
did you install vault
what is showing up for chat instead?
Huh?
I used the command /plugins
I can do it in game also
or i can show you it in the file directory
is there a way to create a world where i can host dungeons and such that i dont wanna have in main world
multiverse?
isnt multiverse dumb bloated
no
it seemed messy when i tried it
I want it to be {PREFIX} {USERNAME}: {MESSAGE}
type /lp user (username) info
came with weird default settings
well you dont have a prefix set
Oh
which is why its not showing
missing weight
You need to set weight
Ohh
!weight
LuckPerms allows you to set weights in order to determine the priority of certain nodes, like permissions and even prefixes. A higher weight number is a higher priority.
Ok
Read this to learn
larryyyy 
Hi, I have a server with plugins but one of them is working badly for me, the plugin is Luck Perms and the permissions of the simple portal are failing me
So, the higher the weight count, the more "authority" it has?
I want to set 1 to owner and 2 to members or do i set 2 to owners and 1 to members?
nvm
I did that's why I said nvm
The highest weighted group will override the permissions in any lower weighted ones that conflict.
your period is off
What does Priority mean?
prefix..5
well no
you need a period between weight and prefix itself
You also always need to open a new editor after clicking save and applyedits
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.
Thanks
Anyone familiar with Crates Plus?
No
great
@onyx mason hello . what is the nameless logo supposed to be
a golden tooth or a deformed dirt pile
noone knows
might be a shit mysql host which caps tables
hi I need help with luck perms since the permissions in the simple portal do not work for me and in general please if someone knows how to solve it help

@gilded nova @onyx mason 
Hey Lord_Samosa! Please don't tag helpful/staff members directly.
omg kitttyyyyy
Since I joined the LP server ๐
jk since idk not that long after I became helpful








