#help-server
1 messages · Page 49 of 1
yes but as main subject it has coding.
not really
coding is the important part
its a server software
there is 1 channel dedicated to coding here
there's a reason why there are 2 help channels.
or just... don't block communication which leads to you wasting my time.
he said he was the yougest entrepreneur earlier
yes you did by unfriending me
of my country*
also it's youngest.
You can see that in the article.
idk how many people would unfriend someoen that quick if they didnt do anything
Oh that's him who unfriended me not me who unfriended him, I actually had to change the message that I first posted as he doesn't allow dms from users that aren't friends, if you don't even know what this conversation is about then why are you here?
if you do I do
Yes but why did you go cry ahead and cry here when you told me to leave YOU alone, that doesn't make any sense.
.
i cant even see the name above the head lol
oh sorry
If you can now shut up I can shut up and we can come to an agreement.
wait 1s
Hey there, I read it but I was a bit confused, can you explain again? It looks the same to me.
now?
This could be because of the background or the picture, texture pack pictures can actually change the color of the text that for some reason, I recommend you to use &r&<color>
add an &r or <reset> depending on what the above head name supports before the name
i will try
Whats going on now?
Interesting, try re-joining/rebooting the server, I'm pretty sure TAB uses Packets.
oh ok
same problem
there is something wrong?
that looks correct, it might just be how the client renders it
No, it should work, at the moment there are a lot of problems with texture-pack pictures as I've tried to use them myself, I ended up just resetting the names to white for cleaner look.
i will try with vanilla
? why
that's luckperms
same problem
same problem with vanilla client
I can only think of one cause, client-side, overall texture-packs pictures are a new thing to Java, I experienced the same problem before.
there is a method to use colors only on nick name without using prefix?
Not really, the &r should reset everything to zero, try using another similar color?
Anyone know a plug-in that stores the amount of breaking you’ve done like this one but for 1.19 https://www.spigotmc.org/resources/better-block-breaking.2665/
I am trying to make an option for worldguard called "vine-like-rope-ladders" work and it was suggested to me that spigot's physics checks override the plugin. Would there be any way to fix this?
can someone help me code a plugin that will give fly for example 10 min a day and will reset back to 10 min of flight after 24hours dm me please
That's more for #help-development and you need to ask specific question on what problems you're having
He might just be asking someone to make it for him. Wouldn’t surprise me.
No matter how rich you are, you are not entitled to help and you are not entitled to break the rules here 🙂
@fossil obsidian This seems like quite the unacceptable behaviour on this discord
I am surprised optic hadn't said anything yet
I am more surprised someone didn't ping me either >>
alright maybe not that surprised but still
What a fucking clown lol
I'm usually only in #general lol
Wake up to reality buddy
You'd be correct, I stalk #general lol
but he is magic lol
Frost needs to find time lmao
jree fava lessons
Lol wtf
That’s both soliciting outside of services and directly being rude to a spigot member + threathening to ruin someones life.
@narrow coyote Was he warned yett?
Sad there isn’t a dicord mod tag or a ticket channel for this haha
I have a question
I´m playing on a Minecraft Server and they have the Plugin where you can upgrade your hopper i think the Plugin is named "Upgradable Hopper" and the server sometimes delet this Hopper so that they are normal mc hopper do anybody can tell why this is so i can tell the owner?
Best way to post big maps (from a SMP) for make it a public map free to download? It's 12gb capacity
Planet Minecraft if you’re asking where to post it
Reposting this because it got buried incase anyone who might know the answer sees it:
I am trying to make an option for worldguard called "vine-like-rope-ladders" work and it was suggested to me that spigot's physics checks override the plugin. Would there be any way to fix this?
Spigot makes the ladder break no matter what
how do I convert a world that was ran on 1.17 to 1.16
you don't
well shit
you load the backup you made before upgrading to 1.17
idk if there is a tool out there for it, certainly would have to be third party tho.
The server and hence spigot don#t have a concpet of a downgrade
i wanna stop bot attack on server, how i can ?
wdym with "bot attack"?
someone doing bot attack on my server i want to stop that
WANNA ASK SOME THING
There is an entire discord server here meant for asking things inside of it
🙂
why would my guardian beam be just bubbles?
how do I add spigot plugins to my aternos server
What?
when a guardian targets a squid, its supose to have a guardian beam like a laser, but its just bubbles
How do I "ask aternos"
What are your particles settings in video settings
They have a support page, they might be able to help you there
its worked before never changed settings
So what changed since?
And is it just like this?
Is it server wide or just on your side
I figured it out, thanks
yeah like that and its server side
Minecraft bug
afaik
I cant find a solution online
it's a known bug
what version r u using
1.19.3
After creating backups upon backups, deleting files in those backups...
When I tried to use NBTExplorer to modify the "Time" metadata in 'level.dat',
I found out that when this value reaches ~2800000 or above , this issue occurs.
Pasting this value or anything higher on a brand new world will have an 100% chance to cause this issue.
i just made the world
Then I have no clue
What happens if you spawn it in with an egg or with /summon @pearl coral
The issue could be related to the guardian.setInvisible(true) line of code. When the Guardian is invisible, its attack ray may not be rendered.
You could try removing that line of code and see if the ray appears. Alternatively, you could try setting the Guardian's showParticles property to true using guardian.setShowParticles(true) to see if that fixes the issue.
Another possibility is that the Guardian's AI may not be properly targeting the squid, so the ray attack is not being triggered. You could try removing the scheduler and manually targeting the squid using guardian.setTarget(squid) inside a loop to see if the ray appears.
Other potential solutions:
Check if the Guardian has the "elder" variant: The "ray" attack is only available for the elder Guardian variant. Make sure that the Guardian spawned has the elder variant by using guardian.setElder(true).
Adjust the Guardian's targeting range: The Guardian's targeting range may be too short for the attack to trigger. You could try increasing the range by using guardian.setTargetRange(range) where range is the distance in blocks that the Guardian can detect its target.
Ensure that the Guardian is within range of the squid: The Guardian may not be close enough to the squid to trigger the attack. Make sure that the Guardian is within range of the squid by checking the distance between them using guardian.getLocation().distance(squid.getLocation()).
Check if particles are disabled: In some cases, particle effects may be disabled in the server settings. Check if particle effects are enabled by using Bukkit.getServer().getAllowEnd(). If it returns false, particles may be disabled and the Guardian's ray will not be rendered.
Use a different version of Minecraft: If none of the above solutions work, it's possible that there may be a bug in the Minecraft version you are using. You could try using a different version of Minecraft and see if the issue persists.
Also, what are you trying to achieve? Looking at your code, you only want to instantiate the ray particle. There might be a better way for this
Tell me which solutions don't work, or if one does work
anyone know off a plugin to change the generation of trees deleting and adding new ones
anyone knows how to add sounds to private messages? Im using essentials but i dont think they have something like that pre-installed...
Youre going to have to make a plugin for that yourself then
How can I send a title to the player's actionbar in a plugin?
We don't support offline mode. Ask in JPremium Discord or something.
[ServerMain/ERROR]: Exception reading .\world\level.dat
java.io.UTFDataFormatException: malformed input around byte 9
at java.io.DataInputStream.readUTF(DataInputStream.java:661) ~[?:?]
at java.io.DataInputStream.readUTF(DataInputStream.java:570) ~[?:?]
at net.minecraft.nbt.NBTTagCompound$1.a(SourceFile:100) ~[spigot-1.19.3-R0.1-SNAPSHOT.jar:3669-Spigot-454acb7-f150cfb]
at net.minecraft.nbt.NBTTagCompound$1.a(SourceFile:113) ~[spigot-1.19.3-R0.1-SNAPSHOT.jar:3669-Spigot-454acb7-f150cfb]
at net.minecraft.nbt.NBTCompressedStreamTools.a(NBTCompressedStreamTools.java:270) ~[spigot-1.19.3-R0.1-SNAPSHOT.jar:3669-Spigot-454acb7-f150cfb]
Player.sendActionBar();
I think
Also #help-development
fellow Dutchie and frikandelen liefhebber?
Still cant figure this out.. Any ideas?
Player.Spigot#sendMessage(ChatMessageType, BaseComponent...)
declaration: package: org.bukkit.entity, interface: Player, class: Spigot
hi i neeed help im trying to install koji skyblocks i did that but when i try to use command like for main menu /ci tht clear my inventory not open a menu of skyblock items
@weak drift
?staff
Don't ping staff for development/server help, if you have a question just ask it and someone in the discord will respond when they are capable of helping.
when did that get added
at nesancodev.com.supershows.lasers.Laser.target(Laser.java:71) ~[SuperShows-1.0-SNAPSHOT.jar:?]
at nesancodev.com.supershows.lasers.LaserCommand.onCommand(LaserCommand.java:25) ~[SuperShows-1.0-SNAPSHOT.jar:?]
at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
... 23 more``` why is getTarget returning null?
public Laser(String name) {
this.name = name;
}
public void create(Location location) {
this.location = location;
this.guardianStand = (ArmorStand) location.getWorld().spawnEntity(location, EntityType.ARMOR_STAND);
this.squidStand = (ArmorStand) location.getWorld().spawnEntity(location, EntityType.ARMOR_STAND);
this.guardian = (ElderGuardian) location.getWorld().spawnEntity(location, EntityType.ELDER_GUARDIAN);
this.squid = (Squid) location.getWorld().spawnEntity(location, EntityType.SQUID);
this.scheduler = Bukkit.getScheduler().scheduleSyncRepeatingTask(SuperShows.getInstance(), () -> guardian.setTarget(squid), 0L, 1L);
guardianStand.setInvisible(true);
guardianStand.setGravity(false);
guardianStand.setInvulnerable(true);
guardianStand.setCollidable(false);
squidStand.setInvisible(true);
squidStand.setGravity(false);
squidStand.setInvulnerable(true);
squidStand.setCollidable(false);
guardian.setInvisible(true);
guardian.setGravity(false);
guardian.setInvulnerable(true);
guardian.setCollidable(false);
guardian.setLaser(true);
squid.setInvisible(true);
squid.setGravity(false);
squid.setCollidable(false);
squid.setInvulnerable(true);
guardianStand.addPassenger(guardian);
squidStand.addPassenger(squid);
}```
private String name;
private Location location;
private ArmorStand guardianStand;
private ArmorStand squidStand;
private ElderGuardian guardian;
private Squid squid;
private int scheduler;```
the this makes it class var
just in a command java Laser laser = new Laser(args[1]); laser.create(player.getLocation());
im also having a problem where the beam doesnt show up, its just bubbles which could be related?
it wouldnt be
its me making it
me?
Player player = (Player) sender;
they are definetly just regular locations
i get both locations from entity.getLocation()
none are manually created or anything
the problem is its not getting the beam location
not the actual location of the entity
this.scheduler = Bukkit.getScheduler().scheduleSyncRepeatingTask(SuperShows.getInstance(), () -> guardian.setTarget(squid), 0L, 1L);``` this must not be working or smthn but idk why it wouldnt be
thats where i get the location of the beam
Location baseLocation = guardian.getTarget().getLocation()
yeah
but thats not causing the problem
i just realised this is the wrong channel lmao
now
I've reposted my response to that enough times

can anyone help me edit a plugin to only happen when shifting
Either ask the developer of the plugin or ask in #help-development
ok thanks sorry
hello
my server stops responding after using /stop while saving chunks, and i am at a complete loss of what to do
the log is here https://pastebin.com/KSJyEZvj
i am running spigot 1.19.2 compiled using BuildTools under a Debian container under a Fedora SilverBlue 37 host.
this behaviour happens on spigot 1.19.3 as well
the server has no plugins whatsoever but it happens with plugins too
this happens whether the world is newly generated or previously generated
anyone have any ideas?
my server has an intel core i5-10600K, 24GB RAM, and the issue happens every time i try to stop it, regardless of whether there are 0, 1, 2, or 300 players in there, so i really really doubt it's that my hardware isn't enough
what plugins are you using
How much ram are you giving the server? Is it a single server, or a bungee network? Have you tried with a new spigot jar from buildtools
looks like maybe your server's I/O / write speed is slow as hell
%bungee_server% not working
it returns 0 when its not 0
help
is it a shared hoster?
yeah
sorry I was talking to the person with the /stop issue
why not using replies without ping enabled
btw what is %bungee_server%? do you mean %bungee_<servername>%?
no
i mean
%bungee_servername%
I did for my first message, but you sent one before I could write the second line
no idea then
yeah but you can switch to talking to other person very easily
%bungee_total% isworking btw
none
8GB
hardware-wise, I've got the server on an SSD
how would I go about testing this?
no its a machine that I own
did you disable world saving?
or increased the time between world saves
also, that isn't the full error either
you seem to have clipped off the end of it
if you didn't touch world saving, odds are you have a plugin causing the problem, but since you clipped out half the error towards the end can't determine that
I ctrl + Cd out of it to close out of it because i'd been waiting for too long. it just hangs at that point and nothing happens
"the server has no plugins whatsoever but it happens with plugins too"
i did not disable world saving
the issue doesn't happen when i save the world in general, it happens when it tries saving it when i try to stop the server
for instance, if i run save-all, everything saves quickly and smoothly, without any issues whatsoever as expected
if i run stop, it hangs on [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
latest.log has the exact same information pasted on the pastebin, i just checked
it ends here and there is nothing below it, just like in the pastebin
weird
is your SSD running out of space?
there should have been more to that error
if on linux, ensure your directory where it is mounted isn't running out of space or partition. Don't know your exact layout
space issues will cause these problems
definitely not, it's got 198GB of free space
doesn't mean anything to partition or mounts
you can have a mount that is only 5GB even though ssd is 200gb
the partition has got 198GB of free space
well something is up that seems more hardware related then it is spigot or java related. Because as I said there should have been more to that error, it shouldn't have just cut off like that
i think it probably cut off because i CTRL C'd out of it
actually no,, i think i know why, give me a second
nvm i don't know why it's happening
i remember sending SIGTERM to the process at one point because I wasn't able to even CTRL C out of it, but i'm checking the other logs and they all cut off at the exact same place
this also doesn't happen with the vanilla minecraft server
and it doesn't struggle creating new logs or anything, it literally just dies at this exact point
I also tried increasing timeout-time in spigot.yml to 240 (from 120??) but the issue is the exact same
have you tried updating
going to guess that you are on some version that most likely already has a fix, and just need to run build tools to have it
i did try updating
i first created the server using the most up to date 1.19.3 version, and actually tried the most up to date version for 1.19.2 to see if the issue would be fixed that way, which it wasn't
i'm making a debian VM rather than a container to see if the issue persists
it's not really a good solution though
are you using openjdk or oraclejdk?
openjdk
try with oraclejdk
pretty sure the problem will go away if you do lol
when starting the server again, did everything seem to save though?
if it has, then I suppose you could ignore it
everything saves since the last autosave or manual save-all
1 sec
same issue with oraclejdk, with a recompiled spigot.jar and completely new server
:panik:
what is the jvm arguments you are using?
/opt/jdk-17.0.6/bin/java -Xmx8192M -Xms8192M -jar spigot-1.19.3.jar nogui
Aikar's garbage collection flags: https://aikar.co/2018/07/02/tuning-the-jvm-g1gc-garbage-collector-flags-for-minecraft/
use the flags from that link keep xmx and xms the same and you don't need to use the flag that indicates using aikar flags either
but everything else you should use
I have a feeling that for whatever reason it is running out of memory in an odd way when it is trying to save but instead of throwing that error the panic kicks in just before it and instead we are seeing a panic exception
when really it should be an out of memory exception
only way to find out, is to see if those JVM arguments makes it go away 🙂
it would have been funny if the program was just trying a little too hard not to segfault
the issue persists though
the log is slightly different, hang on, i'll post it on pastebin
it looks similar though
and the behaviour is the same - it cuts off here and doesn't carry on
lines 235, 283, 324 and 365 seem to be of use though
do you have swap space?
i do
is it large enough?
probably not even the problem
the only other thing I can think of is the console environment being used to launch it
but I have a feeling you are not using any dummy consoles or a different console then you normally use yourself
do you have any lock files left in any of the directories?
well it's apparently got size 8388604, out of which 57600 are being used.
whether it is bits, bytes, megabits or megabytes is up to interpretation of the beholder i guess lol
but yes this should be enough regardless, since i have RAM available in the first place
and while swap is also used for MEMALLOC() and MEMDEALLOC(), it wouldn't take that much space
swap is also used for memory mapping
and other things
not just direct memory stuff
it's just bash ig
would there be anything else to watch out for?
bash isn't a console
ah, right
you mean what i would call terminal, or the actual minecraft server console?
i was a bit shocked that there were custom mc consoles for a second lol
it's gterm, the default gnome terminal
since it's fedora silverblue, i can't be bothered to layer another terminal
i can try flatpak kitty if you think that'd make a difference though
but it shouldn't
don't think that would cause an issue. Do you have any stray lock files in your server directory anywhere?
can try
I mean at this point it really isn't making a lot of sense other then something is causing it to lock up
if you find any lock files
delete them
Hey does anybody know a Plugin where you can lock chest and like other players can use a crowbar to like crack the lock.
apparently there's no flatpak for kitty (i swear there used to be)
i'll try in a few minutes, i've got some other stuff i want to try beforehand
i'll keep you posted
ok
there isnt
i swear there used to be though
why do you want it as flatpak
because im using an immutable distro and im lazy to restart the pc
i ended up testing paper instead and it works fine
thank you for helping anyway
is there anything i can do to thank you at all? some sort of thumbs up anywhere?
thank you, i'll look into it
Evening anyone know of a plugin which uses teleportation but through blocks, that one stands upon.
Which is useable for 1.19.3?
umm
i have one
idk if it's working for 1.19.3
WayShrines
search on dev.bukkit
or i can write one for you rn
😉
Hey guys, where can I ask about plugin indication?
garbage collector?
Probably
does this work as a tp pad from 1 spot to another?
Like this? player.spigot().sendMessage(ChatMessageType.ACTION_BAR, new TextComponent(args[1]));
Sigh
?tryandsee
there we go
ye im tryna search for such
Thank you
Any 1.19 vault plugin ?
im using luck perms and essentialsX with chat
but it just shows name now
Yo, our server is having some issues with bedrock joining after updating Spigot to 1.19.4
Any explanation on that or?
Have you updated geyser
That could be the problem 💀
I'll have a look
How would one go about doing it?
Is there a specific new version
Or is just drag and drop the Geyser-Spigot download in the server folder again?
You will always need to update geyser for a new minecraft version
If there isn't a new one out yet you'll have to wait
I think the new is out it mentions 1.19.4 in the patch notes
Hello! I was hoping for some help. I host a server and need to update to geyser-spigot for 1.19.4 but I can't find it
But yeah I havent used Geyser-Spigot on a update before
Just the geyser-spigot there
yes
I have my own command. I would like certain code in that command to loop a certain amount of times. How can I do that?
while(true)
while(counter < amountOfTimes) { /*code + counter++*/}```
Have you heard of a for loop :P
Is there a way I can place a delay in that loop?
Bukkit.getScheduler().runTaskTimer()
Use a repeating task and a counter
shoudnt this be in help dev
dont think bungeecord or spigot is working very well
can connect to the child server using /server child
but a portal gives an error
that it cant connect
a previous spigot version it works fine
Right but that is a replacement for the while loop. I just need a way to delay for 4ticks before repeating the loop again, until the statement is true.
Here is my code so far, what line to cancel the task? ``` Bukkit.getScheduler().runTaskTimer(0) {
word = word + args[1].charAt(idx);
player.spigot().sendMessage(ChatMessageType.ACTION_BAR, new TextComponent(word));
idx = idx + 1;
counter = counter + 1;
if (counter < args[1].length()) {
}
}, 4L, 4L);```
Also, the first and last lines are underlined red
Bukkit.getScheduler().runTaskTimer(plugin, () -> {code}, 4L, 4L);
Still no: ```Bukkit.getScheduler().runTaskTimer(plugin, () {
word = word + args[1].charAt(idx);
player.spigot().sendMessage(ChatMessageType.ACTION_BAR, new TextComponent(word));
idx = idx + 1;
counter = counter + 1;
if (counter < args[1].length()) {
}
}, 4L, 4L);```
you missed the ->
I updated my server to spigot 1.19.4 and im getting crashes after the server being up for a few minutes and warning in consoles about the server running 100 ticks behind. is there a way to fix this or do I just need to wait until the version is more stable
But now plugin is red. Text color is
you need to pass a plugin instance, also move to #help-development
anybody know why this is happening?
is there a way to install the .jar for spigot 1.19.4 with no buildtools
Is there a way to use the buildtools on a hosted server? I downloaded the .jar from here but it didnt work on the server
?bt
hi
Can someone help me with this?
happens from today after the update to 1.19.4
it happens everytime i close the server
I tried running the java -jar BuildTools.jar --rev 1.19.4 command but I am getting an error, specifically a runtime error. I am able to run the command for other versions, what gives?
Do you have any plugins installed?
What's the error?
I don't seem able to post a screen shot in Discord
It's cause you're not verified.
?img
Not verified? Upload screenshots here: https://prnt.sc/
?paste
Do any of those deal with Jukeboxes? Or do any of them have special interactions with blocks?
Now this comes out every time someone enters
Huh. Now that's something. I just ran BuildTools myself and the only weird thing for me was that it was a little slower than usual. However, everything compiled and I even ran it twice with an extra flag.
Did you run BuildTools in a brand new directory or a pre-existing one?
pre-existing
hmmmm, I see. So will updating delete my old world?
Updating the spigot jar? No, spigot will update the chunks automatically when the new jar is placed in the server.
The only thing to consider is that you won't be able to downgrade.
That's fine
So I have the old BuildTools.jar, server.properties, spigot-1.19.3.jar, etc in a /minecraft directory. So you're saying I should back out of that and then run the command?
When I do that, it says "Unable to access jarfile"
Here's what you should do.
- Download the latest BuildTools jar file from https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar
- Create a new directory somewhere on your main drive. A new directory in your Documents folder will work just fine for this. (This is to prevent dubious ownership errors with git)
- Run BuildTools normally.
java -jar BuildTools.jar --rev <VersionYouWantToBuild>
So everytime you update, you have to make a new directory?
It's recommended to. Otherwise BuildTools will try to use the existing files that it creates to skip steps. It's fine if you want to build the same version when a patch comes out, but not for a major/minor game version change.
Besides, you don't actually have to keep the directory that you make. It's just there to build the jar. You're free to delete it after you get your copy of the server jar.
Then again, if you're like me, you'll keep them around for no reason whatsoever. lol
Ok, so I think that it successfully ran, I have some new files now
So now I should be able to play?
still happen
It's a bug
Wait for it to be fixed, there's nothing you can do aside from use 1.19.3
Villagers using composters
have nothing to do with the jukebox?
I'm having an issue with the latest version of Bungeecord, OP'd players can't join (get a connection reset message), and giving someone OP instantly kicks them. This is what's showing up in the log when it happens:
[01:11:25] [Netty Worker IO Thread #2/WARN]: [Dakotaa] <-> DownstreamBridge <-> [factions] - could not decode packet! java.lang.IllegalArgumentException: No provider for argument ver�targetminecraft:resource_locationminecraft:ask_server� targetPosminecraft:block_pos�targetminec
[01:11:25] [Netty Worker IO Thread #2/INFO]: [Dakotaa] disconnected with: The server you were previously on went down, you have been connected to a fallback server
This is on a server with no plugins installed, as well as no plugins installed on the proxy
Is the server spigot 1.19.4 (not viaversion)
my bad, forgot to mention that it's running 1.18.2
Is the client 1.18.2
yep
Open a bug report
Hey, I saw the update on website and ran the command that you posted. It just keep downloading and such, but I don't see any spigot jar file?
I just wanna download the spigot 1.19.4 ??
I'll refer you to the previous conversation about this.
<#help-server message>
?bt
Whoever can help with server performance for a event that has around 40 Players please dm me
(Optimize)
just get a proper dedicated server for that and you're fine
Where can I see the updates (changelog) and if the bug has already been fixed?
View the Bukkit, CraftBukkit and Spigot changelog.
Question on using Spigot. I just got a minecraft update to 1.19.4 and it won't connect to the server. How often do I need to update the Server to maintain latest version?
Spigot doesn't seem to be updated yet.
Wiki is outdated you can use --rev 1.19.4
Cheers
im getting the same error
Make sure you're up to date
like my spigot jar?
Yes
https://pastebin.com/h5DpyTPA
can anyone tell me whats the problem?
it keeps crashing
?whereami
Hi. I just cant use nether portals in my superiorskyblock world. could it be multiverse issue?
Thanks for your help, I was able to get it working finally!
i have a problem with plugin
SkyBlock BentoBox plugin has its own generation of nether, it can be turned off, but the problem is that if it is turned on, it will teleport to the bskyblock_nether_world, and if it is turned off, the portals will stop working.
I need a plugin so that when players build a portal to nether in the "bskyblock_world", they will be teleported to the "nether_world".
Which Java JDK version is the best for performance?
Just use 17
I'm on 18, should I downgrade?
Nah I wouldn't worry about it unless you have compatability issues
Okay, thanks
Hi, on my minehut server, when I try curing my villagers to trade 1 cod for 1 emerald, after curing once, the discount stops. After googling a bit I found out that i had to set 'fix-curing-zombie-villager-discount-exploit' to false. This I should do in paper.yml in my server folder. However, my server folder only has spigot.yml, and there is no way to set it to false. Does anyone know how I can fix this?
If you want the paper you're going to need to run Paper instead of Spigot
?fork
SpigotMC maintains the Spigot server. If you are using a fork of Spigot (such as Paper, Airplane, Purpur, or other derivative works), you should seek support in the appropriate Discord servers.
oh, ok do you have the paper server discord link?
You can find it on their website
ok, thanks for your help
nether portals not working
He is there a way to locally host a server but that others can also edit the config files? Like acces my storage? Or is there any other free way?
You could just use a github repository
And sync changes etc seems the most safe way to do what you want without adding another attack vector to your local pc
Obviously you can't include plugin jars but you can just have the configs in there
Is there a way to automaticly pull/sync that when starting the server?
true
You can just filter jars with .jar ending
You could add it to your start script
On the other hand it would be anynnoing if you want to make one small change to the config and you cant just do /plugin reload but you have to restart
You should almost never reload anyways
Im doing a lot with MythicMobs the problem is If I just want to change a skill /mm reload is fine
But yeah I'd say it's an okay way to do it
Just wait to sync until later theb
Otherwise I'd just get a panel host but that'd cost money
do you know a plugin that shows online players from server 1 and server 2 in the same tablist?
yeah my budget is already maxed with the few plugins I bougth. I dont want to waste money for server cost for the time
Which fork do you consider it's better for performance?
I thought this was a Wendy’s
no this is mcdonalds
Anyone have suggestions for the best war zone / envoy crates plugin for cross play
I'm currently using the display item entity and changing some of its nbt tags
however when i do it the console receives these:
[02:39:07 ERROR]: Display entityNot a list: {left_rotation:[-0.0d],right_rotation:[0.0f,0.0f,0.9238795f,0.38268343f],scale:[1.0f,1.0f,1.0f],translation:[-1.9890438f,2.0f,-0.20905693f]}
[02:39:07 ERROR]: Display entityNot a list: {left_rotation:[-0.0d,0.7880107536067221d],right_rotation:[0.0f,0.0f,0.9238795f,0.38268343f],scale:[1.0f,1.0f,1.0f],translation:[-1.9890438f,2.0f,-0.20905693f]}
[02:39:07 ERROR]: Display entityNot a list: {left_rotation:[-0.0d,0.7880107536067221d,-0.0d],right_rotation:[0.0f,0.0f,0.9238795f,0.38268343f],scale:[1.0f,1.0f,1.0f],translation:[-1.9890438f,2.0f,-0.20905693f]}
[02:39:07 ERROR]: Display entityNot a list: {left_rotation:[0.0f,0.7880108f,0.0f,-0.6156615f],right_rotation:[0.0d],scale:[1.0f,1.0f,1.0f],translation:[-1.9890438f,2.0f,-0.20905693f]}
[02:39:07 ERROR]: Display entityNot a list: {left_rotation:[0.0f,0.7880108f,0.0f,-0.6156615f],right_rotation:[0.0d,0.0d],scale:[1.0f,1.0f,1.0f],translation:[-1.9890438f,2.0f,-0.20905693f]}
[02:39:07 ERROR]: Display entityNot a list: {left_rotation:[0.0f,0.7880108f,0.0f,-0.6156615f],right_rotation:[0.0d,0.0d,0.9238795325112867d],scale:[1.0f,1.0f,1.0f],translation:[-1.9890438f,2.0f,-0.20905693f]}
[02:39:07 ERROR]: Display entityNot a list: {left_rotation:[0.0f,0.7880108f,0.0f,-0.6156615f],right_rotation:[0.0f,0.0f,0.9238795f,0.38268343f],scale:[1.0f,1.0f,1.0f],translation:[-1.940591452551993d]}
[02:39:07 ERROR]: Display entityNot a list: {left_rotation:[0.0f,0.7880108f,0.0f,-0.6156615f],right_rotation:[0.0f,0.0f,0.9238795f,0.38268343f],scale:[1.0f,1.0f,1.0f],translation:[-1.940591452551993d,2.0d]}
it seems that the lists that im imputing are not being well received
for some reason
What command are you using
this might be a me issue, i just found out that there are actual methods to change these things.. i was using the nbt api 😭
sorry for disturbing
Why would you do this?
if a server has any kind of plugin they're going to immediately know
and the protocol version, the client knows the protocol version because that's what it connects with
cant you like, block /pl?
for what purpose
so what's the issue
whitelist is enough
how?
how is this a vulnerability
yeah, so.
it's whitelisted.
what are you concerned about
no one but those you approve can join
AFAIK there is no magic hack that breaks whitelisting. it's by UUID.
as long as your server is online and checks against mojang auth, you are covered.
enable-status=false in server.properties
Citation needed
yeah massive citation needed
even then, that's security through obscurity
which is patched
are you trying to be a fortune teller
Well your strategies wouldn't have stopped the issue
i understand what you're saying but ^
and also because nginx and the minecraft server are not the same thing
Anyway I gave you the answer above
Just know it'll do literally nothing to protect your server
It does by default?
Just checked rn, master process is running as root, simple reason is that it can bind to privileged ports lol
Or just run your server as dedicated user which have no other permissions then required for server
Basic administration
No reason to worry then, if someone is target hacking your server, putting it in sandbox won't save you either
yes thank you those are indeed containers
As its equally "hard" to privesc from unprivileged Minecraft user to root and escape some sandbox
If someone is expirianced enough to do one of those two things, you are equally screwed
Lmao
Lol
Bro some people are too secure for their own good, it's crazy
Hope you're using openbsd
not helping your case
Nah its still in your walls, believe me
Sundar Pichai is in there
Perhaps just don't connect to the internet
Live inside a faraday cage
what if there's some unknown vulnerability in your VMs?
So basically docker
Too late, NSA backdoored your processor and China backdoored your BIOS
That's cause the backdoor is really good
I like my PSP vita
the best surprise is the one you've never heard of
the quieter you become, the more you are able to hear.
unless there's nothing around you, in which case there's silence
and you're actually hearing less because you can't hear yourself
Even with nothing around I have my tinnitus to keep me company
the silence is deafening
(i have tinnitus)
i must stand by a dishwasher every day to drown out the voices
Is there a way to reduce the tracking-range of chests? On my server, all players are rendering chests up to 64 blocks away. I think that range is too high and unnecessary. It is especially laggy (FPS-wise) in areas with lots of chests, like the marketplace area or the spawn area or just various player megabases in the world. If I could reduce the chest tracking range to something like 32 or 24, players would have significantly better performance in areas where lots of chests cause them a lot of lag.
TL;DR: There needs to be a way to reduce the tracking-range of chests.
If that's not possible, could someone please tell me why it's not possible?
does reducing client-side entity distance change anything
Because chests are blocks and part of chunks
Their render distance is the smaller of server view distance and client render distance
Entities are individual things, so they can be controlled separately
I don't know that that's why I am asking
scroll up then
Can someone help me setup a Queue for BungeeCord? (any plugin)
^
😭
If you're in a hurry hire someone
What does that mean? The chest render distance is as high as the simulated chunk distance?
no its as high as the blocks you can see
Hi everyone, im confused why sometimes this keep happening to my server? like sometimes the block disappear when we mine it near resdtone tick sometimes it doenst disappear too,
currently using 1.19.3
Its in the hopper below probably
nah it just went into the hopper
can a block even go that far
there's probably a hopper directly underneath the floor
might be a slab, idk
excluding the 1px shorter blocks
idk vanilla definitely doesn't let items disappear randomly, so either it's the hoppers, or some weird plugin
i check it the item is not in hopper or below the floor
what's the output of /plugins?
this is my plugin
no idea then
might be illegal stack, ik that causes way more bugs than its worth
clear lagg might have triggered also
hmm i will try to remove the plugin lets see if it works
ok i find what causing the issues, it was FastAsynWorldEdit
@west cloak what u wanna duplicate
Isn’t that enabled by default with spigot
is 1.19.4 spigot stable atm? i was using it yesterday but it kept crashing and the apexhosting support told me 1.19.4 isnt stable yet due to entity errors
No
otay thanks
Does anyone know a free plot system in the 1.19 Like Plotsquard?
It costs 15 € :(
I don't think they offer pre-built jars
And how do I make this to a plugin?
download the content and run ./gradlew build in cmd in that dir
This is somehow not possible for me who creates the folder but does not make a jar file
Banned
taking too much rank?
Give it less then
;-;
give it more then
whats your startup command
If you give java 16gb, it’ll use 16gb
java -Xms128M -Xmx12288M -Dterminal.jline=false -Dterminal.ansi=true -jar server.jar
you are giving it 12gb, so its gonna use the 12gb
if i use 2gb or any then it'll crash bro after
Well yeah you probably need more than 2
i gave 12
it takes 12 full and after needs more it'll crash
like?
a memory leak
if i give it 7 it'll run on 7 but when it reaches it it'll automatically crash
what's this?
spark
spark
its a timings profiler type thing
hm
you run it and it will tell you whats using what resources
how would we know
startup command looks fine
.
okay? run spark then send us the link it gives you
[14:46:26 INFO]: Plugins (33): BlueSlimeCore (SirBlobmanAPI, SirBlobmanCore, XSeries), CataMines, Chunky, ConsoleSpamFix, DecentHolograms, DiscordSRV, EasyKits, Essentials, EssentialsChat, EssentialsSpawn, Exyron-FastCrystals, FastAsyncWorldEdit (WorldEdit), HealOnKill*, LPC, LuckPerms, MOTD, Multiverse-Core, nAntiBot, nLogin, PersonalKits, PlaceholderAPI, PlayerParticles, PlugManX (PlugMan), ProtocolLib, RealScoreboard, ServersNPC, SkinsRestorer, TabList, ViaBackwards, ViaVersion, VoidGen, WorldEdit, WorldGuard
this are the plugins
where does it gives the link?
in console?
it's free on github
is there any plugin which automatically rekit a player when a player kills another player?
if anyone have it please give me ill appricate it
Are you sure about that? After I walk 64 blocks away from a chest, it disappears, but the blocks around it are still visible. Like I said, there’s a radius of 64 blocks that people can see chests, but anything after that and the chests disappear. The players can still see blocks further blocks than that, but the chests stop rendering at 64 blocks.
free as in freedom
yoo so im making a prison/skyblock hybrid server and i was wondering if anyone could help me figure out why when i go to spawn from my island it removes my items in my inventory
I think it's cuz your using multi verse inv?
Anyone wanna help me setup some type of Queue? for BungeeCord
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/
Anyway to make Iron Golems take fall damage?
hey guys, i am looking for server plugin. I want glowing torch in my hand. Do u know any that gonna work on server?
Google your question before asking it:
https://www.google.com/
i took one from google and it didnt work
Try another
okey, thanks
Hello guys, would you recommend 1.19 or 1.19.3 for minecraft server? any known bugs or performance issuess?
Wanna ask, if i updated from 1.18.2 to 1.19.3 must i update all plugins to work properly or only the red ons?
You should check all of them for updates
Not all plugins are forwards compatible
If it requires any kind of NMS its going to need an update
hi, i have a server and the world doesnt load
like when you join it doesnt load, but if you k1ll yourself with /kill, it starts loading
any plugin that teleports based on permission? like /tpfactions teleports you to the bungee factions server if you have the permission to do so
anyone know of a 1.19 plugin for custem death drops and sounds?
I get this error when I start the proxy server
00:43:51 [SEVERE] java.lang.ClassCastException: class java.lang.String cannot be cast to class java.lang.Boolean (java.lang.String and java.lang.Boolean are in module java.base of loader 'bootstrap')
00:43:51 [SEVERE] at net.md_5.bungee.conf.YamlConfig.getBoolean(YamlConfig.java:204)
00:43:51 [SEVERE] at net.md_5.bungee.conf.Configuration.load(Configuration.java:102)
00:43:51 [SEVERE] at net.md_5.bungee.BungeeCord.start(BungeeCord.java:282)
00:43:51 [SEVERE] at net.md_5.bungee.BungeeCordLauncher.main(BungeeCordLauncher.java:67)
00:43:51 [SEVERE] at net.md_5.bungee.Bootstrap.main(Bootstrap.java:15)```
Seems like your config is messed up
yeah I fixed it, thanks any way!
Hello, which java version for 1.19.3 server?
in theory, if your client executes code from a resource pack, yeah
but, the vanilla client, no
17
Also if there is anyone who could help me with ItemsAdder i would pay them up to 20$.
Problem is i updated server from 1.18.2 to 1.19.3 so i updated itemsadder &lonelibs &protocollib too, 95% textures work but if i do /ia it says its loading, but its saying 12 hours straight so there is something wrong and i need to fix it with someone. Did not managed after 12h to fix it.
Hi I am facing a problem, anyone helps?
[19:49:03 WARN]: Unable to add mob to team "passive" (that team probably doesn't exist)
And it's coming again and again
Your server is using teams via command blocks or a plugin you use is doing something wrong
i'm trying to set spawn to the center of a block, but when i do /kill on myself, i spawn on the edge of the block
how do i make it so i spawn on the center of the block?
i tried with .5 but it won't work
What plugin are you using to set spawn?
essentials
any reason why java Generation.config.getConfigurationSection("portals").getKeys(false)
returns null
portals:
- "0":
- "Hello"```
is there any method for that or should i make it like this
portals:
"0":
- "Hello"```
and use configsection
I'd use a config section
okok
list of lists are just going to be confusing for the end user
In the future use #help-development
so what am i suppose to do about the spawn?
mb
Essentials sets the spawn where you are standing. So stand in the middle of the block and it will work
i was tho
:/
Make sure you don't have another spawn plugin
i have Citizens, Essentials, Bungeecord, placeholderAPI and VoidGen
any of them have a spawn interference?
Not verified? Upload screenshots here: https://prnt.sc/
i have
What version mc?
1.19.4
hi guys, do you know a plugin that can allow gravity block dupes ?
are atleast how to disable safetys behinds duping stuff in the server logs ?
dose anyone know a custom death drop plugin for 1.19 pls i begging u
We are using - BetterRTP, Essentials, EssentialsChat, EssentialsDiscord, Geyser-Spigot, GriefPrevention, LuckPerms, NoChatReports, SetSpawn, SuperVanish, TAB, UserLogin, Vault
Can you please figure out which one is doing this?
lmao
just remove one of them at a time or something until you figure out the cause
i don't have those plugins, i'm not gonna download them all and test them for you
¯_(ツ)_/¯
okok
that was more harsh than i meant to be, lol
its okay, thanks for helping
Does anyone here use multicraft? How do I change the database port for the daemon to 3307?
RUDE
Good time of day. Please tell me what I can do in this case? Network outputs crazy values over time until the server restarts (version 1.16.5).
Hello, I have a minecraft boxpvp server and theres this glitch that sometimes happens with an elytra and it basically makes you stuck in elytra flying and you cant use rockets and the only way to "cancel" this glitch is by shifting which many people on the server dont know and they are dying to other players because of the glitch. Is there any way to fix that?
I wouldn't know
It is all traffic after server is started
Pterodactyl sums it
Or well, docker
can someone help me please? i changed the world files to a earth map but then the server crashed ( im using thermos )
that's so little information lol
?whereami
anyone know a custom death sound plugin
yre
you don't need a plugin for bow boosting lol
just get a punch 2 bow and shoot yourself with it
I need it to be like the same distance for each boost
for some boosts it just makes u go not as far than others
then just make a custom item that works like a slingshot
but bow boosting has a bunch of factors that could make your speed vary
Best plugin for anti-cheat and etc to this date?
Me, myself and I
well i cant get wither-skeleton, iron-golem, cave-spider spawners to work they are just pig spawners when you place them have tried mineable spawners plugin and slik spawners all other spawners work just the ones with two words
if anyone could provide assistance? ^
anyone know any good custom crafting plugins the one i was using broke
I hope this isn't too silly of a question but on a Spigot server is ore generation a problem? I had a person on my server say he ran into iron ore but it was always just 1 block of iron ore when usually you would get 3-4 maybe. I chalked it up to me playing too much modded minecraft and they had ore generation amped up but wanted to make sure 😄
How to make voting rewards?
ahh ok thanks for the response 😄 I also thought it was just a random thing for the person.
NuVotifier is the modern one I believe
Hello, can i get help with bukkit hère ?
to an extent, idk why you are still using bukkit in the first place, spigot supports all bukkit plugins
I use paper but there is also spigot and bukkit "in" it
yeah, ask away
I created a mob spawner, it Works in solo mode, but on my server, zombies got Bukkit.Aware:0b nbt, and they have no Ai due to that (sry for my terrible english)
And i would like to disable the fact that the mobs get this nbt
im guessing thats coming from spigot.yml nerf-spawner-mobs on 1.19.2 its line 76 in spigot.yml
make sure thats set to false
I'm on 1.18.2 so i'll CTRL+F
I have another plugin to mine mob spawners, and these spawners worked
Aikar's Timings Viewer - View Timings v2 reports from Paper and Sponge
whats wrong?
60 - 120 mspt
16 gb ram usage
just recently updated viaversion, viabackwards, essentialsx, decentholograms
Sir this is spigot
i know
if i report this in purpur ill be banned
so reporting this in spigot sounds better
whats wrong with .craftplayer method in 1.16.5?
Reporting something from not Spigot to spigot sounds better?
for what
Doesn't matter,not relevant here
purpur is papers fork paper is spigot fork
yes?
so reporting to spigot is better than doing nothing?
ah yes, tell the people it matters nothing to about an issue
and get banned
anyway. can anyone just tell me whats wrong with .craftplayer method
several plugins are causing crash with that method
everything that uses player's heads in menus
crashing my server untill i unistall them (plugin)
they just told me to fork paper to fix the issue recently
:/
i cant re create it for some reason
it happens sometimes
cant re-create means its not spigot causing it
I understand, but how to reduce traffic? Sometimes this leads to the fact that players are simply not allowed to enter the server for several login attempts.
They take a long time to load because of this and the server writes to them about the timeout
I'm confused regarding the BuildTools.
I downloaded the jar as linked in the 1.19.4 announcement and just executed java -jar BuildTools.jar which should create the latest Spigot release...
However, the jar build is apparently 1.19.3?
Could it be because I first build the jar using the old BuildTools before updating (Some caching issue)?
1.19.4 is not latest yet
:/
kinda sucks
which file do i need to look at to alter item merging?
ignore this i found it 30 secs later 😛
Anyone know how to fix minecraft enity tick lag?
have less entities
I cant startup my bungeecord proxy anymore
[SEVERE] Exception in thread "main"
17:15:03 [SEVERE] java.lang.RuntimeException: Invalid configuration encountered - this is a configuration error and NOT a bug! Please attempt to fix the error or see https://www.spigotmc.org/ for help.
17:15:03 [SEVERE] at net.md_5.bungee.conf.YamlConfig.load(YamlConfig.java:73)
17:15:03 [SEVERE] at net.md_5.bungee.conf.Configuration.load(Configuration.java:75)
17:15:03 [SEVERE] at net.md_5.bungee.BungeeCord.start(BungeeCord.java:282)
17:15:03 [SEVERE] at net.md_5.bungee.BungeeCordLauncher.main(BungeeCordLauncher.java:67)
17:15:03 [SEVERE] at net.md_5.bungee.Bootstrap.main(Bootstrap.java:15)
17:15:03 [SEVERE] Caused by: while scanning an anchor
in 'reader', line 24, column 10:
i really need a plugin for when players are in combat/ combat tagged they cant enter a regin. i would really appreciate some help if you know any
it's telling you the error
Hi, someone knows how some people put an hologram under the player name or on top
what for?
you can do some of these things with scorebords
Anyone know a good way to decrease hopper tps lag?
I need to set an area of my server to be unbreakable, but I am not having a whole lot of luck finding the right plugins. Is anyone able to help?
WorldGuard
Worldguard, or literally any region or claim plugin
Heck yes. Thanks friends!
I have a geyser spigot server and idk why but when bedrock try to join this comes up can some pls pls pls help
I ask around again, what is the best plugin to prevent cheaters like xray and so?
Orebfuscator for xray
Are we allowed to discuss forks?
Forks are cool
Although sometimes a spork is even better
(Don’t make a habit out of it, they have their own discords, but you won’t get sent to the shadow realm just for mentioning them)
anyone able to help with an essentials question?
?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!
Paper has built in anti x-ray, if you're already running paper consider that. If you're running spigot then paper should be a drop in replacement as it's a spigot fork. More info here: https://docs.papermc.io/paper/anti-xray
How do you play on a paper mc? That may be a newbie question
I remember I got error when trying to join an server with paper in normal mc launcher
you just.... join it
Maybe he had a another version :/
I was able to join my server, so I guess he used wrong version then .. I just saw something with paper and could not join 😛
how long is a competitive skyblock season usually supposed to last?
its a custom plugin for disabling access to certain areas when combat tagged?
world guard + combatlogx & worldguard expansion
Thanks!
whats the flag?
thanks ill test it our right now
Is there good way to send players in the direction when they are facing when they go through a portal in bungeecord?
hi
i have a problem with crafting recipes
anyone can help me?
when i click an recipe
dont show it
Help pls what plugin is removing my hoppers!?!? i need to make a hopper clock but after the hopper has passed 2 items it brakes?!?!
nvm i fixed
worldgaurd chest accses
why cant i glow myself a different colour using Eglow as it only colours it the colour as my lukcperms rank
glow is based on scoreboard team color
I need the Lunar Client API, but when I go to click on the link in LunarTools I get "SpigotMC - Minecraft High Performance - Error You are not authorized to view this page or perform this action."
how i can take Lunar Client API?
How do i add a vote key too the vote website? I tried it with /voteadmingui and i put the item in. After i went too look it said "items are not avaible in gui:
Ask lunar
on lunar support?
I mean you can use the API from its releases page here https://github.com/LunarClient/BukkitAPI/
ok thanks
I also have another problem, if I try to enter with the badlion client through the domain of my server does not let me in, but if I do it by entering the ip of the machine:port works
Sounds like you messed up some certificates somewhere
Strange, I had suffered a hacker attack in another vps, because of the other founder who put cracked plugins, and for this I completely reset the plugins keeping only the world, I also reset bungeecord
could anyone help me with the mrl plugin on spigot when i use the command /mrl create in game it says An internal error occurred while attempting to perform this command could anyone help fix this?
i need a server with datapacks and plugins but, spigot is bugged if I use datapacks, they don't work as they should, what can I do?
can you be more specific
what exactly is bugged
isolate the bug without plugins and open a bug report
I'm trying to install a map, to be more specific its name is "Final Paradox", but apparently spigot causes "interference" with the datapacks, so it can't be played correctly
On the map there are some kind of items called "tomes", these give me enchanted golden apple effects and things like that, if I use spigot, these items are useless
Again if you can recreate it with plugins, make a bug report