#general

1 messages ยท Page 273 of 1

soft topaz
#

oh

lunar pawn
#

you can apply if it reaches 75 servers, and your bot won't be allowed in any more than 100 without getting accepted

soft topaz
#

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

lunar pawn
#

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

soft topaz
#

ok

lunar pawn
#

just going to disable a few cache flags you don't need and stuff, for optimal speed ๐Ÿ‘Œ

soft topaz
#

oh bardy

#

use an enumset

#

d;enumset#of

lyric mesaBOT
#
static <E> Set<E> of()```
Description:

Returns an unmodifiable set containing zero elements. See Unmodifiable Sets for details.

Returns:

an empty Set

soft topaz
#

welp

#

it's not perfect

lunar pawn
#

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+)

soft topaz
#

yeah use EnumSet#of(blah, blah, blah)

lunar pawn
#

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

soft topaz
#

okie

#

it's used in BotInfoCommand

lunar pawn
#

cheers

#

InfoCommand right?

soft topaz
#

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

lunar pawn
#

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

soft topaz
#

what caching library in particular?

lunar pawn
#

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

soft topaz
#

first

#

may migrate in the future

#

@lunar pawn i'm off for the night, hf

lunar pawn
#

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

soft topaz
#

everywhere JDA is injected

#

jda is injected in constructor parameters, where the constructor itself is annotated with @Inject

#

e.g.

lunar pawn
#

aye you got the verified role

soft topaz
#
@Inject
public Blah(@NotNull final JDA jda) {

}```
lunar pawn
#

alright cheers

soft topaz
#

gn and thx for verified

lunar pawn
#

gn

onyx mason
#

Good day!

lunar pawn
#

๐Ÿคฎ

#

(albeit, it's only the API app that uses that trash)

trail shuttle
#

Should I sort /glist by lowest amount of players, highest or from A-Z?

onyx mason
#

Highest imo

trail shuttle
#

ok now i gotta find a way to do that

onyx mason
#

You could use a stream

#

Probably the easiest way tbh

trail shuttle
#

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) {
onyx mason
#

Ye nice

#

Oh, what does the sorted() method do without params?

trail shuttle
#

no clue

onyx mason
#

How does it know what to sort by

#

Huh lol

trail shuttle
#

;d Stream#sorted

#

uh

#

d; Stream#sorted

lyric mesaBOT
#
Stream<T> sorted()```
Description:

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.

Returns:

the new stream

onyx mason
#

Wtf

#

Does that work??

#

sorted(si -> si.getPlayerCount())
Is what I thought

trail shuttle
#

can't get player count from ServerInfo

#

and can't sort with registerserver

#

d; velocity ServerInfo

lyric mesaBOT
#
public final class ServerInfo
extends Object
implements Comparable<ServerInfo>```
ServerInfo has 1 all implementations, 7 methods, 1 implementations, and  1 extensions.
Description:

ServerInfo represents a server that a player can connect to. This object is immutable and safe for concurrent access.

trail shuttle
#

d; velocity RegisteredServer

lyric mesaBOT
#
public interface RegisteredServer
extends ChannelMessageSink, Audience```
RegisteredServer has 1 super interfaces, 3 methods, and  2 extensions.
Description:

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.

onyx mason
#

Hm

trail shuttle
#

can probably do si -> server.getServer(si.getName()).getPlayercountmethod

onyx mason
#

Ya

trail shuttle
#

wait

#

i know

#

.sorted(Comparator.comparingInt(si -> server.getServer(si.getName()).get().getPlayersConnected().size()))

onyx mason
#

Beautiful

trail shuttle
#

i want to get rid of this, but if i hard depend on LP it'll errror because lp isn't loaded yet

onyx mason
#

Can't you specify a load-after in plugin.yml

trail shuttle
#

its velocity

onyx mason
#

Oh

trail shuttle
#

actually, I think that was because i used LuckPerms and not luckperms

trail shuttle
#

nvm not gonna bother sorting it from highest > lowest can't get it to work in the good way

onyx mason
latent tendon
#

bruh

#

why do i keep getting charged

trail shuttle
#

for?

latent tendon
#

patreon

trail shuttle
#

cancel it then

latent tendon
#

i swear i did cancel it

trail shuttle
#

via patreon or paypal (assuming you used that)

latent tendon
#

pp

#

oh well

trail shuttle
#

login to paypal, go to settings, payments & click show automatic payments

#

you can cancel there

low arrow
#

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

lunar pawn
#

d;spigot setAI

lyric mesaBOT
#
public interface Stairs
extends Waterlogged, Directional, Bisected```
Stairs has 5 super interfaces, 2 methods, and  3 extensions.
Description:

'shape' represents the texture and bounding box shape of these stairs.

lunar pawn
#

d;docs Entity

lyric mesaBOT
#
Javadocs:
โ€ข 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
lunar pawn
#

d;spigot Entity#setAi

lyric mesaBOT
#
void setOp(boolean value)```
Description:

Sets the operator status of this object

Parameters:

value - New operator value

lunar pawn
#

d;spigot Entity

lyric mesaBOT
#
public interface Entity
extends Nameable, CommandSender, PersistentDataHolder, Metadatable```
Entity has 6 super interfaces, 148 sub interfaces, 60 methods, and  4 extensions.
Description:

Represents a base entity in the world

forest helm
#

wait what dockdex is in here?

gilded nova
#

d;luckperms permissionholder.identifier

lyric mesaBOT
gilded nova
#

amazing

lunar pawn
forest helm
#

since when think11

onyx mason
#

i think yesterday

lunar pawn
#

today

forest helm
#

ah neat

gilded nova
#

AiriUWU @onyx mason AiriUWU @steady tangle AiriUWU @rigid widget AiriUWU

onyx mason
rigid widget
#

<3

onyx mason
#

larry peepoClapJamminMoment

onyx mason
soft topaz
#

d;spigot livingentity#setai

lyric mesaBOT
#
void setAI(boolean ai)```
Description:

Sets whether an entity will have AI. The entity will be completely unable to move if it has no AI.

Parameters:

ai - whether the mob will have AI or not.

lunar pawn
#

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

soft topaz
#

altho the algorithm shouldโ€™ve corrected that for u :/

lunar pawn
#

also, did one see my PR?

soft topaz
#

only just woke up

#

will look soon

lunar pawn
#

haha fair enough

trail shuttle
#

d; StringUtils#join

#

what

#

d;help

#

d;search StringUtils#join

#

d;luckperms User

gilded nova
#

@lyric mesa pls

#

d;lp Usermanager

lyric mesaBOT
#
public interface UserManager```
UserManager has 14 methods.
Description:

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.

gilded nova
#

lol

trail shuttle
#

d;search StringUtils

#

d;search StringUtils#join

lyric mesaBOT
#
public static String join(CharSequenceย delimiter, Iterableย elements)
throws NullPointerException```
Description:

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.

Returns:

a new String that is composed from the elements argument

Parameters:

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.

Throws:

NullPointerException - If delimiter or elements is null

gilded nova
#

No search

trail shuttle
#

nvm i think im dumb

onyx mason
#

CasGWcmeisterPeepoLove

potent prawn
#

ooh a new toy

trail shuttle
soft topaz
#

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

trail shuttle
soft topaz
#

d; StringUtils#join

lyric mesaBOT
#
public static String join(CharSequenceย delimiter, Iterableย elements)
throws NullPointerException```
Description:

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.

Returns:

a new String that is composed from the elements argument

Parameters:

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.

Throws:

NullPointerException - If delimiter or elements is null

soft topaz
#

k then

trail shuttle
#

is now wasn't then

soft topaz
#

weird

trail shuttle
#

"DocDex is initializing" or something

soft topaz
#

ah

trail shuttle
#

It's fun downloading a 33GB zip file with <500KB/sec

lunar pawn
trail shuttle
#

but tbf I'm also downloading 2 isos on a different pc

#

and watching a serie on phone

lunar pawn
#

Even my UK internet speed isn't that bad

trail shuttle
#

22.5kb/sec

#

usually isn't this bad

lunar pawn
#

Tf is this? McDonald's free WiFi?

trail shuttle
#

not on ethernet

lunar pawn
#

Imagine having access to ethernet

trail shuttle
#

have a cable next to me

#

But it doesn't always play nicely with this pc

lunar pawn
#

I use M.2 WiFi lol

trail shuttle
#

i.e not pinging mc servers, downloading maven stuff

lunar pawn
trail shuttle
#

meant libraries

#

already use gradle for a lot of stuff

lunar pawn
#

Lol

onyx mason
#

Hello

lunar pawn
#

Hello

onyx mason
#

No

gilded nova
#

Aber >:(

onyx mason
#

Fefo! peepoheart

lunar pawn
#

Hello Fefo

gilded nova
pearl nymph
#

.

#

why is off topic so active I need to like scroll all the way up there

#

oh nvm I can take ss

onyx mason
potent prawn
onyx mason
#

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 ๐Ÿฅบ

potent prawn
#

nameless laravel rewrite when

onyx mason
#

honestly

#

Wouldn't be opposed

#

Worst part is always starting a new laravel project, all the bloat it comes with

lunar pawn
onyx mason
#

no

lunar pawn
#

Yes

onyx mason
#

dont call a language bad just because some of its developers suck

#

modern php can be beautiful and a great solution to many problems

lunar pawn
#

PHP is one of the worst designed languages I've ever seen

#

It's horrible

potent prawn
#

Language haters go that way PES2_LulPoint aPES_AngeryDoorLeave

onyx mason
#

can you give me some insight?

lunar pawn
#

Just the way it's designed

onyx mason
#

like ?

lunar pawn
#

The lack of types, the way variables are declared is horrible too

onyx mason
#

LOL

#

you obviously havent used any modern php

#

types have been a thing for a long time now

potent prawn
#

Lolllll

lunar pawn
#

I've tried PHP 8

onyx mason
#

then how do you think there is a lack of types

lunar pawn
#

Because there kinda is

potent prawn
#

No, there absolutely is

onyx mason
#

theres a param type

#

and a return type

lunar pawn
#

Also, -> instead of .

#

. Instead of +

onyx mason
#

dont change the subject

potent prawn
lunar pawn
#

PHP trash

#

Final

onyx mason
#

ok youre not worth any more of my energy

lunar pawn
#

Lol

onyx mason
#

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 Sadge

lunar pawn
#

I just don't like how it's so... hacky

#

It just doesn't feel nice to write in

#

It's messy

onyx mason
#

i could say that about any language

onyx mason
#

name your favourite language

#

i can write a disgusting program in it

lunar pawn
#

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 ๐Ÿ˜Ž

onyx mason
#

im not here to start fights LOL

#

just wanna get peoples perspectives

gilded nova
lunar pawn
#

PHP is one of those languages that's designed in a way to encourage sloppy and hacky code

onyx mason
#

interesting

lunar pawn
#

A bit like JS and Python

onyx mason
#

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

lunar pawn
#

True

onyx mason
#

that shit is gorgeous

lunar pawn
#

Also, I have an objection against it because of it's conventions

onyx mason
#

oh ok

#

how so

lunar pawn
#

Allman bad

#

That's how so lol

onyx mason
#

wtf is an allman

lunar pawn
#

It's the name of a programming style

onyx mason
#

ah

lunar pawn
#

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

onyx mason
#

but ye i agree its a bit jank

#

only use this style in laravel stuff

#

otherwise im... according to that list "K&R"

lunar pawn
#

I use a mix of K&R and K&R OTBS

#

I mostly use the Kotlin conventions as a reference

onyx mason
#

coolio

#

what sort of stuff do you usually work on

lunar pawn
#

Eh, some plugins, a couple of libraries

#

I also have a Discord music bot

onyx mason
#

oh cool

lunar pawn
#

At least 80% of my stuff is open-source on my GitHub

onyx mason
lunar pawn
#

Yeah that's definitely not going to work lol

#

Never made that site

onyx mason
#

oh lol

lunar pawn
#

Thanks for reminding me that still exists and that I need to remove it btw

onyx mason
#

hehe np

lunar pawn
#

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

onyx mason
#

yea

lunar pawn
#

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

gilded nova
#

-_-

lunar pawn
#

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

gilded nova
#

lol

bold sparrow
#

When you get banned from SpongePowered because <no reason exists>

steady tangle
trail shuttle
#

people here are usually smart ;d

steady tangle
#

usually

twin warren
#

probably resize?!

trail shuttle
gilded nova
#

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

gilded nova
#

Hi, Does anyone know how I could prevent players from finding my machine's ip address from the domain name?

tall dirge
#

!work

outer vesselBOT
#

Sorry! I do not understand the command !work
Type !help for a list of commands.

short warren
onyx mason
#

Good day

short warren
#

good day.

onyx mason
#

Unix GWcmeisterPeepoLove

#

I'm happy you're here

short warren
#

@ luck hello make aber very unlucky, unlucky, helpful, office assistant, and verified

onyx mason
#

That sounds like a lot of responsibility

#

Do you do any programming unix

short warren
#

nah I lose attention to anything im working on too quickly

onyx mason
#

Ah

#

What's your hobby

short warren
#

I really need to manage myself better with that, my attention span to projects is next to nothing

onyx mason
#

Aside from being very helpful

gilded nova
#

Aber for Office Assistant

onyx mason
#

wtf

#

I'm not a bot

gilded nova
#

Aber for Patreon

#

Gibe moneys

onyx mason
#

I'm too poor

#

We should start a Patreon just for you helpers peepoClap

short warren
#

might bother learning java though

#

just to waste time

#

wbu?

onyx mason
#

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

onyx mason
#

Noooo I gave up gaming years ago

gilded nova
#

You'll have guts to see and demons to cut open all day long

lunar pawn
onyx mason
#

Sounds creepy fefo

#

And ye lol bom

gilded nova
#

Sounds like you never played Doom

#

Smh

onyx mason
#

I haven't!!

lunar pawn
#

I program mostly because I get bored and like helping others out

gilded nova
#

Oh.. okay

#

Aber say bye

onyx mason
#

What do you do when you're not bored Bom

#

Goodbye ๐Ÿ˜”

lunar pawn
onyx mason
#

Oh

lunar pawn
#

I haven't really made anything yet though that's actually been good

onyx mason
#

One day!

#

I believe in you

lunar pawn
#

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

trail shuttle
#

cloud is sooo confusing

onyx mason
#

Yeah it is lol

#

I think _11 is good with it

vocal rivet
#

Cloud? Nextcloud, ownCloud, CloudNet, CloudHosting etc?

onyx mason
#

Indendo/cloud on GitHub

#

Jvm command framework

primal bay
#

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

low arrow
#

anyone know any cool plugins to add into a arcade server? asking for a friend

onyx mason
#

crash casino

tawny barn
#

test

#

does anybody know me

trail shuttle
#

No

tawny barn
#

good

#

I am anonymous

#

@tawny barn

gilded nova
#

k

#

lol

onyx mason
#

hm

gilded nova
#

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

gilded nova
#

@ me if anyone had a response :p

umbral iron
#

@round atlasOOOOOOO

gilded nova
#

Does anyone know how to remove .html when running a website for pages? So like from .com/rules.html to /rules?

potent prawn
#

would be a rule with apache or nginx

#

otherwise using a frontend framework with a built-in router is another solution

rigid widget
#

now that's an ad

#

no more ads ty

gilded nova
#

ok

#

SCHEISS..

#

Verdammter...

onyx mason
#

hello

limpid parcel
#

Does anyone know anything about PlotSquared?

potent prawn
#

just ask the question :P

limpid parcel
#

Sorry

#

For some reason, I'm standing in a plot then doing /plot claim, but it's saying "You're not in a plot."

onyx mason
#

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

limpid parcel
#

@onyx mason

onyx mason
#

thanks

#

appriciate it

#

ah ye i saw that way

#

kinda jank

#

might just use a getter

potent prawn
#

i honestly couldn't tell ya, almost 2 years since i worked with laravel haha

onyx mason
#

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

potent prawn
#

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

onyx mason
#

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

potent prawn
#

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

onyx mason
#

no i never even heard of it

potent prawn
#

enjoy

onyx mason
#

awesome, tysm!

onyx mason
potent prawn
#

it do be like that

gilded nova
wraith niche
#

Someone here got experience with technicolor routers?

bold sparrow
#

!bungee

outer vesselBOT
onyx mason
#

hello

onyx mason
#

@short warren PU_peepoDoggoHug

outer vesselBOT
#

Hey aberdeener! Please don't tag helpful/staff members directly.

short warren
#

Aber ๐Ÿธ

onyx mason
#

what does frog mean squint

short warren
#

Frog

onyx mason
trail shuttle
#

i thought I would have to restart my pc to be able to access another hard drive turns out I don't

glossy python
#

question ( doesnt have to make anything with LP )
but i bought BungeeNPC
and it doesn work
how to fix it

trail shuttle
#

tried their support?

glossy python
#

wdym

#

they dont have

trail shuttle
#

!nw

outer vesselBOT
#
Please tell us what's going on!

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.

For Console Errors:
latent tendon
#

@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

latent tendon
#

how's that rude

#

you say they don't have support when they clearly do

#

ยฏ_(ใƒ„)_/ยฏ

glossy python
#

nope

#

the link doesnt work

#

already tried

latent tendon
#

then gl, you just wasted ur money

glossy python
#

๐Ÿ˜ฎ

gilded nova
#

Amazing

glossy python
#

i want a refund from them lol

latent tendon
#

i never get it why people buy stuff

#

when they have shit support

#

lol

glossy python
#

couldve better just used Citizens...

latent tendon
#

im about to get roasted so hard

glossy python
#

lol

latent tendon
#

imagine if luck did that

hey i sell LuckPerms! but i give you no support bc why would i!

glossy python
#

LOL

#

i have question

#

i made prefix for in chat

#

but it doesnt work

#

how to fix

latent tendon
#

entire comment section is fun

#

"Don't buy it"

#

รฏts a scam" etc

glossy python
#

๐Ÿ˜ฎ

sweet olive
#

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

gilded nova
#

/whitelist on?

sweet olive
gilded nova
#

it's like a whitelist for /server

onyx mason
#

hello

slender dust
#

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?

thorny kernel
#

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

slender dust
#

The pits in my spawn world though like in the spawn itself

thorny kernel
#

is the spawn world the same world as your survival overworld?

slender dust
#

Nope. They play in a seperate world as my spawn in an island in a voice world

#

void

thorny kernel
#

so just make a region that has pvp enabled for that area of the spawn world

slender dust
#

With world guard ?

thorny kernel
#

yeah

slender dust
#

Ok ill take a look thanks for your help

thorny kernel
#

select the area with worldedit, /rg define <name, probably "pvp">, and then /rg flag <name> pvp allow

slender dust
#

Thanks alot ๐Ÿ™‚

gilded nova
#

@PhanaticD i am interested in a holding deal with PocketCreative - if you are interested please accept my friend request and we can talk.

onyx mason
#

hello

steady tangle
#

hELLO

onyx mason
#

!!!

steady glacier
#

ok uh I need some help installing forge server

#

it keeps saying that it missed some libraries

#

fot 1.12.2

solar plover
#

what's your folder look like?

#

and check if everything is up to date also

steady glacier
#

yeah uh

#

the folder is empty

#

i just am installing through the installer

#

the latest version of 1.12.2 forge

#

java is updated

solar plover
#

So you put the installer in a folder, and then ran it and extracted everything into that folder right?

steady glacier
#

does the installer have to be in the same folder?

#

i just did it from my desktop and chose the folder

solar plover
#

doesn't have to be

steady glacier
#

yeah it's empty

solar plover
#

jsut as long as everything goes to that folder

steady glacier
#

yeah it does go

solar plover
#

try putting the installer in it

#

o

#

u said it's empty

steady glacier
#

no right now it is

#

but it misses like 4 libraries

#

but that's it

solar plover
#

And you accepted the eula and all that stuff?

steady glacier
#

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

solar plover
#

Try putting the installer in the same folder and running it

steady glacier
#

what will extract do

#

like there's Install Client, Install Server and Extract

solar plover
#

Not sure, but I would only do install server

steady glacier
solar plover
#

Did you google this issue?

steady glacier
#

yes

#

i'll try reinstalling java now

solar plover
#

might be a good plan

steady glacier
#

ok i'll try the installer again now

#

reinstalling java did jack

solar plover
#

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

steady glacier
#

i do have another server that is running forge + sponge right now

#

and it uses an earlier version

gilded nova
#

what are you trying to run exaclty?

steady glacier
#

forge installer

#

to make a server

#

like the Instsall SErver

gilded nova
#

which one? mind sending the download link?

#

last (and only lol) time I installed a forge server it worked fine thonk

steady glacier
#

wait

#

i went to download the earlier version

#

and I got this popping up

gilded nova
#

1.12.2 right?

steady glacier
#

yes

#

recommended/latest they're the same

#

2854

gilded nova
steady glacier
#

niuce

#

ok i'll try downloading through chrome instaed of firefox

gilded nova
#

huh

#

I can download the jar/universal installer

#

I guess that's the forge server loader?

calm stag
#

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

gilded nova
#

did you run /reload or anything of the like?

steady glacier
#

ok i'm trying it after downloading through chrome

#

OH

#

Now only two libraries are missing

gilded nova
calm stag
#

not since you told me to never reload

steady glacier
gilded nova
#

install a plugin, change a config, etc

calm stag
#

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

gilded nova
#

I doubt that would have changed it lol

steady glacier
#

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

gilded nova
#

well it says it failed to download them

#

so my guess is the server they're hosted in are down or something ๐Ÿคท

cunning stream
steady glacier
#

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

gilded nova
#

yeah it's struggling to get them apparently

#

spitting errors like there's no tomorrow kekw

steady glacier
#

uh oh

#

how the hell am I supposed to get a forge server now then?

onyx mason
steady glacier
sweet olive
#

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

trail shuttle
vernal glade
#

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

outer vesselBOT
#
Available commands:
โ€Ž

!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

vernal glade
#

!bungee

outer vesselBOT
vernal glade
#

๐Ÿ˜ฆ

#

:.(

vernal glade
#

yes

#

my default can write in chat

#

why?

#

pleasae help

trail shuttle
vernal glade
#

without the a

#

ty

#

wait what to do

trail shuttle
#

ask their support

vernal glade
#

where

trail shuttle
#

ยฏ_(ใƒ„)_/ยฏ

#

I assume there's a support channel in their discord somewhere

vernal glade
#

can you send the link to their discord

trail shuttle
#

....

sleek tartan
#

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

sweet olive
#

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?

trail shuttle
gilded nova
#

xdd

sweet olive
#

did not work

#

oof

outer vesselBOT
#
Latest version

5.2.99

onyx mason
#

Hello

trail shuttle
#

hi

onyx mason
slender dust
#

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

onyx mason
short warren
#

essx wild is one of the best tbh

onyx mason
short warren
#

Pop did a test on almost all of them, essx wild was one of the top with some other one being above it

onyx mason
#

bluey's quantum is the best peepoClapJamminMoment

short warren
onyx mason
#

hello

#

good day lucko!

gilded nova
#

ignored Sadge

onyx mason
#

everytime sad_panda_heart

twin warren
#

Hi aber

gilded nova
#

Impressive

onyx mason
blazing plover
#

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}

trail shuttle
gilded nova
#

|?

trail shuttle
#

it aint on my keyboard lol

gilded nova
latent tendon
#

EssX wild?

trail shuttle
#

/tpr

marsh horizon
onyx mason
#

|

placid pebble
#

EssX is pretty wild

onyx mason
#

md peepoClapJamminMoment

gilded nova
onyx mason
#

(not that one)

gilded nova
sly sparrow
#

Is there a discord for bungeecord?

onyx mason
#

use waterfall

#

then ask in papermc

sly sparrow
#

Its the same right? So I dont have to resetup anything?

onyx mason
#

yeah

#

make a backup first tho ;)

#

#waterfall-help

gilded nova
#

Road to 12k

deft cobalt
#

Best android apps for people looking to get into stocks?

steady tangle
#

stocks r us

#

jk i dont know what a stock is

sweet olive
#

can i reload the bungeecord.yml? i really dont want to restart the sevrer at the moment

rigid widget
#

reloading is scary business

sweet olive
#

if there is one ofcourse

rigid widget
#

that's even worse haha

onyx mason
#

hello

gilded nova
#

hai

onyx mason
#

hello fefo!

#

@steady tangle aPES_Cuddle

rigid widget
#

!errors

outer vesselBOT
gilded nova
#

no

#

no errors for you Larry

onyx mason
#

!errors

outer vesselBOT
onyx mason
#

clippy likes me more TT_uwu

#

wtf

gilded nova
#

also no

onyx mason
#

!errors

outer vesselBOT
gilded nova
#

stahp

onyx mason
gilded nova
onyx mason
#

fefo why is off topic above dev api

gilded nova
#

not my call

onyx mason
#

well you better FIX IT

rigid widget
#

i needed that link fefo ๐Ÿ˜ 

onyx mason
#

hello samosa

#

how are you this fine February day

rigid widget
#

groundhoggers

onyx mason
#

oh yes

#

how was your timmys this morning larry

rigid widget
#

it was lovely!

#

scumptious

onyx mason
#

what did you get

#

farmers wrap sausage with medium single single

#

and hashbrown

#

7.81 after tax

rigid widget
#

farmers wrap (sausage) medium double double and hashbrown

onyx mason
#

WTF

rigid widget
#

so close

onyx mason
#

TWINS?

rigid widget
#

maybe

#

maybe timmys just makes great mf wraps

onyx mason
#

imagine working at tim hortons and Larry from Luckperms comes to get food ๐Ÿ˜”

rigid widget
#

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

onyx mason
#

fair enough, youre doing 2 bs in 3 years

rigid widget
#

yep! gotta suffer some

#

'hard working' lmao I'm in online class atm

onyx mason
#

same :D

rigid widget
#

listening to a presentation that I have a script for basically

#

so uhm, not listening

onyx mason
#

same :D

rigid widget
#

single single tho? rly?

onyx mason
#

usually

rigid widget
#

smh

onyx mason
#

someones even no sugar

#

times*

rigid widget
#

dude the sugar high is half the fun

onyx mason
#

im trying to be healthy !

#

no sugar in my coffee since november now peepoSmile

rigid widget
#

damn

#

i usually just have coffee/timmys once a week before work

#

really gets me thru the day

primal bay
#

why wont entities go thru the nether portals

tawny barn
#

So like

#

maybe a bit more context

trail shuttle
#

Chunk loading

primal bay
#

literally

#

mobs

#

dont go thru portal

trail shuttle
#

The other side needs to be chunk loaded

primal bay
#

u

#

uh

#

okey

#

how

rigid widget
#

Hello Llama's Pie - please use the space bar instead of sending a new message for every word! Thank you!

gilded nova
#

what?

#

no

#

larry

#

please

#

you can't

#

do this to

#

to me

#

:(

rigid widget
#

Fefo why are you such a troublemaker

gilded nova
#

heh

primal bay
#

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

primal bay
#

:-:

#

binary checking is scary

rigid widget
#

it's both quicc and easy

#

really the fastest way

#

and no, the debugging tool is a binary search

unkempt junco
#

what do you do when you have no friends and youre just alone

primal bay
#

what

rigid widget
#

personally i learn things or play some online games and chat with people, maybe make friends

primal bay
#

cant related way too insecure and introverted

unkempt junco
#

i just need friends

#

</3

gilded nova
#

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

rigid widget
#

This is the last warning before you're banned

gilded nova
#

How do I set up EssentialsXChat

#

Sorry:(

rigid widget
#

In the EssentialsX config.yml there is an EssentialsXChat section

#

go to it and configure as desired

gilded nova
#

Oh, my bad, I thought I was talking in the M.O.S.S Discord server. I didn't mean to waste your time.

unkempt junco
#

warning for typing more than 1 message?

#

lmao

gilded nova
#

Maybe. I shall try my best to type paragraphs.

unkempt junco
#

imagine getting banned for typing in multiple messages though

rigid widget
#

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

onyx mason
#

larry is cute

#

READ

rigid widget
#

i have read

#

i concur.

steady tangle
#

uwu

gilded nova
#

??? 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"?

rigid widget
#

did you read the first comment

#

"set to 0 to make all chat global"

gilded nova
#

I think I did..-

rigid widget
#

0 makes all chat global ๐Ÿคฏ

gilded nova
#

BRUH MOMENTO

#

Is that for like /msg and things

rigid widget
#

no that's for messages sent to chat

potent prawn
gilded nova
#

But, if the number value is changed, wont the recipient have a different outcome of the message sent in chat?

unkempt junco
#

i wasnt begging for friends but ok

onyx mason
potent prawn
#

Sounded like it

rigid widget
potent prawn
unkempt junco
#

not really

rigid widget
#

Stop it you two

unkempt junco
#

youre just a bit salty that not everyone likes how you ban people for typing more than once

gilded nova
#

That's some weird configuration but ahem works for me...

#

Ahem!

gilded nova
#

I'm trying to learn

rigid widget
#

I appreciate that, Blizzard

gilded nova
#

I can't cuz yall are going at each other

potent prawn
#

I could give no fucks about what anyone thinks about me ๐Ÿ˜‚

rigid widget
#

They'll stop

#

They'll stop right now actually.

unkempt junco
#

lol

gilded nova
#

After all, it is off topic... ๐Ÿ™„

potent prawn
#

Or what, Lazza

onyx mason
#

dose anyone can help with luckyperms ?

gilded nova
#

I can-not?

rigid widget
#

any further questions Blizzard

potent prawn
gilded nova
#

Well, I kind of lost my thought...

onyx mason
rigid widget
#

you can ignore messages from these folks by blocking them Blizzard, if they're distracting

gilded nova
#

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?

rigid widget
#

Turbo you're a massive troll today arent ya

steady tangle
#

when isn't he

potent prawn
#

Lol I'm waiting for my MacBook to update

gilded nova
#

๐Ÿค

onyx mason
#

11.2?

rigid widget
gilded nova
#

Ok, thanks ๐Ÿ™‚

rigid widget
#

you can test that though

#

always test if you're not sure

gilded nova
#

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.

onyx mason
#

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 ๐Ÿ˜›

gilded nova
#

Breh

#

Im trying

#

As I'm waiting

#

I can't get it to work

onyx mason
#

breh

gilded nova
onyx mason
#

did you install vault

gilded nova
#

Yes, I did

onyx mason
#

what is showing up for chat instead?

gilded nova
#

Huh?

#

I used the command /plugins

#

I can do it in game also

#

or i can show you it in the file directory

onyx mason
#

no youre saying that chat isnt working

#

so screenshot how it is now

primal bay
#

is there a way to create a world where i can host dungeons and such that i dont wanna have in main world

onyx mason
#

multiverse?

primal bay
#

isnt multiverse dumb bloated

gilded nova
#

???

#

Oh ok

#

There

onyx mason
primal bay
#

it seemed messy when i tried it

gilded nova
#

I want it to be {PREFIX} {USERNAME}: {MESSAGE}

onyx mason
primal bay
#

came with weird default settings

lethal kiln
#

spanish?

#

i need help but i dont speak english

gilded nova
#

I got you

onyx mason
#

well you dont have a prefix set

gilded nova
#

Oh

onyx mason
#

which is why its not showing

gilded nova
#

um...

onyx mason
#

missing weight

rigid widget
#

You need to set weight

gilded nova
#

Ohh

rigid widget
#

!weight

outer vesselBOT
gilded nova
#

Ok

rigid widget
#

Read this to learn

onyx mason
#

larryyyy peepoxYes

lethal kiln
#

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

onyx mason
gilded nova
#

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

rigid widget
#

Read the wiki

#

It's on there

#

I wrote it

gilded nova
#

I did that's why I said nvm

#

The highest weighted group will override the permissions in any lower weighted ones that conflict.

rigid widget
#

Yep

#

But prefix weight is a bit different

gilded nova
#

Still not working.

#

prefix.<priority>.[ThePrefix]

#

?

onyx mason
#

your period is off

gilded nova
#

What does Priority mean?

onyx mason
#

prefix..5

gilded nova
#

Oh

onyx mason
#

well no

gilded nova
#

Am I lagging

#

nvm

onyx mason
#

you need a period between weight and prefix itself

gilded nova
#

Weight I forgot that

#

lol weight

#

not that i ment wait

rigid widget
#

You also always need to open a new editor after clicking save and applyedits

gilded nova
#

Okok

#

ooh

#

BRuh

#

How do I change the color of "[Owner]"?

#

...

onyx mason
#

with colour codes

#

youd have to ask essentials support about using hex codes

#

!moss

outer vesselBOT
#
Essentials

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.

EssentialsX Discord
gilded nova
#

Thanks

blazing plover
#

Anyone familiar with Crates Plus?

gilded nova
#

No

blazing plover
#

great

short warren
#

@onyx mason hello . what is the nameless logo supposed to be

#

a golden tooth or a deformed dirt pile

onyx mason
#

noone knows

onyx mason
#

might be a shit mysql host which caps tables

tulip cloud
#

um I use a dedicated linode

#

should i talk to them?

lethal kiln
#

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
#

Are you capable of reading?

potent prawn
steady tangle
#

@gilded nova @onyx mason ASpepelove

outer vesselBOT
#

Hey Lord_Samosa! Please don't tag helpful/staff members directly.

gilded nova
#

Clippy shush

potent prawn
#

omg kitttyyyyy

onyx mason
#

wait fefo is in after dark

#

since when

potent prawn
#

in what

short warren
#

smh aber never sent a banana pic

#

dont take that out of context

gilded nova
#

jk since idk not that long after I became helpful