#help-archived

1 messages ยท Page 141 of 1

pastel condor
pastel arrow
#

looking to get the transactions list or get a specific transaction using an ID

steady cedar
#

isn't transaction a payment doe

pastel arrow
#

Honestly IDK lol they have "Orders", "Payments", "Transactions", "Invoices", etc...

frosty valve
#

i created minecraft server on rdp and i put ports in firewall port not working yoo

vestal vapor
#

When release of 1.16.1 spigot?

flat topaz
#

Hey everyone. I have op on a server and a few others do as well. I was just wondering how if I can limit certain commands to the other people with op?

royal spade
#

@vestal vapor Soon. (TM)

lone fog
#

Spigot 1.16 is in development with no release date. It'll be out when it's out.

radiant shard
#

@flat topaz You need a permissions plugin and to give the other people roles with the permissions / commands you want them to have.

vestal vapor
#

Ah ok nice thanks.

flat topaz
#

Ah thank you very much @radiant shard is there one you would recommend?

radiant shard
#

I use LuckPerms. Check out some Youtube videos on it, there is a web editor so you don't have to spend your life typing in perms commands.

flat topaz
#

Oh I have LukcyPerms I didnโ€™t know I could do that on it though thank you

subtle blade
#

Highly advise not using vanilla's operator status

#

Use groups and permissions

flat topaz
#

Ye ye I have

quartz trench
#

@quartz trench I get these errors when running your compiled plugin: https://pastebin.com/H8jLiMKa
@pastel condor I just compiled it from GitHub, it's not really mine. However it looks like it can't find some dependencies related to the jetty webserver

pastel condor
#

ah I see

radiant shard
#

@flat topaz Do /lp editor, it will give you a link to open, make your changes in the web editor, click save, it will give you a command to run on your server to pull in the changes.
Presuming you just gave your other OPs some permissions, you then just deop those people and you are done.

flat topaz
#

Ok thank you

royal spade
#

@quartz trench Just tested your build, it seems to work except signs are broken. I've quickly tested how well it responds to influxes in purchases/sales and I think it's a lot better than DS' implementation.

#

...just the Signs. ๐Ÿ˜ญ

quartz trench
#

I'm not familiar with it at all I just cloned the repo and did mvn clean package lol

#

How does it's implementation work if you dont mind explaining briefly

neat orbit
#

Does anybody have any experience with custom domains? I'd like my server to be play.servername.org but I've found 0 domain suppliers that will offer it.

tiny dagger
#

the .org?

#

pretty sure there is one lol

quartz trench
#

just get the root domain and set up a subdomain record

neat orbit
#

Oh,

#

does it cost?

tiny dagger
#

12 a year

quartz trench
#

You have to buy a domain

tiny dagger
#

some go for cheaper

#

the tk i think

quartz trench
#

i got an xyz domain for $0.60 first year from epik

royal spade
#

@quartz trench Just for server eco, gets rid of money/items. DS' doesn't do a good job. It seems to just decrease steadily so influxes of items are practically get rich schemes with this it has the exponential curve creating diminishing returns whilst taking the money from the eco. I've raised an issue on his gh, maybe he'll see it. Who knows. ๐Ÿ˜ฆ Thanks for compiling it though. At least I have hope.

quartz trench
#

I don't imagine it would be hard to find the code where it's trying to download those files and putting in updated links

royal spade
#

This is to me?

quartz trench
#

yeah

#

oh maybe not

#

whoever had that error

royal spade
#

I haven't got that issue anymore. Just signs don't work.

quartz trench
#

oh

tiny bison
#

anyone know why my server connects slower than other servers

#

Idk if itโ€™s spigot

royal spade
#

I guess he updated it without updating the code that allows signs to work, I have no idea how to resolve that though. There's no console errors. it just doesn't update the signs when I type in the format it requests.

frigid ember
#

event.getPlayer().getWorld().dropItemNaturally(event.getBlock().getLocation(), new ItemStack(event.getBlock().getType(), 0, event.getBlock().getData()));

somber cedar
#

@neat orbit Google Domains has solid support for subdomains (your play.<servername>.org example)

frigid ember
#

hpw would I make a method of this

#

so I dont have to keep using a long code

gaunt fern
#

can someone help me set up bungeecord

subtle blade
#

Well, one... create variables

gaunt fern
#

IK it aint spigot really

#

but im legit stuck

somber cedar
#

@frigid ember You'd want to make a function that accepts an event of that type, then pass the event to the function.

void dropItem(<EventType> event) {
  event.getPlayer().getWorld().dropItemNaturally(event.getBlock().getLocation(), new ItemStack(event.getBlock().getType(), 0, event.getBlock().getData()));
}
subtle blade
#
Player player = event.getPlayer();
Block block = event.getBlock();
player.getWorld().dropItemNaturally(block.getLocation(), new ItemStack(block.getType(), block.getData()));```
#

Though you should consider updating your server, you're 5 years out of date

frigid ember
#

now its choosing xd

subtle blade
#

A method is unnecessary

#

You're wrapping an existing single-line call

#

Just create variables for things you re-use

somber cedar
#

True but depending on how often you reuse the same code a util method can be useful

gaunt fern
#

legit anyone can you help? I dont mind who i just need help lmao

frigid ember
#

Use it 10x

#

so thats a lot of duplicating code

somber cedar
#

Are you using it in different places or in the same place just one after the other?

frigid ember
#

if (oresMined.get(player.getUniqueId()) >= 2000) {

#

this goes for 1k 2k till 10k

#

dropItem(event);

#

so this is good

#

than I can just drop it in there

pastel arrow
#

@steady cedar Holy shit I got it to work! In the link I added "Fields="

steady cedar
#

poggers

somber cedar
#

@frigid ember Just some constructive feedback, you could also use the modulus operator instead of a branching if statement to clean that up -- this will be true for every 1000

int minedCount = oresMined.get(player.getUniqueId());
if (minedCount % 1000 == 0 && minedCount > 0) {
  ...
}
pastel arrow
#

All this time... Months wasted just because of a simple word SMH

frigid ember
#

yep thanks

wide moss
#

do we have any prediction how much time will take the spigot 1.16 to be out? (days, weeks?)

frigid ember
#

wait this dropItemNaturally

#

wont let me be able to pick the item up

#

lol

gaunt fern
#

@wide moss prolly days

wide moss
#

thx

gaunt fern
#

and can ANYONE help me do bungeecord

near osprey
#

Me and @gaunt fern need help with setting up BungeeCord your help would be greatly appreciated ๐Ÿ˜„

royal spade
#

@near osprey what y'all stuck on?

#

@gaunt fern ^, do you have full access to a VM or Dedi?

desert kraken
#

Does anyone know of any plugins that allow syncing of MC and discord usernames?

near osprey
#

No

desert kraken
#

nice bro

near osprey
#

We are getting this error

#

[WARNING] Could not bind to host /0.0.0.0:25565
io.netty.channel.unix.Errors$NativeIoException: bind(..) failed: Address already in use
[WARNING] Forced host server pvp is not defined

desert kraken
#

do you have another server open on the same machine?

royal spade
#

Bind to another port @near osprey

#

25565 is taken by your Minecraft server.

#

I'd suggest using 25565 for Bungee (unless there's some reason not too) and change your Minecraft server to 25575 or something, change all the other ports also rcon, and query to the 2557X range.

This way there's no overlap. In your Bungee settings make sure the minecraft server IP:PORT is correct and start them both

hallow echo
near osprey
#

@royal spade does the bungee have to be 25565

#

We are using a hosting service

royal spade
#

it can be whatever port you want (up to 65535)

#

you might have to speak to your provider which ports are allowed

solar magnet
#

hey have we heard anything about when spigot for 1.16 is gonna be ready?

wraith thicket
#

?eta

royal spade
#

lol

#

Sarnord, go by the logic "If it's not out yet, it'll be out soon."

worldly heathBOT
#

There is no ETA. Having an ETA leads to unrealistic deadlines, false hope, and a bad product. It will be ready when it's ready.

royal spade
#

This will save you asking questions.

solar magnet
#

ah, fair enough

limber summit
#

I have this

#

and it deconnects everyone one

#

from the server

#

can someone help me

solar magnet
#

nobody can log onto the server?

mellow wave
#

Is the server Cracked?

#

If so it could be someone logging in with a too long name

frigid ember
#

when they drop they basically just sit there on the ground xD

mellow wave
#

Errors?

frigid ember
#

me? if so no

mellow wave
#

Are they gone if you relogg?

frigid ember
fiery jasper
#

Idk about you but those IPs look mad suspect
@frigid ember ik

pastel condor
#

lmao

fiery jasper
#

I have a question how did you guys learned java?

frigid ember
#

lemme see Olivo

mellow wave
#

He said no

frigid ember
#

They whois to AT&T hmmmm

fiery jasper
#

lol

frigid ember
#

Any reason anyone might wanna clog your server up?

#

Because that's what it looks like lmao

pastel condor
#

ddos be like reeeee

frigid ember
#

mhm

#

ill have a look again

#

1sec

#

Looks like they're spamming protocols with invalid strings to dos you

#

fun fun fun

pastel condor
#

my home ip has been ddosed way too many times

frigid ember
#

nope no errors

#

Don't think I've been ddosed since like 2015/16 lmao

#

still there on relog

mellow wave
#

Hm do you have any plugins that would cancel and/or listen to the pickup event?

frigid ember
#

Could be caused by packet play

#

anything using protocol lib?

worn vale
#

I mean a temporary stopgap could be to block 32.123.* IPs from even connecting to your machine in the first place

frigid ember
#

Aye, firewall it, drop them right as they hit the server

#

ezpz

worn vale
#

@limber summit is the server running on a personal machine you have access to?

normal glade
#

Idk about you but those IPs look mad suspect
@frigid ember All from AT&T services in Florida.

frigid ember
#

Yeah

#

Could be bots, could be abusing 3G/4G ๐Ÿคท

fiery jasper
#

Don't think I've been ddosed since like 2015/16 lmao
@frigid ember I have been ddosed because i crashed a server with 3k people online

frigid ember
#

fun

fiery jasper
#

how? you wonder, well with just putting /help

vocal widget
#

Hey ya'll! Does anyone know of some API that can be used to get a user's biography

#

I'm trying to verify that someone actually has the spigot account that they say they do

#

Or, their profile postings, or something like that

fair abyss
#

there was, but it was broken at least

#

dont know if its fixed

vocal widget
#

Ohhh hmm... Do you remember where I could find it?

fair abyss
vocal widget
#

Oh awesome

#

Ohhh I see, thanks! That actually should work

#

Is there anything for getting a user's bio or the posts on their profile or anything like that?

bitter palm
#

I'm looking to prevent players from being able push a specific minecart from outside it or control it from inside it. I only want it to effect a specific minecart and I still want things other than the player to be able to move it. I was told there was some ProtocolLib listener that did exactly this but didn't get any more information on that. A few people have said this wouldn't need to be done with packets but it still looks like I'm going to need ProtocolLib to do this. Any ideas? Is there somewhere else I'd be better off asking this question?

fair abyss
#

@bitter palm if they dont have some spec ai

#

they cannot be "pushed"

#

"entity.setCollidable(false);"

#

looks like api has this

#

note, you have to parse entity as LivingEntity

bitter palm
#

Ok, thanks, I've spent a while looking for this and nobody sent me that lol. However, this still doesn't solve players moving while in the minecart

fair abyss
#

i dont know how vehicle works

#

but try to set vehicle's speed to much

#

but then, it can break while in rail

bitter palm
#

I still want the minecart to be able to move, though

fair abyss
#

you can very slowly move in boat outside in boat if im correct

#

if you give much speed to boat

#

maybe you can use it as vehicle

#

dont know if it will work for minecart

bitter palm
#

Pretty much, I'm trying to make it so that a minecart is completely still and will not move but if a player is inside of it, it will start moving forwards. I don't want the player to be able to go backwards, though

fair abyss
#

just try

ionic hound
#

Does anyone know how to make it so that you can connect to a server with a old client like 1.8 to a 1.15.2 serve

main abyss
#

^

fair abyss
#

viabackwards

frigid ember
#

this is appearitly the guy who makes or works on spigot

tidal linden
#

Hey, I'm on a localhost server running 1.15.2 (there should be no delay in mostly anything), but it still takes a second for chat to be sent. I'm creating a custom plugin, is there anything I might be doing that could be causing this?

fair abyss
#

^

tidal linden
#

a constant 20

fair abyss
#

are you sure that notginh blocks other threads?

surreal breach
#

anyone can help me with a issue ?

#

about coding

fair abyss
#

or, anyting "big code" slows async chat event

ionic hound
#

Does anyone know if bungee cord has released a 1.16 version yet

surreal breach
#

look on the spigot forums

flint vine
#

please help

#

what do I do wrong with autosaveworld

fair abyss
#

you cant do anything

flint vine
#

why?

fair abyss
#

use bukkit's self feature

tidal linden
#

I only have one other method using the chat event, and it's a low priority discord webhook

fair abyss
#

cus it's plugin's problem

tidal linden
#

but I'll try disabling it

flint vine
#

use bukkit's self feature
@fair abyss oh. ok. but it's working and saving, yes?

fair abyss
#

yes

tidal linden
#

I don't think it's my client, commands run instantly

#

it's just chat

fair abyss
#

discord hook can slow, really try to disable

tidal linden
#

yup, that was it

fair abyss
#

so you should't wait discord response is done

#

i dont know much with threading

#

sorry

#

what lib you use?

#

jda javacord?

tidal linden
#

JDA

#

but it shouldn't matter? I'm not using it for chat

fair abyss
#

are you using rest action in chat event ?

tidal linden
#

I have no idea

fair abyss
#
                   .queue(response /* => Message */ -> {
                       response.editMessageFormat("Pong: %d ms", System.currentTimeMillis() - time).queue();
                   });```
#

this is rest action queue

#

it runs bellow when up effect is done

#

so, it edit's message when it sent

#

are you using something like this in chat event?

tidal linden
#

Okay so

#

I'm using a class I found on the internet to manage webhooks

#

I should be able to link, right?

fair abyss
#

when you move it to non local machine

#

it should'nt big problem

tidal linden
#

actually, there's the sending part:

URL url = new URL(this.url);
        HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
        connection.addRequestProperty("Content-Type", "application/json");
        connection.addRequestProperty("User-Agent", "REDACTED");
        connection.setDoOutput(true);
        connection.setRequestMethod("POST");

        OutputStream stream = connection.getOutputStream();
        stream.write(json.toString().getBytes());
        stream.flush();
        stream.close();

        connection.getInputStream().close();
        connection.disconnect();
frigid ember
#

the methods dropItem and dropItemNaturally don't allow me to pick the block up after it fell down

#

or in air

#

it just doesn't work

#

=paste

fluid depot
fair abyss
#

using vpn?

fluid depot
#

Nope

fair abyss
#

what url do you try

fluid depot
frigid ember
#

it just doesn't work
And no errors

fair abyss
#

try without www

fluid depot
#

Redirected to www, then same error

fair abyss
#

there was an issue with www https (not sure which)

#

dont know if it fixed

#

i was afk for 1 month

fluid depot
#

I tried to disable HTTPS Everywhere and go on the http version, but I got redirected

narrow vortex
#

I dont get pillager raids in my survival server anyone know why?

proper wolf
#

is teere a gamemode you set

fair abyss
#

gamerule*

#

maybe try change difficuility

fluid depot
#

Hm, that article basically says "contact site owner".

Cloudflare Ray ID: 5a8a1687a874ca6f

fair abyss
#

and, did you kill pillagers to get effect?

narrow vortex
#

na

#

i dont get any spawns of them

#

of pilligers

frigid ember
#

Methods dropItem / dropItemNaturally dont allow me to pick the blocks up

#

They just stay there on the ground xD

lone fog
#

You have something else interfering

frigid ember
#

but i dont get what D:

green sparrow
#

?1.16

worldly heathBOT
#

๐Ÿ‘€ ๐Ÿ‘€

frigid ember
#

1.8

magic sun
#

thats new?

golden valley
#

im kinda new to this whole jazz, what version of bungeecord do i use for 1.15.2? do i need to change to for 1.16?

subtle blade
#

You should be using the latest version of bungee pretty much at all times

#

Latest supports 1.8.x - 1.15.x

golden valley
#

thank you papa

subtle blade
#

*1.16.x, rather. It was updated

crisp sinew
#

Hey, where can I keep up with what's happening on 1.16 build? :)

golden valley
#

for bungee, do i run all the servers normally, and have progessive ports per server? like localhost:25566 and 25567 ...

#

well i guess the lobby would be default to allow people to connect

midnight seal
#

yeah you just run all of the servers normally. they can be on any port you want as long as it matches the config.

golden valley
#

oh, sick, thanks ๐Ÿ˜„

midnight seal
#

make sure you port forward your bungeecord but not the spigot servers because they're in offline mode and that could cause security problems

golden valley
#

okedoke

#

thanks

hardy cedar
#

@crisp sinew cool name lol

crisp sinew
#

Lol hey

tidal linden
#

man who would have thought running the webhook post asynchronously is how you get it to not block the event flow

#

as a discord bot dev, I am ashamed of myself for not thinking of this

crimson venture
#

?1.16

worldly heathBOT
#

๐Ÿ‘€ ๐Ÿ‘€

tidal linden
#

oooooh

#

I like this message better than the old one

pale willow
#

sorry if this is a dumb question, but if spigot was updated to 1.16, would there be an announcement on the main page, or would i have to figure it out from build tools?

lone fog
#

Main page

#

And delivered to your doorstep

drowsy nova
#

hmm my verification email doesn't work "Your account could not be activated." what to do ?

narrow vortex
#

Hey for some reason pillagers dont spawn in my world

#

on my spigot server

#

anyone know why?

wanton delta
#

Have you tried to remove plugins

#

Taht may be interfering

remote pecan
#

I never got a dm from the bot on the website. I ran the command in #verification

crisp widget
#

Re-run it

#

I had that issue earlier too

remote pecan
#

๐Ÿ‘ ๐Ÿ‘

golden valley
#

im getting a failed to bind port on 25566 ?

pale willow
#

is port 25566 already used?

golden valley
#

not unless its something with bungee

#

reeeeeee

midnight seal
#

that means you already have a server running on that port, try using another port or going into task manager and checking if one is running in the background

crisp widget
#

Either that or you've bound an IP to the server it doesn't recognise or can't use

pale willow
#

is the builds from e.g. today on buildtools, are they likely still 1.15.2 or are they like alpha/beta 1.16 builds?

crisp widget
#

1.15.2

#

Just a replicate of the previous

pale willow
#

ok ty

golden valley
#

should i change the query.port aswell?

crisp widget
#

Query port isn't relevant honestly unless you plan to use it

midnight seal
#

only if you want server lists/other apps to see a list of online players and maybe even your plugins

thick hollow
#

Should I cache player prefixes in memory, or should I read them from the database every time someone chats?

quartz heron
#

memory

flint vine
#

how to fix?

subtle blade
#

You know that Spigot lets you use a restart script, right? lol

flint vine
#

yes but I want there was some problems with it

#

it starts a new process before the last one has died

#

Is there a way that you can help me fixing it?

bold anchor
#

Does

while :
do
  java -jar myjar.jar
  sleep 10
done

Not work?

flint vine
#

without true?

#

let me try

#

same mistake

quartz heron
#

i have the same as you mark, works fine ๐Ÿ˜ฎ while true do java command here echo Restarting in 5 seconds, CTRL + C To Terminate. sleep 5 done

flint vine
#

hahaha ohh nooo

#

it does not like my "done"

golden valley
#

how do you guys start the servers and bungeeord at once? also how stop

bold anchor
#

You don't need to start them at once?

golden valley
#

sure, but what about a restart?

#

you just start them all by hand?

#

just i can just use screen

limber summit
flint vine
#

oh gosh I tried google and nothing helps

limber summit
#

Someone is able to disconnect everyone

#

using a crashing client

golden valley
#

i mean starting and stopping all the servers, including bungeecord

limber summit
#

a .kickall

flint vine
#

this done do problem

limber summit
#

can someone help me

#

please

#

It also says "You logged from an other location"

#

no

lone fog
#

Cracked server, abandon ship

limber summit
#

they can't

#

I use jpremium

frigid ember
#

fam if it's cracked we ain't able to help

limber summit
#

When I test with a cracked launcher it doesnt work

lone fog
#

SpigotMC has never supported offline servers. The appropriate response to any question from a server running in offline mode is to not support them whatsoever

flint vine
#

I found on my topic smth in the net

#

but I'm too noob

#

ok this is my mistake

quartz heron
#

my guess is some stray char somewhere?

flint vine
#

this is my code

#

and this what I found

#

I found this

#

but how to fix idk

lone fog
#

Rewrite the line maybe?

flint vine
#

please if anyone can make my life easier.

#

how to do that

lone fog
#

With notepad or whatever

#

May also be the format you save it in?

flint vine
#

.sh

lone fog
#

Or rather encoding

flint vine
#

Or rather encoding
@lone fog ?

golden valley
#

dose localhost not work for bungee

#

i have no idea what im doing wrong then

#

ugg

#

address allrealdy in use

#

but the onlyplace i have that port is in the config for the lobby

#

25576

#

nah

#

i mean i did, but no idea where

#

or how

#

localhost

#

one sec

#

ill take a pic

#

i cant paste?

#

discord is not letting me paste the screenshot

#

i think imma just off myslef

#

brb gaoing to get coughed on

junior lagoon
#

Can someone help me

#

is this pvplegacy

#

i got banned and i wanted to appeal

#

but it wont let me login my account i just made

golden valley
#

can someone help me? i cant paste anything

quartz heron
#

upload to imgur ace

lone fog
#

Only verified users can directly upload images

junior lagoon
#

can someone fucking help me

lone fog
#

This ainโ€™t PvP legacy

#

This is spigot

#

How did you even end up here

golden valley
#

pi lad

#

oi lad, relax

#

just did it the oof way

quartz heron
#

well it looks like you have lobby and bungee trying to run on same port lol

golden valley
#

am i retarted

#

i am

#

i saw the -lobby flag and went full donges

#

thank you papa

#

sometimes i just loose my mind

hardy cedar
#

guys how can i change this thing's name

        ItemStack sword = new ItemStack(Material.STONE_SWORD, 1);```
subtle blade
#

Get its ItemMeta with ItemStack#getItemMeta()

lone fog
#

Get item meta, set name, set item meta

hardy cedar
#

ok thx

#

can i add on click action

#

like send a command

#

or an event

#

or something

quartz heron
#

before you give the itemstack to the player

drowsy nova
#

i know u have rl problems here but i cant activate my acc "Your account could not be activated" link in mail doesn't work

#

and that is sad lol

hardy cedar
#

before you give the itemstack to the player
wdym

#

i know u have rl problems here but i cant activate my acc "Your account could not be activated" link in mail doesn't work
where that happen?

#

after u click the link?

waxen orchid
#

Is there a way to cancel the sweep attack animation in 1.9+?

drowsy nova
#

after i click the link ""Your account could not be activated"

hardy cedar
#

weird, maybe u recived a link after it

#

so that happened

drowsy nova
#

maybe xd

vocal widget
#

Does anyone know how I can go about fixing this?

#

I don't think it's an issue with the API, but rather spigot is blocking my IP

golden valley
#

wait, wait, i want that to be host to be 25565 or the lobby to be 25565 if i dont wanna specify a port on the address

#

i mean for the external address, if i dont want to have people specify a port on the address dose the host address carry the default port or dose my "lobby" carry the default port of 25565

stark island
#

If Im on paper how hard is it to switch to this release of spigot? is it as simple as switching the JAR?

fair abyss
#

@vocal widget i was tell you

#

looks like issue isn't fixed.

#

check that link

golden valley
#

i will re-phrase the question. which service do you have using 25565?

vocal widget
#

@fair abyss Oh yeah, I actually downloaded the latest version, but still for some reason I'm getting the 1020 error... I believe it has to do with the fact that I'm trying to access Spigot using Amazon AWS API Gateway

fleet crane
#

host IPs are often blocked due to ddos

vocal widget
#

@fleet crane Alright, thank you! What I'm trying to do is just verify that a Spigot user is infact who they say they are, but it doesn't seem like it would be possible with that API, unfortunately

#

One option is to make them paste something in a resource and check the description

#

But if the user doesn't have any resources that won't work

#

and /getAuthor only works if the user has created resources

fleet crane
#

yeah thats a bug

#

youre welcome to fix it, and the identities section has a spot for discord names if thats what youre verifying

vocal widget
#

Hmmm ok, yeah, I could try to fix it, cause that's something that I think would be really useful

#

And, it's actually just for a plugin, so the player is linked with their Spigot account

#

Out of curiosity, is that a bug that you think could be fixed? It seems like user profiles would be seperate from the Xenforo resource manager, so maybe something completely new would be needed

fleet crane
#

the actual bug isnt about authors

#

its about users having no identities

#

getAuthor will show people with no resources

#

it wont show some people with no identities though

azure cave
#

how do I fix Exception in thread "main" org.eclipse.jgit.api.errors.ServiceUnavailableException: Signing service is not available at org.eclipse.jgit.api.CommitCommand.call(CommitCommand.java:247) at org.spigotmc.builder.Builder.main(Builder.java:544) at org.spigotmc.builder.Bootstrap.main(Bootstrap.java:34) with build tools building 1.16

#

if I run again I get Exception in thread "main" org.eclipse.jgit.api.errors.CannotDeleteCurrentBranchException: Branch patched is checked out and cannot be deleted at org.eclipse.jgit.api.DeleteBranchCommand.call(DeleteBranchCommand.java:104) at org.spigotmc.builder.Builder.main(Builder.java:541) at org.spigotmc.builder.Bootstrap.main(Bootstrap.java:34)

vocal widget
#

@fleet crane ohhh I see... That makes sense

azure cave
#

happens right after Patching with WorldUpgrader.patch both times

vocal widget
#

To verify their spigot account then, I'd probably need to require that they add a new identity?

golden valley
#

if i have bungee running and no other servers, should it populate the server screen with the MOTD?

fleet crane
#

hm

#

@azure cave do you have gpg signing always enabled in your git onf?

golden valley
#

yea, just bungee

hardy cedar
#
ItemMeta meta = item.getItemMeta();
meta.setDisplayName(color(displayName));
item.setItemMeta(meta); ``` that didnt work ๐Ÿ˜ฆ
golden valley
#

i want to see if it is working

hardy cedar
#

sad ahmed :(((((((((((((((((((((((((((((((

azure cave
#

oh shit thanks @fleet crane I'll turn it off

hardy cedar
#

lol

#

xd

fleet crane
#

@azure cave can you open a bug report?

#

Downgrading to #112 (should) also work

golden valley
#

i cant get my lobby, but if i change the servers port to 25565 i can get it

#

sorry, lobbys port

azure cave
#

can #112 build 1.16? also sure!

golden valley
#

but running bungee on 25565 is getting me nothing

fleet crane
#

yeah it can

azure cave
#

K cool

golden valley
#

i have no idea why its not working

#

i can have have all the addresses as localhost, and not specified in the server.properties and just use ports, correct?

#

am i not receiving an answer because im dumb or no one knows?

#

do i have to open the ports on the localhost?

#

im on centos8

#

yea, thats what i thought, im just stuuuuuuuuuucccccckkkkk

alpine tapir
#

alguien habla espaรฑol? necesito yauda

#

ayuda*

simple reef
#

Question can i just use --rev latest to upgrate

golden valley
#

and i know the port works because i can run one server off of it

#

Listening on localhost/127.0.0.1:25565 - dose this sound correct?

#

what should i set my forced host to

#

also localhost?

#

if i leave it alone will it work?

vocal widget
#

@fleet crane Any chance you have any other ideas for verifying that a user is who they say they are, other than making them paste a verification code in one of their identities?

obtuse owl
#

need some help, when I finish doing Buildtools it gives me a 1.15.2 Spigot insted of 1.16

golden valley
#

lobby i guess
@frigid ember what dose yours say?

#

does*

#

yes. do you leave it alone, or change it. i don't have access to that domain, is it causing me issues?

frigid ember
#

welp 1.16 broke everything

#

fat rip

tepid flax
#

Im using git bash right now and im getting this error when running the "java -jar BuildTools.jar --rev latest" command

"BuildTools requires at least 512M of memory to run (1024M recommended), but has only detected 247M.
This can often occur if you are running a 32-bit system, or one with low RAM.
Please re-run BuildTools with manually specified memory, e.g: java -Xmx1024M -jar BuildTools.jar --rev latest"

anyone have a fix? I have 16gb of ram and 64 bit windows

latent rock
#

Damage and attack damage are different right?

tepid flax
#

doesnt work :/

#

no i will try

#

same message

golden valley
#

i got it, host was set to localhost, not 0.0.0.0

#

live and learn

fossil burrow
#

I have a mistake

#

[Prism Daemon] Server marked as OFF
[Prism Daemon] ---------- Detected server process in a crashed state! ----------
[Prism Daemon] Exit Code: 1
[Prism Daemon] Out of Memory: false
[Prism Daemon] Error Response:
[Prism Daemon] Aborting automatic reboot due to crash within the last 60 seconds.

floral bone
#

I get the Exception Connecting: DecoderException without any plugins

#

what should I do

#

java.lang.IndexOutOfBOndsException

#

no plugin

#

yeah

#

spigot.jar

#

i use bungee

#

spigot

#

his server is running CraftBukkit version git-Spigot-758abbe-2b00831 (MC: 1.16.1) (Implementing API version 1.16.1-R0.1-SNAPSHOT)

fossil burrow
#

[INFO] Reactor Summary:
[INFO] Spigot-API 1.15.2-R0.1-SNAPSHOT .................... SUCCESS [ 35.093 s]
[INFO] Spigot-Parent dev-SNAPSHOT ......................... SUCCESS [ 0.214 s]
[INFO] Spigot 1.15.2-R0.1-SNAPSHOT ........................ FAILURE [ 0.876 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 36.339 s
[INFO] Finished at: 2020-06-24T21:26:17-04:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project spigot: Could not resolve dependencies for project org.spigotmcspigotjar:1.15.2-R0.1-SNAPSHOT: Could not find artifact org.spigotmc:minecraft-server:jar:1.15.2-SNAPSHOT in spigotmc-public (https://hub.spigotmc.org/nexus/content/groups/public/) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <goals> -rf :spigot
Error compiling Spigot. Please check the wiki for FAQs.
If this does not resolve your issue then please pastebin the entire BuildTools.log.txt file when seeking support.
java.lang.RuntimeException: Error running command, return status !=0: [sh, /home/container/apache-maven-3.6.0/bin/mvn, clean, install]
at org.spigotmc.builder.Builder.runProcess0(Builder.java:804)
at org.spigotmc.builder.Builder.runProcess(Builder.java:741)
at org.spigotmc.builder.Builder.main(Builder.java:617)
at org.spigotmc.builder.Bootstrap.main(Bootstrap.java:34)
[Prism Daemon] Server marked as OFF

#

D: ?

floral bone
#

dont paste this like that please

brave vector
#

well i think i will wait for the spigot 1.16.2

fossil burrow
#

helpme :c

floral bone
#

oh my god lol

tiny horizon
#

is it possible, to make a public ip adress for my secondary server and my main server, but keep them different?

#

without buying a new router

#

lol

#

how

#

I have a switch

#

aswell

#

no

#

but they are on the same netowrk

brave vector
#

different port?

fossil burrow
#

someone help me?

tiny horizon
#

nope

#

different ip's

serene sail
#

yo i got a question can someone help me out

brave vector
#

so you want to have a same ip or something?

tiny horizon
#

no

#

different ip

#

because its insecure currently

#

for me

#

bc of ddos and cloudflare not working

brave vector
#

please paste your buildlog into hastebin

tiny horizon
#

no

#

it works

#

on my server

#

so Im trying to prevent that

brave vector
#

cloudflare proxy protect is not working for minecraft server

tiny horizon
#

from where?

#

though

ashen dove
#

Lol reverse-ddos, when some does a ddos on you just ddos him back

tiny horizon
#

thats risky...

floral bone
#

I think i couldn't manage to set up the bungee rogerbleu

#

how do i set the spigot on proxy?

serene sail
#

anyone know if i can move my vanilla world to spigot 1.16.1 by running buildtools ? or do i go to spigot 1.15.2 then run buildtools for 1.16.1

floral bone
#

i used paper

#

yeah

#

ye

brave vector
#

Bungee config.yml online-mode false?

ashen dove
#

thats risky...
@tiny horizon idK nOW wHaT yOu mEAn

floral bone
#

should i set

#

online mod to on?

brave vector
#

if you want spigot to verify player account

floral bone
#

yeah

tiny horizon
#

lol

floral bone
#

i couldn't manage to set up the bungee for 1.16

#

no plugins are on

brave vector
#

wait for 1.16.2

proper wolf
#

Which EssentialsX version works with 1.16?

pastel condor
brave vector
#

i think there isn't have a lot of plugin work on 1.16

subtle blade
#

md must have missed that bit

pastel condor
#

lol

lapis plinth
brave vector
formal jacinth
#

@lapis plinth Your scoreboard doesn't exist

quick harbor
#

Did Attributes get changes in 1.16?

lapis plinth
#

I made a scoreboard in the main class

ashen nebula
#

Anyone else have a issue with building 1.16 that says Signing service is not available?

proper wolf
#

nope

quartz trench
#

Disable git signing

#

~/.gitconfig

ashen nebula
#

๐Ÿ‘

formal jacinth
#

oh Atom

lapis plinth
#

ye

formal jacinth
#

@lapis plinth , i got it. Don't do display name. The user might not have a display name. Do player.getName()

lapis plinth
#

kk

formal jacinth
#

also, pls do proper naming conventions

#

"OnPlayerJoin"

#

oh wait thats the class name jk

proper wolf
#

EssentialsX

#

What version works

lapis plinth
#

xD

hardy cedar
lapis plinth
#

@formal jacinth nope, still broken

proper wolf
#

?paste

worldly heathBOT
proper wolf
brave vector
lapis plinth
brave vector
#

Team is null i suppose

lapis plinth
#

I created the teams in the main class tho :thonk:

formal jacinth
#

well

#

he created it in his main class, but...

brave vector
#

You create a new scoreboard at onPlayerJoin event

formal jacinth
#

you are creating it again with that line

brave vector
#

not the old own

formal jacinth
#

you have to reference the scoreboard in the onEnable

brave vector
#

Rabs, i think EssentialsX doesn't update the new nms lol

lapis plinth
#

alright ima create a scoreboard within the same class and see what happens

formal jacinth
#

well what i would do

#

create a method that returns a scoreboard, then reference that method in the onEnable and join

#

and in that method, check if the scoreboard, teams, and objectives are null

#

and if they are, create them

ashen dove
#

Who uses essentials, it's 2020

lapis plinth
ashen dove
#

70% of essentials functionality isn't needed

brave vector
#

EssentialsX has a lot of heavy stuff that we don't need it

woeful lark
#

anyone else getting [Netty Epoll Server IO #3/INFO]: Your version isn't recognized, switching to fallback solution: "generic_v3", please update! error with spigot 1.16.1 ?

ashen dove
#

Wo uses jails, who uses mails

#

No one

proper wolf
#

Hey Michael

ashen dove
#

There are so many useless commands

proper wolf
#

What version of EssentialsX is working

#

on spigotcraft

ashen dove
#

Whole plugin is useless

quartz trench
#

none its not updated yet

ashen dove
#

What version of EssentialsX is working
@proper wolf custom essentials fork from md5

proper wolf
#

FUDGE

ashen dove
#

The spigotcraft server is on GitHub

#

With the plugins...

#

OMG why TF fuck would anyone with an normal IQ use essentials?

#

There are more lightweight alternatives

#

Or just code it by yourself

proper wolf
#

Sh

#

it's there for you

quartz trench
#

The jar in SpigotCraft is 2 yrs old lmao

ashen dove
#

Yeah but apparently it's working

proper wolf
#

yea

ashen dove
#

it's there for you
@proper wolf what?

formal jacinth
#

๐Ÿ‘‰ ๐Ÿ‘ˆ some of us like essentials ๐Ÿ˜Ÿ

proper wolf
#

I had a thought about moving from essentials

#

But some people like it

#

As it's convenient

lapis plinth
#

๐Ÿ‘‰ ๐Ÿ‘ˆ some of us like essentials ๐Ÿ˜Ÿ
@formal jacinth ikr

ashen dove
#

๐Ÿ‘‰ ๐Ÿ‘ˆ some of us like essentials ๐Ÿ˜Ÿ
@formal jacinth commit suicide (Kappa)

brave vector
formal jacinth
#

(but i agree most of the commands are pretty easy to just code yourself)

lapis plinth
#

am so bad at dis

ashen dove
#

Well you only really use like 20% of Essentials

lapis plinth
#

i cant manage to create teams in the onplayerjoin class

#

๐Ÿ˜ซ

brave vector
#

Your problem is you don't know the basic of OOP

lapis plinth
#

yeah I dont

#

LOL

ashen dove
#

And if you can't code Java use Skript or other coding languages like Javascript (Check out my project SpigotJS lmao)

formal jacinth
#

google oracle

lapis plinth
#

ew

#

i came from c++ so like

brave vector
#

C++ has OOP

formal jacinth
#

^

lapis plinth
#

i dont use objects in c++

brave vector
#

OOP is really important in Java

lapis plinth
#

i avoid them

ashen dove
#

Tf

lapis plinth
#

they fuck my brain

#

yeah ik

quartz trench
#

lol non oop is harder for me

formal jacinth
#

oop is like the foundation of java,

ashen dove
#

i dont use objects in c++
@lapis plinth then you aren't a programmer in my eyes

brave vector
#

^^^

lapis plinth
#

๐Ÿ˜ข

formal jacinth
#

aw

ashen dove
#

oop is like the foundation of java,
@formal jacinth java without OOP is like Javascript without typescript or es6

lapis plinth
#

I try to avoid them as much as possible

ashen dove
#

Biggest shit

brave vector
#

es6 and commonjs are so coool

lapis plinth
#

eh, time to go skid code and hope that it works

ashen dove
#

Check out my Javascript project, now with the functionality to execute java code from an string

brave vector
formal jacinth
#

I learned portions of java by reading plugins. Like how Enums worked and what not

#

but if you are just starting out, a traditional tutorial will be best

lapis plinth
#

I have to learn java someday, so Iโ€™d rather not use skript and whatnot

ashen dove
#

I learned Java by a 600 page ebook

#

I like reading xd

lapis plinth
#

lmfao

brave vector
ashen dove
#

Wrong project

#

Search for SpigotJS-Reloaded

lapis plinth
#

Why do peiple use gradle instead of maven

spice snow
#

so um I have a different intallation for maven. anyone got any idea how I fix this? its build tools im trying to run

/usr/bin/bash: E:\apache-maven-3.5.3\bin/bin/mvn: No such file or directory
Exception in thread "main" java.lang.RuntimeException: Error running command, return status !=0: [cmd.exe, /C, sh, E:\apache-maven-3.5.3\bin/bin/mvn,```
lapis plinth
#

Maven is so much easier imo

ashen dove
#

Because it's better

brave vector
#

Gradle is faster than Maven

ashen dove
#

And Groovy

brave vector
#

And it's really easy to use and develop

formal jacinth
#

i've never used it

lapis plinth
#

maven is ez tho

#

u just click package

#

no complicated crap involved

ashen dove
quick arch
brave vector
#

yeah i found it

ashen dove
#

u just click package
@lapis plinth lol what?

brave vector
#

click package?

ashen dove
#

What TF are you saying

lapis plinth
#

lmao to get the jar file?

brave vector
#

dependencies

lapis plinth
#

Iโ€™ve never used dependencies cuz Iโ€™m THAT bad

ashen dove
#

Do you know what Maven profiles are?

brave vector
spice snow
#

atom... I dont know what youre talking about but i've been using maven to build...

lapis plinth
#

bruh?

#

Do you know what Maven profiles are?
@ashen dove no LOL, I started java coding like 3 days ago

ashen dove
#

atom... I dont know what youre talking about but i've been using maven to build...
@spice snow I use Sublime Text for building

brave vector
#

I use jenkins .-.

ashen dove
#

I use javac

#

Noobs

lapis plinth
#

who wanna spoon feed me ๐Ÿ‘๏ธ๐Ÿ‘„๐Ÿ‘๏ธ

spice snow
#

anyways moving forward, my maven has a different installation, I dont think I can modify build tools.

formal jacinth
lapis plinth
#

^

spice snow
#

what could I possibly be missing?

proper wolf
#

Lol

ashen dove
#

Lol TF who uses that xd

brave vector
#

i set the default goal in pom.xml lol

lapis plinth
#

I clicked random buttons until I got a jar file

ashen dove
#

And who TF uses intellij

brave vector
#

i use

lapis plinth
#

I do

#

Who uses eclipse tf?

brave vector
#

my friend use

spice snow
#

oh no. he has never executed mvn clean install in his life...

orchid heart
#

anyone got help for this? it builds fine in 1.15 but it gives this error in 1.16
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project PrisonAPI: Fatal error compiling

formal jacinth
#

intellij is 1000x better

#

in every possible way

lapis plinth
#

^

brave vector
#

Intellij is smarter

#

but is heavier than eclipse

formal jacinth
#

easier to use with maven and github

brave vector
#

VSC can handle it lol

ashen dove
#

Well for noobs it's easier

spice snow
#

I dont like using too much automated tools. it makes me dumb.

ashen dove
#

But me as an pro I'm using notepad++

formal jacinth
#

lol

lapis plinth
#

Who wanna gimme an example of how I should fix my dum code?

ashen dove
#

I dont like using too much automated tools. it makes me dumb.
@spice snow definitely, I use VSCode and eclipse

formal jacinth
#

the code from above atom?

#

create a scoreboard method

lapis plinth
#

how xD

formal jacinth
#

public Scoreboard getScoreboard()

#

then check if scoreboard, team, and objective is null

#

if it is, create it

ashen dove
#

Who wanna gimme an example of how I should fix my dum code?
@lapis plinth Ctrl +A then Ctrl + D

formal jacinth
#

then return scoreboard

lapis plinth
#

Ah ok

brave vector
lapis plinth
#

Let me SS this xD

#

@lapis plinth Ctrl +A then Ctrl + D
@ashen dove idk what control D does ๐Ÿ˜‚

ashen dove
#

Well I'm using eclipse a lot for complicated projects

#

Smooth, lightweight and runs on every hardware

brave vector
#

my friend told me that eclipse built faster

lapis plinth
#

me vibing with epic pc specs

ashen dove
#

And is 100% free without an ultimate edition

lapis plinth
#

๐Ÿ‘๐Ÿ‘„๐Ÿ‘

ashen dove
#

my friend told me that eclipse built faster
@brave vector 3 sec Maven build

formal jacinth
#

isn't IntelliJ free?

brave vector
#

i use ultimate

lapis plinth
#

community version is

formal jacinth
#

ah

quick harbor
#

I use eclipse too

lapis plinth
#

My school got me ultimate xD

formal jacinth
#

intellij free has everything i need idk why i would need to update

ashen dove
#

Well community edition doesn't have every feature

brave vector
#

which IDE does md_5 use lol

formal jacinth
#

probably intellij

ashen dove
#

Notepad

brave vector
#

i think is NetBeans

formal jacinth
#

microsoft word

brave vector
#

bungeecord source code has nb config

spice snow
#

I personally use eclipse and netbeans (ive been testing the new apache version)

ashen dove
#

intellij free has everything i need idk why i would need to update
@formal jacinth Springboot support only for ultimate edition

formal jacinth
#

ah

ashen dove
#

Also other ide's from jetbrains cost like clion

brave vector
ashen dove
#

So I use eclipse for c++/C

spice snow
#

exactly, Enterprise support (like JBOSS) is not available in commercial edition

ashen dove
#

Community version is enough for plugin coding
@brave vector well I'm a Java developer, not an spigot API developer

lapis plinth
#

which IDE does md_5 use lol
@brave vector google docs

brave vector
#

lol

ashen dove
#

And everyone that only can make plugins isn't a developer

formal jacinth
#

well

lapis plinth
#

oops

ashen dove
#

So @lapis plinth learn java before making plugins

lapis plinth
#

I meant paper and pencil

#

๐Ÿค”

#

I really should

ashen dove
#

Or you will get confused

formal jacinth
#

and ppl will make fun of you

#

and we don't want that

ashen dove
#

Yeah you moron.

lapis plinth
#

kek

quartz trench
#

md uses netbeans

brave vector
#

yeah i'm right

ashen dove
#

Lol look at mister I Skript Plugins in cool way

#

I'm going to sleep it's 4 am in Germany

#

And the sun is coming up again

#

Lmao

brave vector
#

Lol i didn't sleep last night

formal jacinth
#

yall are crazy

brave vector
#

i can't sleep lol

quartz trench
#

SkullOwner:{Id:[I;1409841822,-686993484,-1612643286,-414934969] Now there some array of I,and 4 numbers instead of a UUID in the player head NBT

#

anyone know how it works?

proper wolf
#

How do I access dimensions with spigot?

quartz trench
#

HyperVerse

spice snow
#

anyways, back to maven configuration issue, what system variable is build tools accessing for maven?

proper wolf
#

i got it @frigid ember

spice snow
#
Exception in thread "main" java.lang.RuntimeException: Error running command, return status !=0: [cmd.exe, /C, sh, E:\apache-maven-3.5.3\bin/bin/mvn, install:install-file, -Dfile=work\mapped.ee3ecae0.jar, -Dpackaging=j```
brave vector
#

have you installed maven?

lethal magnet
#

Whenever we use /wild it says command cannot be used in the world does anybody know how to help?

brave vector
spice snow
#

first of, yes I have installed maven way back. thats what im using when im building my codes.

#

second, yes, thats why im asking what system variable was build tools using so I can modify it

#

args works? I forgot to check that. thanks

#

@brave vector Apache Maven 3.5.3 (3383c37e1f9e9b3bc3df5050c29c8aff9f295297; 2018-02-25T03:49:05+08:00) Maven home: E:\apache-maven-3.5.3\bin\..

brave vector
spice snow
#

dont ask why lower version, I have custom signatures

brave vector
#

yo

#

buildtools need maven 3.6.0 atleast

spice snow
#

ah that one I missed. I guess I'll need to install a separate one

lethal magnet
#

nvm all good now

brave vector
#

I will use Intellij with VSC

#

Netbeans seems suck

serene sail
#

can i move my vanilla world to spigot 1.16.1 by running buildtools ? or do i go to spigot 1.15.2 then run buildtools

fleet crane
#

I dont think bt needs any specific maven version

#

yes you can move your vanilla world, the server will do it automatically on first run

brave vector
#

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

formal jacinth
#

thank you for everything md!

#

haven't said it yet

spice snow
#

I dont see any parameters for build tools to use a custom mvn directory

brave vector
#

buildtools will find for maven path first

#

^

spice snow
#

yeah I noticed it downloads portable mvn

brave vector
#

as md_5 just said

spice snow
#

but I have my own maven which I use to build application

brave vector
#

maven version doesnt matter

spice snow
#

okay lets go back to the beginnning

brave vector
#

(md_5 said)

spice snow
#

how do I change the maven directory bt uses via parameter?

#

yes

#

I dont want to compromise alot of setup in my coputer

spice snow
#

mango, I just said it, changing system variable will the be last resort

#

I have my tools hooked up to a custom maven w/o any issues

brave vector
#

custom maven or apache maven doesn't matter i suppose

spice snow
#

yeah but I'll have to shutdown my jboss deployments and jenkins oof

brave vector
#

why don't you build at your local pc?

spice snow
#

I am at my local pc lmao

brave vector
#

wtf jenkins?

spice snow
#

its just connected to some people

#

yeah, whats the problem with it?

brave vector
#

nothin

frigid ember
#

How do I increase water tick without increasing random tickspeed on 1.8

golden valley
#

should i update to 1.16 or is it a dangerous boy?

brave vector
#

backup all stuff

cobalt shoal
#

backup and backup some more
you can never have enough backups

spice snow
#

so I guess the best way to deal with system variable for now is to set var=val lmao. I've forgotten how usefull that is.

crisp widget
#

Anybody know what EntityType.RAVAGER was replaced with?

#

Or is it just missing :monkahmm:

frank pelican
#

I've upgraded now BungeeCord + Lobby + Creative + Survival to 1.16.1 - so everything runs fine, except on Creative and Survival. If I join the lobby, the Scoreboard will be displayed perfectly - if I want to join one of the other specified servers, I get this error message (and I never saw it blobconfounded ) https://prnt.sc/t5z98j and also, the other servers have a different objective name whattheduck

plain pumice
#

I haven't messed with my server in a few months so how do I go about redownloading spigot 1.16.1? I completely forgot and this is for java right?? yea

wooden carbon
#

how to I go about remapping the output states of my location and position predicates?

crisp widget
#

huh weird Ravager is in the docs but is missing from the api as an entitytype

plain pumice
#

Where do I put that again??? @frigid ember

#

I feel like a noob rn

crisp widget
opaque pike
#

Niceeee

wanton delta
#

so they added this thing called WorldDataServer in the NMS.... i was just wondering if any of you knew how to access that yet :\

brave vector
#

Reflect stuff

fleet crane
#

?xy

worldly heathBOT
wanton delta
#

i mean i knew what the old way was

wooden carbon
#

@frigid ember do you know how to force block_matches for water, grass_blocks and dirt. apparently it's loading randomly and not mapping correctly.

plain pumice
#

So I downloaded buildtools put inside my server files when I run the .bat file it keeps saying its outdated???

brave vector
#

no

plain pumice
#

I have no idea how I got it to work last time lmao

brave vector
#

build when you think its necessary

wanton delta
#

Reflect stuff
cant reflect anything if i dont know how to get the variable in the first place lmao

brave vector
#

so you don't know which method to invoke or which field to use?

wooden carbon
#

Where can I post a server.log snippet for some help understanding my error

brave vector
#

?paste

worldly heathBOT
wanton delta
#

correct

#

trying to get a WorldDataServer object (which is in 1.16)

#

i just havent found the location of where it could be lol

brave vector
#

use buildtools then read the source code

plain pumice
#

oh

#

i see

brave vector
#

of org.spigotmc:minecraft-server:1.16

fleet crane
#

what are you trying to do with it

#

there may be api forit

tiny bison
#

do any plugins work with 1.16

wanton delta
#

could be

#

im just upgrading something

#

thats not my own, wanted to keep the 'intended' way i guess

#

nmsWorld.getWorldData().setGameType(mode);

#

looks like setting a gamemode for a specific world?

plain pumice
#

whenever i try to run anything it loads then disappears

frank pelican
#

I've upgraded now BungeeCord + Lobby + Creative + Survival to 1.16.1 - so everything runs fine, except on Creative and Survival. If I join the lobby, the Scoreboard will be displayed perfectly - if I want to join one of the other specified servers, I get this error message (and I never saw it blobconfounded ) https://prnt.sc/t5z98j and also, the other servers have a different objective name whattheduck

brave vector
#

It looks new for me

wooden carbon
#

whoops, posted this in general not Help

#

[22:31:47] [Server thread/ERROR]: No key position_predicate in MapLike[{location_predicate:{predicate_type:"minecraft:block_match",block:"minecraft:water"},output_state:{Properties:{level:"0"},Name:"minecraft:water"},input_predicate:{predicate_type:"minecraft:block_match",block:"minecraft:dirt"}}]; No key position_predicate in MapLike[{location_predicate:{predicate_type:"minecraft:block_match",block:"minecraft:water"},output_state:{Properties:{level:"0"},Name:"minecraft:water"},input_predicate:{predicate_type:"minecraft:block_match",block:"minecraft:grass_block"}}]; No key position_predicate in MapLike[{location_predicate:{predicate_type:"minecraft:always_true"},output_state:{Properties:{snowy:"false"},Name:"minecraft:grass_block"},input_predicate:{predicate_type:"minecraft:random_block_match",probability:0.2f,block:"minecraft:grass_path"}}]; No key position_predicate in MapLike[{location_predicate:{predicate_type:"minecraft:block_match",block:"minecraft:water"},output_state:{Name:"minecraft:spruce_planks"}

wanton delta
#

i suppose i could open up the craftbukkit folder in buildtools now that i think about it? still unsure of that...

brave vector
#

wait lemme build the spigot jar

subtle blade
#

by Spigot as a dependency

brave vector
#

60-70% people use PaperSpigot

#

and some people use craftbukkit as a dependency, some use spigot-api, spigot jar, paper jar

plain pumice
#

Its not even opening now

#

ok

#

the cmd just flashes open and closes

#

for once i can say i am actually frustrated

#

powershell???

wanton delta
#

well so far i've found that WorldDataServer can reside in the WorldServer object as a field so ill use reflections now i guess :/

plain pumice
#

link me

brave vector
plain pumice
#

oh

#

my bad

#

i do have it

brave vector
#

does buildtools need installed git?

tall cedar
#

Did i miss something

brave vector
#

Bungeecord doesn't support 1.16.1 yet

#

Wait 1.16 and 1.161 are same protocol code?

tall cedar
#

I just downloaded it o_O

brave vector
#

try to download the latest build

carmine torrent
#
fatal: could not open '/cygdrive/c/Users/redacted/Spigot/Bukkit-Patches/0001-POM-Changes.patch' for reading: No such file or directory
  Something did not apply cleanly to Spigot-API.
  Please review above details and finish the apply then
  save the changes with rebuildPatches.sh
Error compiling Spigot. Please check the wiki for FAQs.
If this does not resolve your issue then please pastebin the entire BuildTools.log.txt file when seeking support.
java.lang.RuntimeException: Error running command, return status !=0: [sh, applyPatches.sh]
        at org.spigotmc.builder.Builder.runProcess0(Builder.java:804)
        at org.spigotmc.builder.Builder.runProcess(Builder.java:741)
        at org.spigotmc.builder.Builder.main(Builder.java:606)
        at org.spigotmc.builder.Bootstrap.main(Bootstrap.java:34)

SOS

plain pumice
#

@frigid ember what command is used to run the bat file

carmine torrent
#

i get that error when running build tools

brave vector
#

chmod 777 -r?

simple aspen
#

bro no

#

that's a bad idea

brave vector
#

so delete everything

#

then try again

simple aspen
#

don't just chmod 777 shit

brave vector
#

i use chmod 755

simple aspen
#

you could just chown it

#

Ok so, I tried to update spigot to 1.16.1 but my server starts version 1.15.2. Is there anything else I need to do to update?

fleet crane
#

Im not sure buildtools supports cygwin

#

nothing has ever told you to use it

#

so no idea why you have it

brave vector
#

i thought that buildtools only need java

fleet crane
#

yeah

brave vector
#

i use git bash to exec buildtools java command (windows)

hardy cedar
#

?

carmine torrent
#

cygwin hooks into the native command line

#

its build tools calling sh

subtle sundial
#

I'm getting the following - 25.06 12:40:48 [Server] Server thread/INFO Enabling dynmap v3.0-SNAPSHOT-338 25.06 12:40:48 [Server] Server thread/INFO Dynmap is disabled (unsupported platform)

I'm aware that dynmap might need to update to 1.16.1, but is there a way I alter the plugin jar to have spigot load it, see where it breaks?

plain pumice
#

now its telling me object not found lmao @frigid ember

brave vector
#
for (Player player : Bukkit.getOnlinePlayers()) {
   //Do stuff
}
tall cedar
#

flip... no idea why my wget of lastStableBuild just downloaded 1506 instead of 1508 o_O. Works now

carmine torrent
#

i suppose i could remove cygwin from my PATH and try

brave vector
dreamy dawn
#

I'm no longer able to connect to the spigot servers on my bungee network after updating everything to 1.16.1 I'm able to connect if the spigot servers are on 1.15 (with viaversion). This error shows up in the bungee console [Pempkin] disconnected with: Could not connect to a default or fallback server, please try again later: io.netty.channel.AbstractChannel$AnnotatedConnectExceptionInterestingly, I'm able to connect to a standalone spigot server I updated to 1.16.1. Is there a way to fix this

brave vector
#

try to update the latest Bungeecord

dreamy dawn
#

I'm using the latest one

tall cedar
#

1508?

brave vector
#

#1508?

#

type version

dreamy dawn
#

should be 1508

crisp widget
#

:monkahmmm:

#

There's no method to set a cats age anymore

brave vector
dreamy dawn
#

I'll re-upload 1508 to see if it wasn't

brave vector
#

a lot of stuff have been removed

simple aspen
#

gonna repost my question: Ok so, I tried to update spigot to 1.16.1 but my server starts version 1.15.2. Is there anything else I need to do to update?

brave vector
#

Idk just make a backup

crisp widget
#

Sounds like a setting with your host

simple aspen
#

such as?

#

wait are y'all talking to me

#

or the other guy

crisp widget
#

You

simple aspen
#

ah ok

crisp widget
#

We have no idea which host you're with, the panel or anything lmao

simple aspen
#

I'm hosting this locally. What should I change

#

ah ok

crisp widget
#

Ah locally

#

hm

simple aspen
#

using pufferpanel

#

spigot ofc