#help-server
1 messages · Page 118 of 1

Anyone know how to resolve this?
what do you do and if can paste the logs of the server when you get disconnected
?paste
maybe you can try in latest version the logs you provide not show any strange..
That is the latest, is it worth me restarting the server? 🙂
Great I'll update it now 🙂
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
still strange why the result is empty i mean they are crafting something ._.
The result is empty because complex recipes cannot have a result without knowing their input
What would the result be for the shield recipe that combines it with a banner
ohhh
then maybe can just move the precondition for result to "child" classes for test that...
Well you cannot just remove a precondition from a parent constructor
because that parent constructor is API 
just fork spigot smh
but you cant call the parent just the ShapedRecipe, ShapelessRecipe
but already build the itemstack empty before then... xd

wat
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
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
no? ._.
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 
but yea, moving the preconditions to the children would also work
may be cleaner tbh
well bitbucket not support co-author but can stilll add that if you agree
I mean, I think you should not do it that way lol
looks better than move the check xd
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
oh yeah i forget the two constructors xd
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 
just upgrade it, what could possibly go wrong
You could hack around a bit and create a static protected ItemStack check(ItemStack) { precon(stack); return stack } and then super(key, check(result)) in the constructors
[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? 🙂
net.minecraft.server.EntityPlayer just doesn't exist
outside of this maybe being some scuffed 1.8 version bs
Understood, I'll remove the plugin then 🙂
Well you don't have to remove it, just find the version that is applicable to whatever spigot version you are running
[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'

I'll switch over to using Ess Discord plugin 🙂
I'm 90% certain this is causing the issues. 🙂
Seems like I need to update ViaVersion.
thanks, i mean i handle what means just feel strange that "hack" but works xd
This is really odd, I've updated both plugins (via & backwards). and I'm still getting the error 🤔
it would be helpful if you would just share the whole log
?paste
Sorry about that! 🙂
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
Will do 🙂
the restart-script (with value ./start.bat) option in the spigot.yml config doesnt work properly. when restarting cmd prompt says this (image)
Did you try it without the dot
Also you can handle automatic restarts after stops from the script itself
That looks like an issue inside of the bat file
show your start script
tried it without the dot, doesnt even try to execute it, no cmd prompt pops up
theres no issue with the bat file as far as im aware of
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
im on windows, windows doesnt support .sh files
well if i type stop i would love for the server to stop and not restart
since when was that a thing
then why are you after the restart config? with the script I gave you would press CTRL+C during the wait time which can be increased more than 3 seconds if you like to stop the server instead of auto start again.
why does it exist
:START_SERVER
java -jar -Xmx8G -Xms8G spigot-1.21.jar
ECHO Restarting in 5s
TIMEOUT 5
GOTO START_SERVER```
and what does that one do?
no not that
i want it so that
when i type restart in the console
for it to restart
dont type restart
and when i type to stop i would like it to stop
then i guess ill js restart the server manually myself
just gave me an idea for a dumb ass start script + helper plugin combo
whats that supposed to mean
there is a start up script generator online
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
Is it possible to make it so only one mace is craftable in a server?
How can I make my 1.21 aternos server anti xray if im using spigot?
hi everyone, do you have any plugins to custom worldgen to Mc 1.21 ?
how do i disable the ">", so it stops spamming my console?
Can you try update your server?
the issue was fixed https://hub.spigotmc.org/stash/projects/SPIGOT/repos/bukkit/commits/2ec53f498e32b3af989cb24672fc54dfab087154#src%2Fmain%2Fjava%2Forg%2Fbukkit%2Finventory%2FCraftingRecipe.java
okay sick thanks, how do I update it? I use bisect hosting
check the docs in the hosting for update your server or open a ticket with them for assistance
okay sick thanks!
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
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.
how can i fix it?
thats a cool path
Thanks man!
creative? world edit? survival? or pre downloaded world
The terraforming is mostly worldedit
ah
Can anyone help me?
update java
To which version
uh
HMMM
whatever 55 correlates to
java 11
are u sure it will work?
but i want to start with specificed java version
go to cmd prompt or whatever and type java -version
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)
also i have a question
can a 1.16.5 minecraft server work with java jdk 17?
17
can work with jdk 17?
Yes
because so much plugin just work on java 17 or higher
The plugin you mentioned that has an error will work so long as you have j11 or later version
1.16 requires j17 iirc
ok thanks
oh noo
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
This is caused by MC-272506. Try to avoid switching servers too fast
Oh right, is there a way to fix it? 🙂
yeah second part of my message
Or wait for the next game update
If you stay on the first server for a while it should be fine
Nothing is wrong in what you sent
hello what to do if i request a refund and the creator banned me
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..
How can I make my 1.21 aternos server anti xray if im using spigot?
if therese non pre existing plugin on the aternos website you cant iirc
No
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
Could always try updating Spigot too
is there any way to convert a section of blocks to a bunch of block displays
What kind of section? Chunk, or something such as a world edit selection. Do keep in mind each block would be turning into a Entity which could cause lag
nah nvm, axiom had what I was looking for
my plugin should be able to mitigate this
the sparkles lmao
anyone know a method to randomize all online people between 2 groups?
Easiest method would probably be to create on array / list and shuffle it to your liking and then just split it in half and assign the first half to group A and the second half to group B.
All other methods I can think of require some extra logic or attention and this one is pretty straight forward and fail-prove.
i have no idea on how to do this, i don't code
Well then there is no point in explaining it?
Why or for what do you ask then?
You just said "anyone know a method"
true but i was more looking for a plugin that could do this
i was unable to find anything myself and was curious if other people have a preexisting solution to this
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
luck perms groups
all i require is all online people to be randomised between two groups on command use so that the teams are evenly shuffled for pvp
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.
understood, i'll look into trying to do it myself then, thanks!
If you want to code it yourself, please consider learning proper Java first then and the resources that Spigot provide for starting any plugin development - there is quite a few steps before you should start tackling a plugin project that will run on a live server.
?basics
Here are some links to get you started on learning Java:
- https://www.codecademy.com/learn/learn-java
- https://www.sololearn.com/learning/1068
- https://www.learnjavaonline.org/
- https://programmingbydoing.com/
- https://docs.oracle.com/javase/tutorial/java/index.html
The last one is the only official one, however some of those concepts assume that you already know a bit about programming.
?spd
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?
Ask PandaSpigot for help
Is this channel okay to ask about datapack problems?
https://discord.gg/QAFXFtZ is probably the best place
tysm <3
i always get kicked becauese of the packet rate limit when i join
what if you remove ALL plugins?
Ist not my server
Then you need to ask server owner
Make sure you don't have any mods installed
How can i request a refund for a plugin?
You usually can't. It is something you have to talk to the dev about, you can send them a direct message through spigot.
The problem is that the dev is saying the plugin works on 1.21, but it doesnt. Ive tried contacting them and no response. I don't want to get banned from SpigotMC for doing a chargeback on it because i have other plugins purchased
Are you sure its not missing a dependency or so? Any errors?
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
How do i allow tnt duplication
Spigot does not prevent tnt duplication
if you're using Paper you should ask them
Send the error from the console
?paste
Also you're most likely expected to install an economy plugin together with Vault
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
@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?
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
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
You are a complete dickhead
Because their plugin doesn't work?
i don't understand how that makes me a dickhead
You made no attempt to handle this dispute with the owner, so instead go straight for a chargeback
That is dickhead activity
Did you not read what i said?
omd get a life
Send your logs
someone charging back on plugins???
Then it's your issue at this point, if you don't even want to try to fix the issue?
I did try fix the issue
am i supposed to just code the whole thing myself?
no you're supposed to send your logs
kek
Some people don't understand the impact of a chargeback man
Even more so if it ends up being (incorrectly) successful
Some people don't understand the impact of a plugin that doesnt work man
Some people don't understand the impact of seeking help man
Send your logs or fuck off at this point
I did seek help
now I'm pissed
Be pissed then
Ok dickhead
👍
It's almost like servers keep a file of logs
they do
but im not sending them to you
...
i dont need help for a plugin i don't physically own
well no, when you chargeback a plugin, it goes out of your purchased resources
i can't chargeback for something i never purchased?
I guess we'll consider it a 15$ purchase to get you the fuck out of their life
👍
buddy can't afford a plugin
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.
based!
I'm not paying a dev for something that doesn't work
skill issue, maybe do research on the plugin before charging back
I did do research thanks
nuh uh

No you wanted to be a cuk
cant say it with the c of fucking course
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
what was the plugin name?
I'd at least try to see if IM the issue first kek
Shit the prosecution rests at this point
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.
👍
👍
👍
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
The chat session update error is a bug from Mojang
Should be fixed next update
To prevent it try to avoid switching servers too fast
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 😭
I alwas get kicked because of the packet limit when i join
My plugin Antipopup might fix your issue
If you test it let me know if it helps
You too please
If this is related
the shameless self promo
If this works, he has all the right to promote some good stuff he did to help someone fix a big error.
Why can’t I join my bungee network 1.21 with a forge client and no mods installed?
It says network protocol error
No ist not related (but i already fixed it)
why did my 1.21 spigot start saying outdated build, and then when I got latest from BuildTools it gave me 1.20.6??
Use --rev 1.21 to build 1.21
or select it in the GUI
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/
?tas
wym ok
as in no virus
?tas
you can't use an antivirus on jars
so
good luck
you can use optic's antimalware
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
?img
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
?
this is a reply to this
oh am blind
wait how much of a problam is it that this is run on a raspberry pi 5?
Very
oh
That can take a good while
been using it for this server for over 1-2 months
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
is builtbybit trustworthy?
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
probably like every rpg plugin
Your pc will run a mc server a lot better than a pi kek
lol, real
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
or if you only make paper plugins 😛
Modrinth
Hangar
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
For anticheat to work it will need to be constantly checking such events, it will cost a little resources. Continue with the one you find best, even if it has some false results, dont kick, use active staff to check it out.
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
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.
might be the lates but try /version in game or console
actually, that bug is fixed its just that the patch hasent shown up yet. rebuild the jar with build tools and try again
Sorry, I dont quite understand. Is there somewhere I can find an explanation on how to rebuild the jar?
Sure! If you have the capability to replace the server jar, this is great. Here is a link to the "buildtools" which will compile the latest patches each time you run it. be sure you have java-21. https://www.spigotmc.org/wiki/buildtools/
Thank you so much, This has completely fixed the crafting problem. I am noticing fire continues to not spread, any ideas on why this might be, or if it is related to spigot at all in the first place?
gamerule doFireTick true something like this, you should see tab complete. if thats true and it still does not spread, maybe it is a plugin like WorldGuard?
I am thinking it might have something to do with WorldGuard. I will do some investigating, thank you so much for your help
theres also multiverse which then youd need to use mvrule doFireTick true, in each world. worldguard yea it may, you could toss it out and restart to test it if thats possible
they do have a fire spread flag tho. rg flag __global__ fire-spread allow or true. i think
Sorry, Just realizing our server is using CoreProtect instead of worldguard
Entirely different things. CoreProtect will not cause fire spread disable. Other than what I mentioned you’ll have to do research. It is possible it’s a spigot bug but that’s tough to tell unless you remove all plugins and it still happens
Alright, Thank you so much. I will investigate some more and see if I can find what is causing the issue. You've helped alot, I really appreciate it!
Anyone ever had an issue with pvx where it seems to have cleared all vault data by itself?
If you ever need the answer
Are you sure its making you join? cuz discord has a feature that lets you preview other servers without joining, by clicking a link such as that.
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
If you world edit it in and just rewire all the redstone (I'd connect all your circuits) then just send a pulse it should fix itself
I know it's a total pain but world edit and other related plugins like to break redstone in this way
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
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
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
No worries, I'd still try this
or just send a pulse through each circuit, should fix itself
hate sounding dumb, but I'll have to try and find out how to do that lol
Pulse as in a source of power ie: redstone torch, block, pressure plate, etc
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
Hmm yeah maybe SOL, like I said world edit and other like to break redstone
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
Perhaps I'm wrong in this regard, I just swore I've done it before and it ended up fixing itself, but then again I've not much experience with redstone and they were simple circuits
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!
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!
install coreprotect ;)
Oh gee thanks joch where were you last night
You mean this?
doLimitedCrafting disables crafting custome recipes (like lifesteal heart) anyway to fix this i need help asap
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?
Yeah I told them that last time
[13:13:23] [PandaSpigot Watchdog Thread/INFO]: Startup script './start.sh' does not exist! Stopping server.
?
not the causes of the probelm
That just means it can't auto-restart it
The only shit they said was about the java version? wtf? now the java version will stop the thread?
Good to know
Since I have no idea how PandaSpigot Watchdog considers the server / thread stopped and what it could have to do with the Java version, one can only speculate
I doubt this is an issue with Java version
is there a datapack/plugin that makes you need the dragon egg to reborn it?
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"
fixed?
help me olivo 😭
https://github.com/ProjectKig/KigPaper someone knows?
u are cringe
can anyone edit videos for me?
?services might help
If you wish to request or offer development/art/building/administration services, please do so at https://www.spigotmc.org/forums/services-recruitment-v2.54/
Im geting <chat=.......................-.....................-.....................> when I type somethign on my server. The dots are randoms numbers and letters. How do I fix that?
remove all the plugins and see if it still happens. if it is fixed then add back a couple plugins at a time until you figure out which one caused it
u sure its from a plugin though? Not from MC itself? cuz it doesn't show in console
can never be sure. but at the moment how do we know without trying
Uh seeing if anyone else has had this problem before?
Do you have any plugins with chat features like InteractiveChat, Chat filters?
there u go
interactivechat
thanks
its been throwing errors
I just got my server back from 2021
lol
exactly. update the plugin, delete the config (because IC changes stuff in it) and restart the server itll be solved.
That one isnt bad. In some chances a envoy could cause lag but it should not be noticeable.
if its something you require, use it. and monitor for any issues later
K and for citizens
is the best version the paid version?
or is there a better alternative
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.
Thanks
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

Can you help there
Do you know how to code in Java
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.
I cant code
Ok thanks
What
Shouod i ask at #help-development ?
No
Then this is the right channel. But the answer will most likely be:
Search for a plugin that fixes this or a developer who can write some lines for you.
I searched for 2h and i found nothing
Are you an dev?
?services
If you wish to request or offer development/art/building/administration services, please do so at https://www.spigotmc.org/forums/services-recruitment-v2.54/
Thanks
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?
Just use latest, 1.21
I got itt
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
if you dont have a decent size playerbase and its not a pvp themed server, it is not too important right now no.
okay thanks
Go with grim
^ Probably the better choice there if you decide you must add such feature.
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)
code or plugin? cc @tribal comet
clean Spigot, just player.openInventory(otherPlayer.getInventory())
its possible give a sound to player (not based on location) ?
Player#playSound or whatever? Is this a development question
I have a sound that lasts 3 seconds. so I'm going to have to give the sound every tick for the player to hear
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
I'll take a look idk If there's much we can do because of how shitty opening a player inv on the server is
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
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
it is
Is the Bungeecord and server on the same machine
yeah
Are they running in a container
no
yeah
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
yep, spigot server is running on localhost:25565 while bungeecord is localhost:25577
You probably want to swap those ports
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
You want to keep Bungeecord host: set 0.0.0.0:25565
otherwise you'll have trouble from connecting from anywhere other than the machine with the Bungeecord
that worked! Thank you so much!
Great :)
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?
That error would suggest you didn't
check /plugins
send server logs
?paste
Try NuVotifier. And set it up
I used nuvotifier, Ga listener, votifier... same problem.
Bungeecord or the main one?
Spigot
Nevermind I fixed..
I thought nuvotifier needs to be in bungeecord plugin
not in the main
Sorry for wasting time, it was misunderstanding.
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
Config
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
where in config i cant find it
No idea haven't used lands since forever
Don't even own it just modded on a server with it
?img
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
how do i disable the end in spigot?
do bukkit plugins work with spigot?
Yes
For a mini game server using Spigot and Bungeecord, does the processor have to be 5GHz or is 3.6Ghz sufficient for most?
Clock speed isn't important, just make sure to have good single core performance
With a Intel Xeon E5-2667v4 and 2 Go for each server, how many player do you think 2 Go is able to support?
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
?????
?ask
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!
enjoy the timeout
what did bro do
ping all the staff online after he'd been ?ask'd after he'd jumped in my dms
all online staff is crazy 💀
Thank goodness I was offline!
💀
how do I delete a plugin, do I just remove the .jar file of it
Yes, then restart the server, that's the how to of removing plugins from a server
?services
If you wish to request or offer development/art/building/administration services, please do so at https://www.spigotmc.org/forums/services-recruitment-v2.54/
dw bro, because your the 🐐 im sure someone can help you for free 🙏
@full nexus make this guy a server
anything for the GOAT
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.
So that’s why I got a DM request
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?
If you want, you can remove the color placeholder from the LPC if you have it there, but then you won't be able to write in color, even you will always have to write & to write in color
ok thank you
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...
ok show the world folder.
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
do ls -la
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
cd ..
find . -type f -iname session.lock
touch world/session.lock and try to start it i guess
wait
is this a new server or an already existing one
sudo su?
are you using the root user to run your server??
IDK
mmm ok
So what should I do?
sudo su yes hehe
why would root has permission denied then...
nothing came out
go outside your server folder, cd .. again
sudo su and nothin?
chown -R root:root <server folder name>
he's already root, sudo su will do nothing
Oh
soso
so you weren't root...
well, sure. but i don't recommend you run your server as root. but, ok. go ahead.
but not actulaly logged in
wtf
that was very convienient
u*
nice your world is corrupted
chunk stuff
good luck
yah
try making anotha world
since uhh
yea....
unless.
wait
did you change server versions?
recently or before
I don't change it?
if it's an important world, you can try to log in and regenerate the broken chunks with worldedit, but those chunks are gone.
wait
This is the one I downloaded from...
So is that a big problem?
Pretty sure that is up to date?
So any problems?
So why is it broken lol
Wait it litterally overrided my server.properties settings...
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?
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
Remove the command block?
Wot
Just casually ignored what was told to him
Your appeal will not be processed via discord.
That's not a spigot ban lol
ok what plugins and server version / type
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
heyy anyone?
Make sure you typed in the ip and port correctly on both the srv and minecaft list
It’s possible that it takes a few hours for the domain to apply. Check your server by using its normal ip first
both are correct tho anyways it started working
Are u sure u haven't set doDaylightCycle gamerule to false ?
omg is that beaver upper
it's set to true
wym
the font
NLogin 💀
If you read the message you sent reeeaaaalll carefully you will be able to figure it out
It tells you in the message
you mean /tp ?
There are two sets of coordinates in that message 😮💨
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
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
what command do you wrote
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”
In game i used
/lp group default permission set nchat.use true
/lp group default permission set nchat.chat true
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)
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
Sounds like an issue with your internet connection
u sure? My friend also got that issue
sooo how do i fix this..?
ensure it can properly make internet connections
also the ip and port is ok cuz i double checked
how? Im new into that all bungeecord things
well it's not bungeecord specific
acually the port was wrong because i forgot to save the config
im dumb
as hell
Is there an anti x ray already in spigot yml?
yes
I found this old picture
for paper only or spigot
in spigot.yml?
yh
what version?
?whereami
1.19.4 rn
lol it still doesnt work
even after changing the port
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)
https://imgur.com/Q23Gi7K
https://imgur.com/yZe6qhm
update, there was a bug in a recent spigot commit that has since been fixed
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
Nevermind
is there any way to allow string duplication on papermc?
?whereami
hey there is papermc support on the spigotmc blog
papermc has its own discord for such questions, this discord doesn't offer support for paper
¯_(ツ)_/¯
NVM THIS WAS NOT HELP-DEV
nope
The home of Spigot a high performance, no lag customized CraftBukkit Minecraft server API, and BungeeCord, the cloud server proxy.
thx
Moin, ich suche derzeit einen Hauptprogrammierer für einen Minecraft server falls ihr darauf lust habt meldet euch, natürlich springt dabei was rum.
english only
i dont search for english people
#general message and check this out
this server is english only
ok
The fire thingy?
Yea, fire spread being buggy was a recent bug fix
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
It shouldn't interfere with daylight...
then what could be world guard or essential?
I don't think they do something
other plugins shouldn't be problem
I only have like utility/anti-hacking plugins
I don't use world guard, but I do use essential, so I would just guess world guard maybe?
there are no regions setted up that should be interfering
Oh
not sure if multiverse has a thing for that with /mv modify maybe?
That's all I could think of
Could try a binary search
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
Send the error
?paste
What should I send there?
The error message you're getting
I can't paste the image
Try not to send text as images
yeah but in windows I only get an error window and no copyable text
?img
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
Usage: !verify <forums username>
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
!verify
Usage: !verify <forums username>
!verify TrustMeHorse
A private message has been sent to your SpigotMC.org account for verification!
java -jar original-spigot-1.21-R0.1-SNAPSHOT
this is what I use and nothing happens
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
java -jar spigot-1.21
i used this bat and again it closes the command in the first second
Add pause on a new line
You forgot to add .jar to the name
Oh my god thank you it worked. I'm such a noobie, I really appreciate your help
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
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
Update essentials
How do I get that version? Last I see is Spigot 1.21 release date june 13 2024, and it's the one I have.
using build tools to build the jar
already
wtf is going on ptime reset fixes it but needs to be manually executed on every join
The last spigot release was 15 hours ago
not june 13th
You're looking at an unofficial site providing outdated builds
Oh lol wow thanks guys...
?services
If you wish to request or offer development/art/building/administration services, please do so at https://www.spigotmc.org/forums/services-recruitment-v2.54/
what kind?
"i can dm you the plugin" never dms me
oh 💀
I sent the plug-ins
Sure bro we just need some people to develop the plugins I can send to them
"morning chuck" "morning bill" "hows the wife?" "oh you know, the usual" ahh message
Fr
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!


