#help-server

1 messages · Page 118 of 1

fallow gust
#

report to on the jira, the CrafterCraftEvent patch to make CraftComplexRecipe's CraftinRecipes was wrong as it needs to skip the validation

last monolith
wide moon
wide moon
#

Anyone know how to resolve this?

last monolith
#

?paste

magic zenithBOT
last monolith
wide moon
#

That is the latest, is it worth me restarting the server? 🙂

tawny dust
#

1.21 would be the latest

#

also send the output from /version

wide moon
#

Great I'll update it now 🙂

tawny dust
#

And remember the only official way of getting Spigot is through BuildTools

#

?bt

magic zenithBOT
lofty sequoia
#

does anyone know how to change enchantment level meaning rn its prot 4 but i want the max they can get to be prot 1 i want to know how to do it on my game panel minecraft host
so when they go to the enchat table the max they can get is prot 1

last monolith
fallow gust
#

The result is empty because complex recipes cannot have a result without knowing their input

fallow gust
last monolith
fallow gust
#

Well you cannot just remove a precondition from a parent constructor

#

because that parent constructor is API 5Head

thorn gale
#

just fork spigot smh

last monolith
last monolith
last monolith
# fallow gust Can you rephrase that

yeah yeah its a little early here xd
i mean not remove the Precondition.. just move from the parent CraftingRecipe to ShapedRecipe, ShapelessRecipe for the Result check

fallow gust
#

oh. Yea you could technically move the checks into each child class

#
diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftComplexRecipe.java b/src/main/java/org/bukkit/craftbukkit/inventory/CraftComplexRecipe.java
index b46d7ff3178f7f971cc1508cad855d9d38f91ed5..977a4a439f6a897d4cf9f69957029596bce79027 100644
--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftComplexRecipe.java
+++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftComplexRecipe.java
@@ -14,7 +14,11 @@ public class CraftComplexRecipe extends CraftingRecipe implements CraftRecipe, C
     private final CustomRecipe recipe;

     public CraftComplexRecipe(NamespacedKey key, ItemStack result, CustomRecipe recipe) {
-        super(key, result);
+        // Paper start - fix issues with recipe api - use protected constructor to skip api constructor check for empty result.
+        super();
+        super.key = key;
+        super.output = result;
+        // Paper end - fix issues with recipe api - use protected constructor to skip api constructor check for empty result.
         this.recipe = recipe;
     }

is what we did

thorn gale
#

uh oh

#

doc cant contribute recipe changes now

last monolith
fallow gust
#

omegaroll I doubt you can copyright the concept of calling an empty super constructor

#

it is my code anyway, I am fine with that snippet ending upstream KEKW

#

but yea, moving the preconditions to the children would also work

#

may be cleaner tbh

last monolith
fallow gust
#

I mean, I think you should not do it that way lol

last monolith
#

looks better than move the check xd

fallow gust
#

it doesn't imo

#

Clearly now a crafting recipe may have a result that is air

#

why should the constructor enforce something that isn't true

#

you'd also only be moving a single precondition, the key once is fine there

#

While you are at it, if you have ShapelessRecipe(ItemStack) forward to this(NamespacedKey.random(), stack) you only have to copy the precondition twice

last monolith
fallow gust
#

like that would also work

last monolith
# fallow gust https://pastes.dev/RqQgFJ45QI

yeah i already test that (i forget add the precondition to a few places but the "this" fix that now xd)
the only thing not like is still making the output item empty and later make the check

#

Mojang please move to 22 DoggoHehe

full nexus
#

just upgrade it, what could possibly go wrong

fallow gust
wide moon
#

[13:38:24 WARN]: java.lang.ClassNotFoundException: Could not find net.minecraft.server.EntityPlayer [13:38:24 WARN]: at DiscordSRV-Build-1.27.0.jar//github.scarsz.discordsrv.util.NMSUtil.fixBukkitClass(NMSUtil.java:122) [13:38:24 WARN]: at DiscordSRV-Build-1.27.0.jar//github.scarsz.discordsrv.util.NMSUtil.<clinit>(NMSUtil.java:61) [13:38:24 WARN]: at DiscordSRV-Build-1.27.0.jar//github.scarsz.discordsrv.DiscordSRV.getAvatarUrl(DiscordSRV.java:2025) [13:38:24 WARN]: at DiscordSRV-Build-1.27.0.jar//github.scarsz.discordsrv.DiscordSRV.sendLeaveMessage(DiscordSRV.java:1931) [13:38:24 WARN]: at DiscordSRV-Build-1.27.0.jar//github.scarsz.discordsrv.listeners.PlayerJoinLeaveListener.lambda$PlayerQuitEvent$3(PlayerJoinLeaveListener.java:131) [13:38:24 WARN]: at DiscordSRV-Build-1.27.0.jar//github.scarsz.discordsrv.util.SchedulerUtil.lambda$runTaskAsynchronously$1(SchedulerUtil.java:95) [13:38:24 WARN]: at io.papermc.paper.threadedregions.scheduler.FoliaAsyncScheduler$AsyncScheduledTask.run(FoliaAsyncScheduler.java:217) [13:38:24 WARN]: at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) [13:38:24 WARN]: at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) [13:38:24 WARN]: at java.base/java.lang.Thread.run(Thread.java:1583)

#

Any suggestions? 🙂

fallow gust
#

net.minecraft.server.EntityPlayer just doesn't exist

#

outside of this maybe being some scuffed 1.8 version bs

wide moon
#

Understood, I'll remove the plugin then 🙂

fallow gust
#

Well you don't have to remove it, just find the version that is applicable to whatever spigot version you are running

wide moon
#

[13:42:35 INFO]: Videogames2k lost connection: Internal Exception: io.netty.handler.codec.EncoderException: java.lang.NoSuchFieldError: Class com.viaversion.viabackwards.api.data.BackwardsMappingData does not have member field 'com.viaversion.viaversion.api.data.Mappings attributeMappings'

wide moon
wide moon
#

Seems like I need to update ViaVersion.

fallow gust
last monolith
wide moon
autumn magnet
#

it would be helpful if you would just share the whole log

wide moon
#

?paste

magic zenithBOT
autumn magnet
#

the issue is caused by UltraCustomizer and ProtocolLib

#

try these things

#

uhh

#

ensure that both plugins are compatible with ur server version

#

and make sure that its the latestg

#

latest*

#

or check the documentation for both plugins for any version-specific instructions, if any

wide moon
#

Will do 🙂

autumn magnet
#

the restart-script (with value ./start.bat) option in the spigot.yml config doesnt work properly. when restarting cmd prompt says this (image)

pliant creek
#

Also you can handle automatic restarts after stops from the script itself

tawny dust
#

That looks like an issue inside of the bat file

full nexus
#

show your start script

autumn magnet
autumn magnet
pliant creek
# autumn magnet wdym?
#!/usr/bin/env bash

while true; do
    java -Xms6G -Xmx6G -jar spigot.jar nogui
    echo "Server restarting in 3 seconds"
    sleep 3
done
```Something like this would make the server start back up if it crashed or typed /stop. Assuming thats what you are trying to accomplish based on the config option
autumn magnet
#

im on windows, windows doesnt support .sh files

tawny dust
#

You can install bash on windows

#

git bash for example

autumn magnet
#

well if i type stop i would love for the server to stop and not restart

shy falcon
#

since when was that a thing

tawny dust
#

Java 22

pliant creek
shy falcon
#

why does it exist

tawny dust
#

It exists mainly so you can declare variables

#

which can help prevent duplicate code

shy falcon
shy falcon
#

auto restarts the server after 5s after it stops

#

oh u wnated it to Not start again?

autumn magnet
#

no not that

#

i want it so that

#

when i type restart in the console

#

for it to restart

pliant creek
autumn magnet
#

and when i type to stop i would like it to stop

shy falcon
#

theres config for that but iirc its not good? to use

#

idk

autumn magnet
#

then i guess ill js restart the server manually myself

shy falcon
#

just gave me an idea for a dumb ass start script + helper plugin combo

pliant creek
#

there is a start up script generator online

shy falcon
#

start script:
starts server
waits for restart
if text file exists, restart, if not, end script

plugin:
adds custom /restart command
when ran: creates a text file for start script to check, calls /stop

random thunder
#

Is it possible to make it so only one mace is craftable in a server?

random bridge
#

It’s possible.

#

Not sure if it’s been made though.

velvet heron
#

How can I make my 1.21 aternos server anti xray if im using spigot?

frozen girder
#

hi everyone, do you have any plugins to custom worldgen to Mc 1.21 ?

upper kettle
#

how do i disable the ">", so it stops spamming my console?

ornate night
last monolith
ornate night
#

okay sick thanks!

distant harbor
#

I got 3 ghost pings

#

spigot and paper are going to be optimal

#

But I cant use it

#

becuase I use purpur

#

and everyone just throws you down for it

limber creek
#

I'm using the custom heads plugin, but after merging my resource packs (modelengine, itemsadder, elitemobs and some custom UIs and boss models I made), all the heads too close to eachother lose textures. Has anyone experienced similar issues and know what to locate to fix this? At first, I experienced the same issue with the itemsadder emote system causing it, which I had to disable, but it came back with me uploading the merged resource pack.

craggy coyote
limber creek
rapid basin
limber creek
rapid basin
#

ah

craggy coyote
lusty heath
#

update java

craggy coyote
lusty heath
#

uh

craggy coyote
#

HMMM

lusty heath
#

whatever 55 correlates to

craggy coyote
#

java 11

lusty heath
#

I'd do 17

#

17 the the next benchmark from 8 iirc

craggy coyote
#

are u sure it will work?

lusty heath
#

That's the issue with the error

#

you need at least j11

#

I assume 1.8 server?

craggy coyote
#

How can i use specificed java version for start.bat

#

So i have 3 java version

lusty heath
#

Dictated by your machine

#

iirc

craggy coyote
#

but i want to start with specificed java version

lusty heath
#

go to cmd prompt or whatever and type java -version

craggy coyote
#

openjdk version "1.8.0_412-412"
OpenJDK Runtime Environment (build 1.8.0_412-412-b08)
OpenJDK 64-Bit Server VM (build 25.412-b08, mixed mode)

craggy coyote
#

can a 1.16.5 minecraft server work with java jdk 17?

lusty heath
#

17

craggy coyote
lusty heath
#

Yes

craggy coyote
#

because so much plugin just work on java 17 or higher

lusty heath
#

The plugin you mentioned that has an error will work so long as you have j11 or later version

#

1.16 requires j17 iirc

craggy coyote
#

ok thanks

wide moon
#

Connection Lost Internal Exception: io.netty.handler.codec.EncoderException: Sending unknown packet 'serverbound/minecraft:chat_session_update'

#

When I try to join my server it shows this error? 🙂

#

?bt

magic zenithBOT
wide moon
#

?paste

magic zenithBOT
wide moon
#

Logs from the proxy server ^

tawny dust
wide moon
#

Oh right, is there a way to fix it? 🙂

tawny dust
#

yeah second part of my message

mellow dock
#

Or wait for the next game update

tawny dust
#

If you stay on the first server for a while it should be fine

near hound
#

what happened why is it showing red?

tawny dust
#

Nothing is wrong in what you sent

runic widget
#

hello what to do if i request a refund and the creator banned me

civic owl
#

I downlaoded bungee online time, when i type /onlinetime it says player eg. hypixel is not found

#

maybe I should add databse to xampp

#

but I don't know how, someone?

#

I made it..

velvet heron
#

How can I make my 1.21 aternos server anti xray if im using spigot?

rich fossil
rich fossil
velvet heron
#

Is there any code for anti xray that i can put in the yml file?

#

spigot yml

mellow dock
#

No

kind oak
#

Well I tried deleting the chunk and even the whole region (mca file) but server still keeps crashing so I'll try deleting plugins and their combinations to see if the problem is there

tawny dust
west cloak
#

is there any way to convert a section of blocks to a bunch of block displays

pliant creek
west cloak
full nexus
#

the sparkles lmao

rancid swallow
#

anyone know a method to randomize all online people between 2 groups?

hard sage
#

All other methods I can think of require some extra logic or attention and this one is pretty straight forward and fail-prove.

rancid swallow
hard sage
#

You just said "anyone know a method"

rancid swallow
#

i was unable to find anything myself and was curious if other people have a preexisting solution to this

hard sage
#

Even if you are looking for something like that, your description and use case is very vague ...
What groups? Scoreboard Groups? Permission Groups? Custom Groups? Or something else?
And what is this supposed to do for you / interact with on your server?

#

You're giving nearly 0 information here

rancid swallow
hard sage
#

In that case you will probably run out of luck finding a specific plugin that does that for you - maybe there is one buried deep on the downloads pages, but I'm not gonna search that for you, sorry.
You are probably better of, asking someone to make that for you or make it yourself.

rancid swallow
hard sage
#

?basics

magic zenithBOT
hard sage
#

?spd

hard sage
verbal wraith
#

My server is always crashing with tps on 20.0 and then when it crashes the command simply stops (thread stopped) and then never comes back and the server simply crashes. How can I see the cause if the latest.log only shows the pending stuff from the thread that stopped?

tawny dust
#

Send what the log says

#

?paste

magic zenithBOT
tawny dust
clear sierra
#

Is this channel okay to ask about datapack problems?

manic quarry
#

i always get kicked becauese of the packet rate limit when i join

pliant creek
manic quarry
#

Ist not my server

barren oasis
tawny dust
clever glacier
#

How can i request a refund for a plugin?

pliant creek
clever glacier
pliant creek
clever glacier
#

The only dependancy is Vault

#

I haven't done anything to the plugin and it only comes up with 1 issue 'unexpected error occured trying to execute that command'

#

and this is from the second i have put this plugin on my server, so it can't even be someething ive odne

past pier
#

How do i allow tnt duplication

tawny dust
#

if you're using Paper you should ask them

tawny dust
#

?paste

magic zenithBOT
tawny dust
#

Also you're most likely expected to install an economy plugin together with Vault

clever glacier
#

We have essentials and vault

#

I went to paypal about it, as i dont want money tied up with a plugin i can't use, just going to purchase a different one

lusty heath
#

That's a dickhead thing to do

#

btw

tawny dust
#

^^

#

You should send the error message instead

#

Maybe we can help you with it

lusty heath
#

@clever glacier

clever glacier
#

How so?

#

They provided me with a plugin that doesnt work, when they say it does work with my version. Then when i go to get support, i get nothing, i waited, i asked in several channels, still nothing? am i just expected to suck it up and let them keep my money for something that doesn't work as described?

lusty heath
#

Because you don't understand how much time and effort goes into a project, more so a premium one. I can guarentee they put more time into testing what versions worked than you put into figuring out the issue

clever glacier
#

The issue is that the second the plugin was on my server, it didnt work, the menus showed up with nothing when they are supposed to, i read through their whole post several times

#

there is no need for you to come here saying im a dickhead, when i have done what i can do to get it resolved

lusty heath
#

You are a complete dickhead

clever glacier
#

Because their plugin doesn't work?

#

i don't understand how that makes me a dickhead

lusty heath
#

You made no attempt to handle this dispute with the owner, so instead go straight for a chargeback

#

That is dickhead activity

clever glacier
#

Did you not read what i said?

lusty heath
#

Try harder

#

Don't just chargeback and call it a day

#

That is fucked up

clever glacier
#

omd get a life

lusty heath
#

Send your logs

rapid basin
#

someone charging back on plugins???

lusty heath
#

Do something useful

#

instead of fucking over another dev

clever glacier
#

Well i've taken the plugin off my server now

#

because i am not using it

lusty heath
#

Then it's your issue at this point, if you don't even want to try to fix the issue?

clever glacier
#

I did try fix the issue

lusty heath
#

Not hard enough

#

Send

#

your

#

logs

clever glacier
#

am i supposed to just code the whole thing myself?

tawny dust
#

no you're supposed to send your logs

full nexus
#

kek

lusty heath
#

Some people don't understand the impact of a chargeback man

#

Even more so if it ends up being (incorrectly) successful

clever glacier
#

Some people don't understand the impact of a plugin that doesnt work man

lusty heath
#

Some people don't understand the impact of seeking help man

#

Send your logs or fuck off at this point

clever glacier
#

I did seek help

lusty heath
#

now I'm pissed

clever glacier
#

Be pissed then

lusty heath
#

Send

#

the

#

logs

clever glacier
#

I

#

dont

#

have

#

the

#

logs

#

i

#

dont

#

own

#

the

#

plugin

#

anymore

lusty heath
#

Ok dickhead

clever glacier
#

👍

lusty heath
#

It's almost like servers keep a file of logs

clever glacier
#

they do

lusty heath
#

Hmm

#

weird

clever glacier
#

but im not sending them to you

lusty heath
#

...

clever glacier
#

i dont need help for a plugin i don't physically own

lusty heath
#

So you pirated the plugin

#

gotcha

clever glacier
#

well no, when you chargeback a plugin, it goes out of your purchased resources

lusty heath
#

Oh really

#

that's weird

clever glacier
#

i can't chargeback for something i never purchased?

lusty heath
#

I guess we'll consider it a 15$ purchase to get you the fuck out of their life

clever glacier
#

👍

full nexus
#

buddy can't afford a plugin

clever glacier
#

I find my players needs a little higher than a dev that can't release a plugin that works. Should i have even gotten a response from the dev i wouldn't have done a chargeback.

rapid basin
clever glacier
rapid basin
#

skill issue, maybe do research on the plugin before charging back

clever glacier
#

I did do research thanks

rapid basin
#

nuh uh

lusty heath
#

You could have sent your logs

#

and got some help from us

#

But uh

rapid basin
lusty heath
#

No you wanted to be a cuk

lusty heath
#

cant say it with the c of fucking course

clever glacier
#

Y'all so pissy for no reason. If you bought an item online and it came broken, you would return it? no?

#

so stop bitching at me

rapid basin
#

what was the plugin name?

lusty heath
#

I'd at least try to see if IM the issue first kek

lusty heath
clever glacier
#

Anyway, im gonna leave now. I hope one day you have the same issue as me with a plugin, and understand where i came from. As i have bought several plugins in the past and haven't done anything like this.

full nexus
#

👍

lusty heath
#

👍

rapid basin
#

👍

outer fern
#

Hi, I am experiencing this error on my server. I have a bungeecord network and for some random reason I get kicked of when changing servers. This error occurs completely random. I have some resource packs that are being loaded via the plugin Oraxen, and other plugins installed but these don’t usually have something to do with packets. Only thing is protocolib.

I googled and researched very long and didn’t find any solution for this. I read about late binding in the spigot.yml but that doesn’t exist anymore, to set the connection throttle in the bungee to 4000 but it is already on default 4000 and somehow delaying a connection to a server 3 seconds, but I don’t know how to do that. Client and server say 2 different things. I also tried setting the packet rate limit so 2000 on every server on the bungeecord network. This error startet occurring on 1.20.6 and got better with setting rate limit to 2000, now we upgraded to 1.21 and the error gets worse.

We use spigot 1.21 and bungeecord latest.

Client error: Internal Exception: io.netty.handler.codec.EncoderException: Sending unknoun packet 'serwerbound/minecraftchat_session_update

Server error: (PLAYER) lost connection: Kicked for exceeding packet rate limit

tawny dust
#

Should be fixed next update

#

To prevent it try to avoid switching servers too fast

lilac dome
#

what's botpractice plugins is very good

#

hmm 1.8version

simple axle
#

Hello server i want help i was playing on Minetop server with NotGamerzSoul account on my old phone and recently i bought new phone and i login and forgot to signout from old phone and i got ban evade 😭

manic quarry
#

I alwas get kicked because of the packet limit when i join

merry elk
#

If you test it let me know if it helps

merry elk
#

If this is related

full nexus
outer fern
outer fern
#

Why can’t I join my bungee network 1.21 with a forge client and no mods installed?

#

It says network protocol error

manic quarry
errant heart
#

why did my 1.21 spigot start saying outdated build, and then when I got latest from BuildTools it gave me 1.20.6??

tawny dust
#

or select it in the GUI

analog sentinel
#

1.21 is not stable yet ig

#

and latest downloads latest stable build

dapper gate
#

are all of these plugins ok to use?
https://www.spigotmc.org/resources/trickytpa-best-tpa-plugin-guis-requests-like-donutsmp-style.117819/
https://www.spigotmc.org/resources/quests.3711/
https://www.spigotmc.org/resources/axtrade-the-ultimate-trade-plugin.116826/
https://www.spigotmc.org/resources/discord-role-sync.78829/
https://www.spigotmc.org/resources/skipnight.48334/
https://www.spigotmc.org/resources/crystalclear.118431/
https://www.spigotmc.org/resources/sell-wand.87014/
https://www.spigotmc.org/resources/redprotect-anti-grief-server-protection-region-management-mod-mobs-flag-compat-1-7-1-21.15841/
https://www.spigotmc.org/resources/announce-skript.118203/
https://www.spigotmc.org/resources/lightning-on-death.118108/
https://www.spigotmc.org/resources/double-enderchest.117996/
https://www.spigotmc.org/resources/ajantixray.68409/
https://www.spigotmc.org/resources/antiseedcracker-1-20-4-1-21.81495/
https://www.spigotmc.org/resources/seedblocker-1-16-1-21.115368/
https://dev.bukkit.org/projects/multicurrency
https://www.spigotmc.org/resources/xantiafk-detect-all-afk-players-on-your-server.63466/
https://builtbybit.com/resources/antispammer.47337/?ref=discover
https://builtbybit.com/resources/cbounty-ultimate-bounty-plugin.45679/?ref=discover
https://builtbybit.com/resources/therewards-daily-rewards-streak.41876/?ref=discover
https://builtbybit.com/resources/axkills-customizable-kill-messages.31258/?ref=discover
https://builtbybit.com/resources/axrankmenu-luckperms-addon.35309/?ref=discover
https://builtbybit.com/resources/tab.20631/?ref=discover
https://www.spigotmc.org/resources/afk-pool-lake-room-pit-rewards-reward-players-in-worldguard-regions-over-700-servers.108746/

nocturne finch
#

?tas

magic zenithBOT
dapper gate
chrome jetty
magic zenithBOT
chrome jetty
#

you can't use an antivirus on jars

#

so

#

good luck

#

you can use optic's antimalware

drowsy burrow
#

hi i was launching my minecraft server after i accidentally closed the terminal it was in (it closed immediately) and now its not opening this is the last frame before it closes the terminal

#

wait

#

i can send screenshots

tawny dust
#

?img

magic zenithBOT
#

Can't send images? That's because you're not verified! Use !verify to complete verification.
Alternatively, you can upload screenshots to any image hosting site and share the link.

Here's some screenshot utilities that you can use to upload images.
Lightshot: https://prnt.sc
Imgur: https://imgur.com/upload
Flameshot: https://flameshot.org

drowsy burrow
full nexus
#

?

full nexus
#

oh am blind

drowsy burrow
#

wait how much of a problam is it that this is run on a raspberry pi 5?

full nexus
#

Very

drowsy burrow
#

oh

full nexus
#

That can take a good while

drowsy burrow
#

been using it for this server for over 1-2 months

full nexus
#

Pis are not meant to run MC servers

#

So they are really slow

drowsy burrow
#

what a surprise lol

#

its not as fast as my pc but still fast

#

hmmm i tried to run it again and the entire pi crashed

#

mild life problams

#

not on fire tho

dapper gate
#

is builtbybit trustworthy?

opaque bay
#

yo does anyone know a leveling plugin?

#

like for example when you cut down a tree you level up in woodcutting

#

or when you go mining you level up mining

analog sentinel
#

probably like every rpg plugin

opaque bay
#

can you give me some of them?

#

with just levels

lusty heath
drowsy burrow
#

lol, real

pliant creek
# dapper gate is builtbybit trustworthy?

Yes. But spigot has better and stronger resource rules so you’d probably have better support from spigotmc. Keep in mind resources are published from users, it’s up to those people to do what they want.

#

Plugins that are on BBB but not spigot usually are trying to bypass a rule

analog sentinel
#

or if you only make paper plugins 😛

full nexus
#

Modrinth

tawny dust
#

Hangar

west cloak
#

im making a lifesteal server around 50 members need anticheat, tried lightanticheat (hella broken, too many false kicks and bans), tried floppy (same as light). tried grim (so good in detecting, but causes so much lag and eats up all performance)

#

i cant find the right one

#

i need one that does not cause me lag and doesnt have many falses

pliant creek
outer fern
# merry elk If you test it let me know if it helps

I fixed it by using velocity 😂, it has a built in “waiting for not so ready server so your connection will be established even if your server is still thinking about lunch last week” so it waits until plugins resource packs etc are loaded and then you are being connected

blissful vigil
#

I am new here so excuse me for maybe putting this in the wrong place, But I am just trying to help some of my friends who are running a server using Saber. On our 1.21 server, About a week and a half into the world being created Fire has stopped spreading anywhere, Many items are no longer craftable (clay pots using shards, putting two bows together, stuff like that), and dying armor also does not work. Are these known issues?

#

[22:14:40] [Server thread/ERROR]: Failed to handle packet net.minecraft.network.protocol.game.PacketPlayInWindowClick@255f8d72, suppressing error
java.lang.IllegalArgumentException: Recipe must have non-AIR result.
at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
at org.bukkit.inventory.CraftingRecipe.<init>(CraftingRecipe.java:21) ~[spigot-api-1.21-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.v1_21_R1.inventory.CraftComplexRecipe.<init>(CraftComplexRecipe.java:17) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.world.item.crafting.IRecipeComplex.toBukkitRecipe(IRecipeComplex.java:43) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.world.item.crafting.RecipeHolder.toBukkitRecipe(RecipeHolder.java:16) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at org.bukkit.craftbukkit.v1_21_R1.inventory.CraftInventoryCrafting.getRecipe(CraftInventoryCrafting.java:120) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2740) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.network.protocol.game.PacketPlayInWindowClick.a(SourceFile:71) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.network.protocol.game.PacketPlayInWindowClick.a(SourceFile:14) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:35) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:162) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1270) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:203) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.util.thread.IAsyncTaskHandler.B(SourceFile:136) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.server.MinecraftServer.bv(MinecraftServer.java:1249) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.server.MinecraftServer.B(MinecraftServer.java:1242) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.util.thread.IAsyncTaskHandler.bB(SourceFile:121) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.server.MinecraftServer.v_(MinecraftServer.java:1213) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1078) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4285-Spigot-fb8fb72-00fc9fb]
at java.base/java.lang.Thread.run(Unknown Source) [?:?]

#

This is the code that shows up when attempting to craft certain items.

pliant creek
blissful vigil
pliant creek
# blissful vigil

actually, that bug is fixed its just that the patch hasent shown up yet. rebuild the jar with build tools and try again

blissful vigil
pliant creek
blissful vigil
pliant creek
blissful vigil
pliant creek
#

they do have a fire spread flag tho. rg flag __global__ fire-spread allow or true. i think

blissful vigil
pliant creek
blissful vigil
lusty heath
#

Anyone ever had an issue with pvx where it seems to have cleared all vault data by itself?

lusty heath
mellow dock
#

wtf that just makes me join the server

#

No confirm or anything just yeet

lusty heath
#

really?

#

kek

pliant creek
mellow dock
#

Oh wtf

#

It’s just not implement well on mobile

#

That’s neat tho

fiery marten
#

Hi there :). Having a bit of a hard time here. I'm running a server for my wife and kids, a long time ago I made a really neat house that had a lot of secret redstone doors, I have multiple back ups of the house so Id never lose it. Now that we have a server, I've wanted to put it into the server for them to enjoy. I've tried Litematica, and world edit, but every time I paste the schematic it seems like all of the redstone either breaks in places, or parts of the redstone circuitry stays 'on'. My server is spigot but I converted with the paper.jar.

Everyones solution to this problem I am having is to use a Fabric mod called Carpet Mod but that is not available for spigot/paper servers.

I'm just wondering, is there another way to achieve what I am doing? or am I forced to use MCedit/amulet and place the house in the world that way

lusty heath
#

I know it's a total pain but world edit and other related plugins like to break redstone in this way

fiery marten
#

yeah 😦 I wish I could remember what I used previously, because this house used to be on a separate server, and it was going down so I did a backup of the house and when I did that backup, it didn't break redstone at all, the house worked perfectly

lusty heath
#

This is probably a no go because chunks really really really like to corrupt when transfering to a newer version, but if you have the world file you could swap it into your server

fiery marten
#

Yeah 🤣 , It's been probably 5 years or so since I played minecraft, so I'm going to have to relearn how redstone circuitry works and rewire it! Thank you so much. sorry to bother you all

lusty heath
#

or just send a pulse through each circuit, should fix itself

fiery marten
#

hate sounding dumb, but I'll have to try and find out how to do that lol

lusty heath
#

Pulse as in a source of power ie: redstone torch, block, pressure plate, etc

fiery marten
#

Oh right lol. I've tried that, but I'm sure theres a path broken, the circuit toggles on and off like it should when using lever/button but the pistons refuse to move lol

lusty heath
#

Hmm yeah maybe SOL, like I said world edit and other like to break redstone

fiery marten
#

certain redstone torches are lit when they shouldnt be. I loaded up a SP map with the house on it and compared the circuitry and that is what I found, individual torches lit when they shouldnt be, paths of restone lit when they should be off lol

#

even destroying the path/torches, any new laid down mimic the same behaviour

lusty heath
fiery marten
#

I recall spending entirely too much time designing it. It was during the covid quaratine so, nothing but time! lol. Again, thank you so much 🙂 I might have someone in mind who could come on the server and attempt to debug it for me, maybe he'll have better luck lol!

lusty heath
#

Yeah no worries, good luck sir!

fiery marten
# lusty heath Yeah no worries, good luck sir!

If anyone has the same issue as me with pistons/redstone not working properly, even after pulsing. Griefprotection has a setting that doesnt allow pistons to work outside of claims! That was my issue!

lusty heath
#

Oh gee thanks joch where were you last night

full nexus
#

You mean this?

lusty heath
#

No I mean to help the guy with the red stone issue

#

But also fuck that guy

west cloak
#

doLimitedCrafting disables crafting custome recipes (like lifesteal heart) anyway to fix this i need help asap

verbal wraith
jagged orbit
#

com.nickuc.chat.τφθχΔαΣγτφς.a

#

Wtf is that

novel dawn
#

any ideia @jagged orbit

#

?

hard sage
# verbal wraith Anyone knows why it is crashing? https://paste.md-5.net/inohebiqaq.md

I mean ...

[13:12:59] [PandaSpigot Watchdog Thread/ERROR]: The server has stopped responding!
[13:13:22] [Server thread/INFO]: PLACE_ALL

[13:13:22] [Server thread/INFO]: ---

[13:13:22] [PandaSpigot Watchdog Thread/ERROR]: Please report this in https://github.com/hpfxd/PandaSpigot/issues!
[13:13:22] [PandaSpigot Watchdog Thread/ERROR]: Be sure to include ALL relevant console errors and Minecraft crash reports
[13:13:22] [PandaSpigot Watchdog Thread/ERROR]: PandaSpigot version: git-PandaSpigot-119 (MC: 1.8.8)```
#

Maybe try reporting it to PandaSpigot?

tawny dust
#

Yeah I told them that last time

thorny harness
#

[13:13:23] [PandaSpigot Watchdog Thread/INFO]: Startup script './start.sh' does not exist! Stopping server.

hard sage
novel dawn
thorny harness
#

Good to know

hard sage
tawny dust
#

I doubt this is an issue with Java version

flat rain
#

is there a datapack/plugin that makes you need the dragon egg to reborn it?

obtuse estuary
#

Everything is very close to a solution...There is one more problem left to solve: I log on to the server, it says in the console that I am logged in, but in minecraft it connects me to the server and does not let me through to the server, I am kicked with the inscription "Disconnect"

novel dawn
full nexus
#

paper
1.8

#

one commit behind
it's the log4shell patch
💀

novel dawn
tribal nimbus
#

can anyone edit videos for me?

lusty heath
magic zenithBOT
civic furnace
#

Im geting <chat=.......................-.....................-.....................> when I type somethign on my server. The dots are randoms numbers and letters. How do I fix that?

pliant creek
civic furnace
pliant creek
civic furnace
pliant creek
#

Do you have any plugins with chat features like InteractiveChat, Chat filters?

civic furnace
#

interactivechat

#

thanks

#

its been throwing errors

#

I just got my server back from 2021

#

lol

pliant creek
#

exactly. update the plugin, delete the config (because IC changes stuff in it) and restart the server itll be solved.

civic furnace
#

whats a good envoy plugin ?

#

Heard crazy envoy is terriable for performance?

pliant creek
#

if its something you require, use it. and monitor for any issues later

civic furnace
#

is the best version the paid version?

#

or is there a better alternative

pliant creek
# civic furnace is the best version the paid version?

it is free. paid is optional if youd like to donate. citizens is great just have to make sure you pick the right build number to fit the server version. itll be easiest if it is all the latest version. Google citizens2 jenkins should be first link, is the same link given on its spigot page.

civic furnace
#

Thanks

waxen reef
#

Hello how do i edit the drop spread (if a person dies the loot spreads in all ways i want to make it that it drops below there feet)

#

@pearl summit hi

pearl summit
tawny dust
#

Do you know how to code in Java

pearl summit
#

Im at home in the #help-development channel and rarely stumble into here.
And i have no idea how to configurate anything in that regard. I would just write a few lines of code and fix it.
So sadly nothing i can help you with.

waxen reef
#

I cant code

tawny dust
#

Wait this isn't help dev 💀

#

Mb

waxen reef
tawny dust
#

No

waxen reef
#

But i dont know how to cdoe

#

Code

#

😦

pearl summit
waxen reef
tawny dust
#

?services

magic zenithBOT
waxen reef
#

Thanks

distant harbor
#

?where-am-i

#

?whereami

thorny harness
#

Hello, I am interested in developing a large-scale server that will be focused on a story-line MMO endeavor. What version would you devs recommend for the most compatability for players to maximize playercount?

full nexus
#

Just use latest, 1.21

waxen reef
#

I got itt

west cloak
#

im creating a server and i’ve been searching for good anti cheat plugins and most people say vulcan, is it really worth it for new servers, because i have the money but maybe it could be used for something better at the beginning

#

if someone can tell me what they think it would help

pliant creek
merry elk
pliant creek
#

^ Probably the better choice there if you decide you must add such feature.

heavy island
#

https://streamable.com/egcizl
Is it a bug?
Opening PlayerInventory to player and having shifted slots at bottom view
1.20.2+ Spigot are having this issue. (other versions are not tested)

glacial sundial
#

code or plugin? cc @tribal comet

heavy island
#

clean Spigot, just player.openInventory(otherPlayer.getInventory())

novel dawn
#

its possible give a sound to player (not based on location) ?

glacial sundial
#

Player#playSound or whatever? Is this a development question

novel dawn
#

and in fact it will do the same thing, because the sound is 3 seconds different, I can't keep replicating it every 0.05 seconds because then one sound will be on top of the other

tribal comet
formal oriole
#

I keep getting java.IOException: Unable to connect to remote host: Connection refused when using bungeecord to try to connect to a spigot server, what exactly am I doing wrong? online mode is set on for bungeecord, and off for the spigot server

tawny dust
#

That means the Bungeecord is unable to connect to the Spigot server. There can be many reasons for this

#

Step 1 is to make sure that the Spigot server is actually running

formal oriole
#

it is

tawny dust
#

Is the Bungeecord and server on the same machine

formal oriole
#

yeah

tawny dust
#

Are they running in a container

formal oriole
#

no

tawny dust
#

What ip did you tell Bungeecord to use for the Spigot server

#

localhost?

formal oriole
#

yeah

tawny dust
#

Make sure the Bungeecord and Spigot server are running on different ports

#

and that you have the Spigot port correctly defined in the servers section of the Bungeecord config

formal oriole
#

yep, spigot server is running on localhost:25565 while bungeecord is localhost:25577

tawny dust
#

When connecting to a server the default port is 25565

#

and you want to connect to the Bunggecord not the Spigot server directly

#

Could you send your Bungeecord config and the server.properties from Spigot

#

?paste

magic zenithBOT
formal oriole
tawny dust
#

otherwise you'll have trouble from connecting from anywhere other than the machine with the Bungeecord

formal oriole
#

that worked! Thank you so much!

tawny dust
#

Great :)

civic owl
#

Hi, I downloaded supervote plugin and superbvote, when i start the server it says org.bukkit.plugin.UnknownDependencyException: Votifier, i downloaded 3 notifier plugins but still dont work. solution?

tawny dust
#

That error would suggest you didn't

barren oasis
#

send server logs

tawny dust
#

?paste

magic zenithBOT
pliant creek
civic owl
tawny dust
#

Install NuVotifier and send the entire startup log in a paste

#

?paste

magic zenithBOT
civic owl
tawny dust
#

Spigot

civic owl
civic owl
#

Nevermind I fixed..

#

I thought nuvotifier needs to be in bungeecord plugin

#

not in the main

#

Sorry for wasting time, it was misunderstanding.

sand acorn
#

can someone help me with lands

#

says im at the max limit of 0 lands when i try creating it without op

#

tried using lp

#

but doesnt work when i try doing

#

lp group default permission set lands.ownlands.2* true

#

e

lament sparrow
#

I would like a way to prevent people from falling into the void in certain regions and in each of those regions there is a spawn. For example region1=spawn1, region2=spawn2

sand acorn
strong relic
#

No idea haven't used lands since forever

#

Don't even own it just modded on a server with it

random bridge
#

?img

magic zenithBOT
#

Can't send images? That's because you're not verified! Use !verify to complete verification.
Alternatively, you can upload screenshots to any image hosting site and share the link.

Here's some screenshot utilities that you can use to upload images.
Lightshot: https://prnt.sc
Imgur: https://imgur.com/upload
Flameshot: https://flameshot.org

twin dragon
#

how do i disable the end in spigot?

mellow dock
#

Bukkit.yml iirc

#

Allow-end

twin dragon
#

do bukkit plugins work with spigot?

mellow dock
#

Yes

flat jungle
#

For a mini game server using Spigot and Bungeecord, does the processor have to be 5GHz or is 3.6Ghz sufficient for most?

full nexus
#

Clock speed isn't important, just make sure to have good single core performance

flat jungle
#

With a Intel Xeon E5-2667v4 and 2 Go for each server, how many player do you think 2 Go is able to support?

tawny dust
#

Try it and see

#

it depends on many factors

coarse thicket
#

Hello, if you know, can I know how to teleport a minecraft player from the hub to the last position where it was in survival? , I would need for my minecraft server but I can’t find anything on the internet, Thanks

coarse thicket
#

?????

tawny dust
#

.-.

#

There is no need to ping the staff team

gray sorrel
#

?ask

magic zenithBOT
#

If you have a question, please just ask it. Don't look for staff or topic experts. Don't ask to ask or ask if people are awake or available. Just ask the question to the channel straight out, and wait patiently for a reply. Make sure you use the right channel regarding the topic of your question. Create a thread in case the channel is already in use!

gray sorrel
#

enjoy the timeout

full nexus
gray sorrel
#

ping all the staff online after he'd been ?ask'd after he'd jumped in my dms

full nexus
#

all online staff is crazy 💀

runic rain
#

Thank goodness I was offline!

azure storm
#

💀

twin dragon
#

how do I delete a plugin, do I just remove the .jar file of it

sturdy ravine
fallen flower
#

hi

#

Someone wants to help me make a server, I can give them $20

rapid basin
#

?services

magic zenithBOT
rapid basin
#

@full nexus make this guy a server

#

anything for the GOAT

lament sparrow
#

Can someone help me? I want to remove the ability to write with color codes. Right now I setted to false the following permissions: essentials.chat.color, lpc.colorcodes, lpc.rgbcodes; but they still can write with colors.

mellow dock
lost wedge
#

Could anyone help me with this? b[id=2, serializer=net.minecraft.network.syncher.DataWatcherSerializer$1@2ed6d7a1, value=Optional[empty[siblings=[literal{Weak!}[style={color=red,bold,!italic,!underlined,!strikethrough,!obfuscated}]]]]] im receiving packets in 1.20 and trying to modify the nametag inside the packet so how could i edit this and send it back?

late badger
mystic inlet
#

Unbundling libraries to /home/debian/Season2/bundler
Starting server
Loading libraries, please wait...
[00:54:11] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[00:54:11] [ServerMain/ERROR]: Failed to start the minecraft server
java.nio.file.AccessDeniedException: ./world/session.lock
at java.base/sun.nio.fs.UnixException.translateToIOException(UnixException.java:90) ~[?:?]
at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:106) ~[?:?]
at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:111) ~[?:?]
at java.base/sun.nio.fs.UnixFileSystemProvider.newFileChannel(UnixFileSystemProvider.java:224) ~[?:?]
at java.base/java.nio.channels.FileChannel.open(FileChannel.java:309) ~[?:?]
at java.base/java.nio.channels.FileChannel.open(FileChannel.java:369) ~[?:?]
at net.minecraft.util.SessionLock.a(SourceFile:34) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4286-Spigot-fb8fb72-00fc9fb]
at net.minecraft.world.level.storage.Convertable$ConversionSession.<init>(Convertable.java:518) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4286-Spigot-fb8fb72-00fc9fb]
at net.minecraft.world.level.storage.Convertable.validateAndCreateAccess(Convertable.java:424) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4286-Spigot-fb8fb72-00fc9fb]
at net.minecraft.server.Main.main(Main.java:172) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4286-Spigot-fb8fb72-00fc9fb]
at org.bukkit.craftbukkit.Main.main(Main.java:215) ~[spigot-1.21-R0.1-SNAPSHOT.jar:4286-Spigot-fb8fb72-00fc9fb]
at org.bukkit.craftbukkit.bootstrap.Main.lambda$run$0(Main.java:60) ~[spigot-1.21.jar:?]
at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]

#

Someone help with this?

#

There is no such session.lock file

#

Please

#

Anyone help?

#

There is just no file...

molten token
#

ok show the world folder.

mystic inlet
#

debian@vps-dba398ba:~/Season2$ cd world
debian@vps-dba398ba:~/Season2/world$ ls
data datapacks DIM-1 DIM1 icon.png level.dat level.dat_mcr level.dat_old poi region
debian@vps-dba398ba:~/Season2/world$

#

There is just no such thing as the file

molten token
#

do ls -la

mystic inlet
#

total 48
drwxr-xr-x 8 root root 4096 Aug 7 00:31 .
drwxr-xr-x 16 debian debian 4096 Aug 7 00:32 ..
drwxr-xr-x 2 root root 4096 Aug 7 00:31 data
drwxr-xr-x 5 root root 4096 Aug 7 00:31 datapacks
drwxr-xr-x 4 root root 4096 Aug 7 00:31 DIM-1
drwxr-xr-x 3 root root 4096 Aug 7 00:31 DIM1
-rw-r--r-- 1 root root 3692 Aug 7 00:31 icon.png
-rw-r--r-- 1 root root 1858 Aug 7 00:31 level.dat
-rw-r--r-- 1 root root 514 Aug 7 00:31 level.dat_mcr
-rw-r--r-- 1 root root 1865 Aug 7 00:31 level.dat_old
drwxr-xr-x 2 root root 4096 Aug 7 00:31 poi
drwxr-xr-x 2 root root 4096 Aug 7 00:31 region

molten token
#
cd ..
find . -type f -iname session.lock
mystic inlet
#

No responce

#

(I mean litterally, nothing came out)

molten token
#

touch world/session.lock and try to start it i guess

#

wait

#

is this a new server or an already existing one

mystic inlet
#

touch: cannot touch 'world/session.lock': Permission denied

#

Already existing one

molten token
#

why is everything owned by root

#

i think this is the issue

mystic inlet
#

Because it is mine?

#

Ok?

half rover
molten token
#

are you using the root user to run your server??

mystic inlet
#

IDK

molten token
#

whoami

#

output please

mystic inlet
#

oh

#

root

molten token
#

mmm ok

mystic inlet
#

So what should I do?

half rover
#

sudo su yes hehe

molten token
#

why would root has permission denied then...

mystic inlet
molten token
#

go outside your server folder, cd .. again

half rover
molten token
#

chown -R root:root <server folder name>

half rover
#

what software are u even using 😭

#

is it ubuntu, debian

molten token
mystic inlet
#

Oh

half rover
#

soso

mystic inlet
#

wait

#

sudo su is useful

#

Thanks

#

That just fixed it...

half rover
#

T-T

molten token
#

so you weren't root...

mystic inlet
#

guess I need to run it as root everytime now

#

No?

#

I was another init user?

molten token
#

ok

half rover
#

sudo su will make every cmd

#

run

#

as root user

#

you ARE root

molten token
#

well, sure. but i don't recommend you run your server as root. but, ok. go ahead.

half rover
#

but not actulaly logged in

mystic inlet
#

wtf

half rover
#

that was very convienient

mystic inlet
#

Just found

#

50+ errors

half rover
#

daaaaaaaaaaaaaaaaamn

#

send me

#

i wanna do nerdy stuff and help us

mystic inlet
half rover
#

u*

molten token
#

nice your world is corrupted

half rover
#

chunk stuff

molten token
#

good luck

half rover
#

yah

#

try making anotha world

#

since uhh

#

yea....

#

unless.

#

wait

#

did you change server versions?

mystic inlet
#

Well IDK

half rover
#

recently or before

mystic inlet
#

I don't change it?

molten token
#

if it's an important world, you can try to log in and regenerate the broken chunks with worldedit, but those chunks are gone.

mystic inlet
#

Wait

#

This is just a skyblock world i downloaded XD

half rover
#

bru

#

skyblock worlds are prob 1.8

mystic inlet
#

So does it affect anything?

#

IDK

half rover
#

you're running 1.17's generation with 1.8

#

data

mystic inlet
#

wait

#

This is the one I downloaded from...

#

So is that a big problem?

#

Pretty sure that is up to date?

#

So any problems?

half rover
#

probably..

#

idk

mystic inlet
#

So why is it broken lol

#

Wait it litterally overrided my server.properties settings...

half rover
#

uhm

#

uhhh

#

erm

#

why just like

#

not use it

mystic inlet
#

Oh

#

Not use what?

half rover
#

not use the

#

map

#

..

mystic inlet
#

umm

#

well

#

it worked in the end

half rover
#

still

#

i wouldnt recommend it...

west cloak
#
io.netty.handler.codec.DecoderException: java.lang.IndexOutOfBoundsException: readerIndex(6) + length(1) exceeds writerIndex(6): PooledSlicedByteBuf(ridx: 6, widx: 6, cap: 6/6, unwrapped: PooledUnsafeDirectByteBuf(ridx: 7, widx: 7, cap: 2048))
    at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:98)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
    at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
    at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
    at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
    at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1407)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
    at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:918)
    at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:799)
    at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:501)
    at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:399)
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:994)
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
    at java.base/java.lang.Thread.run(Thread.java:1583)
Caused by: java.lang.IndexOutOfBoundsException: readerIndex(6) + length(1) exceeds writerIndex(6): PooledSlicedByteBuf(ridx: 6, widx: 6, cap: 6/6, unwrapped: PooledUnsafeDirectByteBuf(ridx: 7, widx: 7, cap: 2048))
    at io.netty.buffer.AbstractByteBuf.checkReadableBytes0(AbstractByteBuf.java:1442)
    at io.netty.buffer.AbstractByteBuf.readByte(AbstractByteBuf.java:730)
    at net.md_5.bungee.protocol.DefinedPacket.readVarInt(DefinedPacket.java:245)
    at net.md_5.bungee.protocol.DefinedPacket.readVarInt(DefinedPacket.java:235)
    at net.md_5.bungee.protocol.DefinedPacket.readString(DefinedPacket.java:79)
    at net.md_5.bungee.protocol.DefinedPacket.readString(DefinedPacket.java:74)
    at net.md_5.bungee.protocol.packet.LoginPayloadRequest.read(LoginPayloadRequest.java:27)
    at net.md_5.bungee.protocol.DefinedPacket.read(DefinedPacket.java:529)
    at net.md_5.bungee.protocol.DefinedPacket.read(DefinedPacket.java:524)
    at net.md_5.bungee.protocol.MinecraftDecoder.decode(MinecraftDecoder.java:42)
    at net.md_5.bungee.protocol.MinecraftDecoder.decode(MinecraftDecoder.java:11)
    at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:88)
    ... 22 more```
#
08:52:42 [INFO] [OrionSan] <-> ServerConnector [hub] has connected
08:52:42 [SEVERE] [OrionSan] -> UpstreamBridge - encountered exception
io.netty.handler.codec.EncoderException: java.lang.IllegalArgumentException: Cannot get ID for packet class net.md_5.bungee.protocol.packet.StartConfiguration in phase CONFIGURATION with direction TO_CLIENT
    at io.netty.handler.codec.MessageToByteEncoder.write(MessageToByteEncoder.java:125)
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:893)
    at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:956)
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:982)
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:950)
    at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:1019)
    at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:310)
    at net.md_5.bungee.netty.ChannelWrapper.write(ChannelWrapper.java:90)
    at net.md_5.bungee.UserConnection$1.sendPacket(UserConnection.java:155)
    at net.md_5.bungee.ServerConnector.cutThrough(ServerConnector.java:364)
    at net.md_5.bungee.ServerConnector.handle(ServerConnector.java:158)
    at net.md_5.bungee.protocol.packet.LoginSuccess.handle(LoginSuccess.java:73)
    at net.md_5.bungee.netty.HandlerBoss.channelRead(HandlerBoss.java:128)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
    at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:289)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
    at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
    at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
    at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
    at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
#

any idea of this problem?

small rain
#

i have this problem with essentials plugin, and it makes the server laggy, how can i fix it ?

[05:36:00 INFO]: [Essentials] CommandBlock at -3,43,20 issued server command: /tp @a[x=-59,y=101,z=-70,dx=1,dy=1,dz=0] 73 87 -46 -90 0

mellow dock
#

Remove the command block?

sour tartan
#

Wot

molten token
#

Just casually ignored what was told to him

#

Your appeal will not be processed via discord.

narrow coyote
#

That's not a spigot ban lol

molten token
#

you're right

#

even better

prisma garnet
shy magnet
#

Guys I bind srv record to minecraft server but still shows can't connect error did I make something wrong?

#

wait I am dumb as fuck ._. server was offline

#

nah still doesn't work

shy magnet
#

heyy anyone?

pliant creek
#

It’s possible that it takes a few hours for the domain to apply. Check your server by using its normal ip first

shy magnet
full nexus
#

dns can take a bit to apply

#

nvm that's cloudflare

shy magnet
#

wtf could interfere with daynight cycle?

#

its always day

dapper ocean
#

Are u sure u haven't set doDaylightCycle gamerule to false ?

full nexus
shy magnet
full nexus
#

the font

agile zenith
small rain
#

and where

agile zenith
#

If you read the message you sent reeeaaaalll carefully you will be able to figure it out

small rain
#

i know

#

its essintals

#

but i couldn't find where exactly

#

is it normal thing ?

agile zenith
small rain
agile zenith
#

There are two sets of coordinates in that message 😮‍💨

small rain
#

its random

#

the log is full

#

with it

#

so its not about it

#

its something in the files

#

cuz i have another server with the same plugin

#

it doesn't have it

trail ginkgo
#

Anyone know why i cant write without op in my server using nchat and luckperms? Ive tried a lot of commands in game and didint worked

#

I already tried to use the editor

trail ginkgo
#

I just tried to use the chat local and global

#

And i revive the msg “nchat.channel.local.chat: you dont have permission to talk in this channel”

trail ginkgo
barren oasis
#

maybe nchat is broken

#

check permission with /lp group default permission info

trail ginkgo
#

O recived that

#

Maybe i need to clear the permission and just add the necessary?

carmine reef
#

Hey guys, there is no fire damage/fire spread on my server, how do I enable this? I have changed the game rulse to enable (doFireTick true)

hushed mango
#

Yall i need to get this done by the end of the day

#

i need help

#

could not connect to a default or fallback server. Incorrectly configured addres/port firewall? AnnotatedNoRouteToHostException : null: / myserveripandport

#

the hell do i do

tawny dust
hushed mango
#

u sure? My friend also got that issue

tawny dust
#

I meant the Bungeecords internet connection

#

which is quite odd

hushed mango
#

sooo how do i fix this..?

tawny dust
#

ensure it can properly make internet connections

hushed mango
#

also the ip and port is ok cuz i double checked

hushed mango
tawny dust
hushed mango
#

im dumb

#

as hell

elfin python
#

Is there an anti x ray already in spigot yml?

hushed mango
#

yes

elfin python
#

I found this old picture

elfin python
hushed mango
#

i dunno

#

i got paperspigot

#

and its there

elfin python
hushed mango
#

yh

elfin python
#

what version?

full nexus
#

?whereami

hushed mango
#

1.19.4 rn

hushed mango
#

even after changing the port

carmine reef
fallow gust
#

update, there was a bug in a recent spigot commit that has since been fixed

hollow token
#

yo so I tried transferring my mc world to a different server

#

and for some reason the nether dimension always resets

#

is there some sort of fancy file that could cause that?

#

I have a copy of both the new and the old server

#

when I copy just the nether portion from the old one and put it onto the new one it just defaults to a new nether

#

and when i start up the old server and join and go into the nether the old nether is there

hollow token
#

Nevermind

west cloak
#

is there any way to allow string duplication on papermc?

fallow gust
#

?whereami

west cloak
#

hey there is papermc support on the spigotmc blog

fallow gust
#

papermc has its own discord for such questions, this discord doesn't offer support for paper

#

¯_(ツ)_/¯

drowsy burrow
#

hiii

#

anyone know how to change this?

#

like the picture nothing else

full nexus
#

NVM THIS WAS NOT HELP-DEV

drowsy burrow
#

nope

full nexus
drowsy burrow
#

thx

zealous linden
#

Moin, ich suche derzeit einen Hauptprogrammierer für einen Minecraft server falls ihr darauf lust habt meldet euch, natürlich springt dabei was rum.

full nexus
#

english only

zealous linden
#

i dont search for english people

full nexus
#

#general message and check this out

full nexus
zealous linden
#

ok

fallow gust
#

Yea, fire spread being buggy was a recent bug fix

shy magnet
#

Hi, can multiverse-core interfere with daylight cycle? it is always day in world and I can't figure it out why
time set is not working neither does dodaylight cycle gamerule

rapid basin
shy magnet
#

I don't think they do something

#

other plugins shouldn't be problem

#

I only have like utility/anti-hacking plugins

rapid basin
#

I don't use world guard, but I do use essential, so I would just guess world guard maybe?

shy magnet
shy magnet
rapid basin
#

Oh

rapid basin
#

That's all I could think of

agile zenith
#

Could try a binary search

shy magnet
#

wym

agile zenith
clever falcon
#

I keep getting Java Exception has occured and online articles tell me it's a version problem. Could anyone help? I have 20.0.2

magic zenithBOT
clever falcon
tawny dust
#

The error message you're getting

clever falcon
#

I can't paste the image

tawny dust
#

Try not to send text as images

clever falcon
#

yeah but in windows I only get an error window and no copyable text

tawny dust
#

?img

magic zenithBOT
#

Can't send images? That's because you're not verified! Use !verify to complete verification.
Alternatively, you can upload screenshots to any image hosting site and share the link.

Here's some screenshot utilities that you can use to upload images.
Lightshot: https://prnt.sc
Imgur: https://imgur.com/upload
Flameshot: https://flameshot.org

clever falcon
#

when I launch the jar

#

!verify

magic zenithBOT
#

Usage: !verify <forums username>

tawny dust
#

You can open the log file

#

to get the text

#

I also don't recommend double clicking the jar

#

Use a start bat file instead

clever falcon
#

!verify

magic zenithBOT
#

Usage: !verify <forums username>

clever falcon
#

!verify TrustMeHorse

magic zenithBOT
#

A private message has been sent to your SpigotMC.org account for verification!

clever falcon
tawny dust
#

Yeah use a bat file

#

or just cmd

#

It will give a more detailed error

clever falcon
tawny dust
#

Don't use the original jar

#

When you run BuildTools don't open any of the folders it generated

#

the finished jar will be placed in the directory you ran it from

clever falcon
tawny dust
#

Add pause on a new line

clever falcon
tawny dust
#

You forgot to add .jar to the name

clever falcon
shy magnet
#

So I've found out that mobs don't burn on daylight maybe it is an visual bug?

#

cuz sun is stuck in one place

#

it seems problem was in essentials ptime idk how it was messed up I reseted it and now it works

tawny dust
#

So you had ptime set

#

That would be why

shy magnet
#

I don't have

#

thats the part that bothers me

#

and when I rejoin server ptime resets and time is stuck again

#

idk wtf is wrong

agile zenith
#

Update essentials

carmine reef
fallow gust
#

using build tools to build the jar

shy magnet
#

wtf is going on ptime reset fixes it but needs to be manually executed on every join

tawny dust
#

not june 13th

#

You're looking at an unofficial site providing outdated builds

carmine reef
stiff raft
#

Could anyone make a plug-in for a Smp

#

For me

fierce merlin
#

?services

magic zenithBOT
rapid basin
stiff raft
#

I can dm you the plug-in

#

Or inv u to the server

rapid basin
stiff raft
#

Nah I was waiting for you to respond😂

#

One sec

rapid basin
#

oh 💀

stiff raft
#

I sent the plug-ins

#

Sure bro we just need some people to develop the plugins I can send to them

rapid basin
#

"morning chuck" "morning bill" "hows the wife?" "oh you know, the usual" ahh message

stiff raft
#

Fr

full nexus
#

@hardy grail do you think this kid is a selfbot

#

is bro gpt3

analog sentinel
#

yeah fr fr

#

or just someone trying to pretend to be a bot

full nexus
#

Yo, what's crackin'? Glad to be on the SpigotMC server, fam! With a massive crew of 26,419 members, we're practically a small country now, lol. Hope everyone's feeling awesome tonight! That GIF is straight fire: whar.gif. I'm here to chat or lend a hand if anyone needs it. Let's keep the good vibes rollin' and party like it's Friday every day!

analog sentinel
#

"getting freaky on a friday night yeah"

#

almost friday