#help-server
1 messages · Page 341 of 1
Like 80 regularly or up to 80
Sounds like 1.18
org.bukkit.plugin.InvalidPluginException: Cannot find main class `com.forbiddenbox.me.swsutils.SwSUtils'
at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:69) ~[server.jar:3284a-Spigot-3892929-0ab8487]
at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:145) ~[server.jar:3284a-Spigot-3892929-0ab8487]
at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:394) ~[server.jar:3284a-Spigot-3892929-0ab8487]
at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:301) ~[server.jar:3284a-Spigot-3892929-0ab8487]
at org.bukkit.craftbukkit.v1_17_R1.CraftServer.loadPlugins(CraftServer.java:409) ~[server.jar:3284a-Spigot-3892929-0ab8487]
at net.minecraft.server.dedicated.DedicatedServer.init(DedicatedServer.java:233) ~[server.jar:3284a-Spigot-3892929-0ab8487]
at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1010) ~[server.jar:3284a-Spigot-3892929-0ab8487]
at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:305) ~[server.jar:3284a-Spigot-3892929-0ab8487]
at java.lang.Thread.run(Thread.java:833) [?:?]
Caused by: java.lang.ClassNotFoundException: com.forbiddenbox.me.swsutils.SwSUtils
at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:147) ~[server.jar:3284a-Spigot-3892929-0ab8487]
at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:99) ~[server.jar:3284a-Spigot-3892929-0ab8487]
at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
at java.lang.Class.forName0(Native Method) ~[?:?]
at java.lang.Class.forName(Class.java:467) ~[?:?]
at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:67) ~[server.jar:3284a-Spigot-3892929-0ab8487]
... 8 more```
Hey anyone
any idea why my plugin does not load
cause I did check the files and directories
they are all fine
Cannot find main class 'com.forbiddenbox.me.swsutils.SwSUtils' check your plugin.yml ?
is SwSUtils the main class of your plugin?
1.17
The same, but without Laggy World Generation
So what i do?
Show your plugin.yml
What is a good Shop Pluggin that allows to buy "permissions".
Eg: A User buys an item and the user should get a permission(eg: backpack.use)
name: SwSUtils
version: '${project.version}'
main: com.forbiddenbox.me.swsutils.SwSUtils
api-version: 1.17
authors: [ ForbiddenBoXOri ]
description: Extra things to help builders and developers!
commands:
createNPC:
description: Create a npc really quickly
usage: /<command>```
Sorry for the wait
send print of your main class
or verify if main package + class is equals "com.forbiddenbox.me.swsutils.SwSUtils"
what's the package name of your main class?
Wait hold on I did something wrong, I will send it in a few mins.
you can only verify if package name of your main class is equals "com.forbiddenbox.me.swsutils.SwSUtils"
Can someone help me?
I can't give me a Rank with LuckPerms on Bedrock Edetion.
what command are you using?
Ah
Uh InteliJ is not working all of a sudden
or I just messed up my pom.xml
lol I found one weird behaviour
it's easy to change max stack sizes for leathor chest plates, for potions, for diamond shovels.... but not for wooden shovels lol
if you use stack.setAmount, sure
but try to let vanilla stack it
e.g. throw two wooden shovels on the ground separately, then pick them pick back up
Fixed!
/lp user .LoeffelkapDer2 parent set Owner
https://pastebin.com/bk764Zad Okay heres my main class
change main to: com.forbiddenbox.me.swsutils.SwSUtils.SwSUtils
on plugin.yml
your names has .?
this is what i'm trying to do
Oh no it sends an error
when I do
com.forbiddenbox.me.swsutils.SwSUtils
in the main class
I am whith Bedrock on my Java Server.(Geyser)
your package names has SwSUtils and your main class name is SwSUtils
Limit your World and Pregenerate, Reduce the Entity Ticking or Just don't use 1.17
oh...
100% vanilla or using codes?
did an error appear?
using a plugin of course. But tbh I am stupid. It works fine for wooden shovels. I was just too stupid to use my own config file
you can rename package and remove last word
You know about the editor right?
No🤣
You are loosing me a bit there
like just
your main is: com.forbiddenbox.me.swsutils.SwSUtils.SwSUtils
change your plugin.yml to
name: SwSUtils
version: '${project.version}'
main: com.forbiddenbox.me.swsutils.SwSUtils.SwSUtils
api-version: 1.17
authors: [ ForbiddenBoXOri ]
description: Extra things to help builders and developers!
commands:
createNPC:
description: Create a npc really quickly
usage: /<command>
Ah wait that code is wrong cause it gives me an error so its actually
com.forbiddenbox.me.swsutils
your main is main class package name + main class name
you can look in this link
change all of your plugin.yml to this /\
show me your plugin.yml again
name: SwSUtils
version: '${project.version}'
main: com.forbiddenbox.me.swsutils.SwSUtils.SwSUtils
api-version: 1.17
authors: [ ForbiddenBoXOri ]
description: Extra things to help builders and developers!
commands:
createNPC:
description: Create a npc really quickly
usage: /<command>```
let me try to show you my directory and the main class
Main class
package com.forbiddenbox.me.swsutils;
import com.forbiddenbox.me.swsutils.Commands.createNPC;
import org.bukkit.plugin.java.JavaPlugin;
public final class SwSUtils extends JavaPlugin {
@Override
public void onEnable() {
// Plugin startup logic
this.getCommand("createNPC").setExecutor(new createNPC());
}
@Override
public void onDisable() {
// Plugin shutdown logic
}
}
name: SwSUtils
version: '${project.version}'
main: com.forbiddenbox.me.swsutils.SwSUtils
api-version: 1.17
authors: [ ForbiddenBoXOri ]
description: Extra things to help builders and developers!
commands:
createNPC:
description: Create a npc really quickly
usage: /<command>
Oh wait this is development now
just change your plugin.yml /\
Ctrl+Alt+M in Intellij isnt working for me 😦
does it work for you?
oh wrong channel
so 1.16.5
./lp editor
Multiverse
how can i make my chunks load faster?
pregen them
chunky?
sure
can some1 help me why is my spawn sending me to random cords instead of world spawn
my bed isnt there
how can i send screenshot
prnt.scr
You have to be verified
how i get verified?
is it random coords around your spawn or completely random coords?
500 blocks off
Link your discord with your spigot account.
Is it where you spawned the first time you joined the server?
nope
are you using essentialsx spawn?
not anymore
Why not?
Sure, for a price
If I had a hotbar message is there any way to reposition it to a different area on the screen for example if I wanted to display the players currency on the top?
Like, message wont send or
when i send, nothing comes up no error, nothing
it does not send on the server
what plugins do you have on your actual server
just buycraft
well, start taking plugins off until you can.
ok
So you log onto the server, and it lets you in?
i am in rn
How many servers do you have?
5 incluiding proxy
connect into one directly and see if you can send a message or do anything
is it just chat or commands too?
well i cant do that since its connected with bungee i cant connect with it directly
Wait, are you running a cracked server?
You know you can still connect to an offline server...
ill try rn
ip:port
not working
i have to enable something in my bungee config
anyways I would want people to be able to join servers directly
Its just for testing
ok
was it ever working
was what, the chat?
yeah
i got a bungee pack for lobby and i added the plugins into the proxy and then it stopped so yeah
then its one of your plugins
do you know which one could be causing the interference?
probably perms
well LP isnt working, it wont load so that not the problem
btw, the list you sent, is that on your hub server or in your bungeecord server
bungee
did you try taking them all out?
no
I'm getting this spam while no one is using my console:
[23:01:52 INFO]: Unknown command. Type "/help" for help.
[23:01:52 INFO]: Unknown command. Type "/help" for help.
[23:01:54 INFO]: Unknown command. Type "/help" for help.
[23:01:54 INFO]: Unknown command. Type "/help" for help.
[23:01:54 INFO]: Unknown command. Type "/help" for help.
[23:01:54 INFO]: Unknown command. Type "/help" for help.
[23:01:59 INFO]: Unknown command. Type "/help" for help.
How can I figure out what's the command being sent and what's sending it?
check the log
Are you using multicraft
Or that ^^^ I forgot about that bug in multicraft
Idk I guess maybe my host is using it (?)
What's the command being sent?
multicraft automatically sends something in console every few seconds. Its a keep alive/ping thing so they know if its online
how can I block a command in minecraft when the plugin has no permission for it
is it possible to increase the render distance for a guardian beam
Outdated!
oh trust me im well aware @mellow dock
this server in specific is in an archive-y mode
failed 13 minutes after start, hmm
oh it fucking corrupted one of the worlds
what in the hell happened
Ask paper
hey guys!
im trying to set up a server with a mod that adds mice to the game that spawn and villages etc etc, how do i do that
i thought i was getting really close, but im still getting an error
Spigot isn’t for mods
sorry, im using fabric
ik this is for spigot, but maybe you guys know a thing or two about fabric?
Ask in the fabric discord
can someone pls help me
why do i have keep inv even as not op with gamerule keep inv off
Probably a permission
oh
I think LuckPerms has a mode to debug permissions
Are you running luckperms
yes
Mhm
is thjis safe to send to u guys?
yes it just shows the permissions that your server checked
yeop
you gotta die after turning verbose on before uploading
maybe that's why they didn't reply anymore
Their Computer Just Died Because of the Log Being 200Gb+
lol I can relate
that's why my /var/log is on a separate partition
xD
I once did Something Similar, but i Just Changed the Log Path to Another Location
if it works 😄
I don't remember what went wrong when my log was so spammed
some service was going havoc
xD, that Happens, Specially when it does not want to Start
and it Keeps Restarting it
yeah lol.
how can I disable a command in minecraft when the plugin has no permission for it
You can use a Command Hider Plugin Like PL-Hide to Hide that Command and then No one can Use it
For a small server use @summer comet 's permission plugin. I've taking a look into it.
what’s it called
You can find it on his profile, or for more info just contact him.
[07:17:52] [Server thread/WARN]: at net.minecraft.server.v1_12_R1.ChunkRegionLoader.a(ChunkRegionLoader.java:104)
[07:17:52] [Server thread/WARN]: at net.minecraft.server.v1_12_R1.ChunkRegionLoader.loadChunk(ChunkRegionLoader.java:83)
[07:17:52] [Server thread/WARN]: at org.bukkit.craftbukkit.v1_12_R1.chunkio.ChunkIOProvider.callStage1(ChunkIOProvider.java:23)
[07:17:52] [Server thread/WARN]: at org.bukkit.craftbukkit.v1_12_R1.chunkio.ChunkIOProvider.callStage1(ChunkIOProvider.java:16)
[07:17:52] [Server thread/WARN]: at org.bukkit.craftbukkit.v1_12_R1.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:336)
[07:17:52] [Server thread/WARN]: at org.bukkit.craftbukkit.v1_12_R1.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:295)
[07:17:52] [Server thread/WARN]: at org.bukkit.craftbukkit.v1_12_R1.chunkio.ChunkIOExecutor.lambda$syncChunkLoad$0(ChunkIOExecutor.java:18)
[07:17:52] [Server thread/WARN]: at net.minecraft.server.v1_12_R1.MCUtil.ensureMain(MCUtil.java:69)
[07:17:52] [Server thread/WARN]: at org.bukkit.craftbukkit.v1_12_R1.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:18)
[07:17:52] [Server thread/WARN]: at net.minecraft.server.v1_12_R1.ChunkProviderServer.getChunkAt(ChunkProviderServer.java:170)
[07:17:52] [Server thread/WARN]: at net.minecraft.server.v1_12_R1.ChunkProviderServer.getChunkAt(ChunkProviderServer.java:153)
[07:17:52] [Server thread/WARN]: at
how to fix this
Did you downgrade your server
java version?
Minecraft version
do not use older versions than the ones your world was created with, ez
ok thanks
There are world transformers, just uploat the world and select the version, just google it.
In my server when some people join, the chunks dont load and they keep falling into the void forever until they get kicked saying timed out
whats causing this?
i dont think its their internet because 3-4 people have this issue
have you looked at your server performance when they join
sounds sort of like an overloading issue
I think it is very likely to be a firewall issue, where do you host?
"how
*how
Uhh, how could it be a firewall issue?
Well, idk exactly how, but the same happened to me and it was badly configured firewall
doubt its a firewall issue
Firewall wouldn't let them connect at all, unless you have some weird thing when it slows the connection down, never heard of something like this
Mhmm
The person themselves might just have a crappy pc/internet, what specs does your server have?
Most likely it's your server specs, what are they?
Well the problem had something to do with that the server didn't receive packets from established connections,
that would mean its a problem for everyone, while this is a problem for only a select few players
Ahh, you are right, I missed that
Pebblehost
5gb ram server at budget tier
We got only like 6-8 people
1.18.1?
1.17
Where is it hoested
Europe
India
But even im from india and everything is fine for me
Could still be their internet. But 5g is definitely enough, pebblehost is pretty good with not oversaturating their servers
Yeah even i doubt its their internet problem but they never accept it
Thanks btw
They keep blaming the server
can I add more than one bots on discord srv?
im trying to figure out why players cant connect to my server through my subdomain any suggestions as to why this is happening?
they can connect to the ip directly not through the domain
Give it sometime to update
Oh and just a warning anyone can get your ip quite easy with the domain just so you're aware
doesnt the cloudflare proxy fix that?
if not how can i protect my ip while still self hosting the server
It might
from what im aware cloudflare forwards the traffic to my ip and back so the client just uses a cloudflare ip
it redirects all ports
thats why i only have the ports for java and geyser open
anything else i need is using an account based port service like remote.it
Minecraft::world - Chunk provider tickcount(9125) total(36.51% 197.547s, 42.69% of tick)avg(21.65ms per - 21.34ms/0.99 per tick****
also im not vouching for them it just happens to be the first piece of software i found for it
turn off the proxy
@weak drift
?ban @deep ridge cringe scam link
Done. That felt good.
hackers???
@wraith chasm afaik theres no package available on debian for JRE/JDK 8 anymore so u gotta install it the manual way
let me try and find the URL
alright
alright, so what do i do with this after downloading it
tar xvf <file>
and then u can either run server like ./path/to/java/bin/java -jar <server>.jar
or you can add /path/to/java/bin to ur PATH envvar in like ur .bashrc
and that's how i use buildtools too?
yeah
afaik buildtools shouldnt require newer java unless youre using newer MC so
shouldnt need double java either
the path is jre1.8.0_311/bin/java, right?
yeah
Unrecognized option: --jar
-jar
-jar
pog
What is the best NPC/Slapper plugin where i can setup command on the NPC. Like /say lol on click
You can use Citizens
Sorry for my bad englisch
hm wait, does buildtools require the JDK or the JRE...
JRE I think
I mean free plugins
citizens is freemium
oh rlly
I always roll over lul
do you know a plugin where you can barter?
light block plugin??
if people could read than this channel wouldn't need to exist.
any crate opening plugin?
Many
today on boy i love how dns changes can be reflected almost near instant or they can take a whole day
is it possible for askyblock to change sign and greeting message when you create island
how can i make a new superflat world i know this is such an easy question but im going crazy ive been searching it for the past hour and i couldnt find level-type anywhere please help
you can still pass level-type in the server.properties
it just isn't there by default and empty anymore
iirc
CrazyCrates
thank you so much i dont know why on earth they removed it from the GUI
Any good method of pre loading chunks in sponge?
Sir this is a Spigot's
no this is a wendys
can i do the BK 2 for $6 whopper deal
(fucking amazing btw i love burger king whoppers)
Sir we sell spigot's here what is minecraft, are you here to buy a spigot? Is it for a home? block game? whats that
What is the permission note or command to disable fly for everyone
Which plugin are you using?
Yeah but the fly plugin
And players can somehow fly in survival
they are not using any hacks
idk how is fly enabled for them
I have no fly plugin
I had a server using 130. It wasnt good lol. What happens when you make a factions server without any custom plugins
Do you have essentials(plugin)?
so i removed griefprotection plugin from my server (jar and data folder) and the claimed areas are still protected
like players arent able to break blocks in the areas that were claimed before the deletion
how do i fix this?
Yes
can someone help me with this
Have you restarted your server?
yes
Local server or hosted server?
hosted
Yes
Are you using ftp to delete the jar?
yeah im not the server owner just the manager
But I haven't set it up yet
Could be related to the functions plugin, like flying in claimed land or something
Ok, hit F5. Theres a chance it didnt delete it. To be sure stop the server then delete the jar and config folder, then start it back up
oh k
Odd
like its not giving any players the usual plugin messages, like "this claim belongs to name its just not breaking the block in areas where the claims used to be
Idk enough about that stuff to find the solution, could be world data related which someone would have the answer, just not me
and still?
Ok, could be anything with other plugins
but not many, if any at all would conflict or even relate to griefprevention
Ok....
what do i do bruh 😐
Idk enough to answer, absolutely no idea. Just to make sure. when you do /pl in server does it show griefprevention?
no it doesnt
Ok, do you have any permissions on the server set?
wdym
Like do you have a permissions plugin, or just permissions in the permissions.yml file?
luckperms
Have you configured it yet? Potentially could be a permissions issue
how would that be a permissions issue
its specifically only in previously claimed areas
and if i kill myself i go back to one of my old claim coords
Right I see, forgot about that part
Anyone can explain why happens this when using Radmin vpn?
Either vpn cant reach server or too slow
Can the problem be caused. Because my friend created the land world and i created the vpn server?
Could be issue on the server side. Did he port forward the server?
How?
Because he created a normal mc world
And opened on lan
We are on the same "red"
Wdym "red"
wait le me find translation
Whats your first language?
Spanish
Ah
We are conencted on the same net
I only know french lol.
The vpn is probably causing the problem. You should be able to connect without the vpn
No
If we dont connect with the vpn we cannot play on lan
Its like has hamachi
Yeah
Are you connecting using his Radmin ip
and port he got when he enabled lan
Yea
Chance youll have to go to the Radmin VPN discord
Allright thanks
np
so does anyone like a helper or staff member know how to help me with this
hey they still spawn in world (survival) for new players, not hub i added hubthat but if they join the server they get put into world (survival world) not into spawn world how do i fix this?
do you have worldguard?
yes
that is why then. The protection plugin uses worldguard to create regions to protect areas
how do i make hub world a main world in multi verse?
not sure, most likely a config thing
i added stayput
how do i use this?
again not sure, I don't use those things lol
Anyone know a anti-xray plugin that doesnt cause lag?
try phoenix anti cheat
papermc built in anti-xray
yes
It is 1.13 though
does it still work on 1.18?
Orebfuscator
Dead project
true but it still works
it works even if its wo=rong version
From reviews I believe not
No there is no point in doing that
Okayy thanks
how do i disable hunger in a region? world edit and world guard
where?
in Feed Delay like 1
ok
How do I save a file as UTF-8 and not as a ANSI.
It's okay, but not open source
Im trying to update a file for essentials
Pretty sure it's because there's a character not formatted in UTF-8
here's some info https://www.fileformat.info/info/unicode/utf8.htm
just change the encoding or format. Most file editors have this ability
however, by default unless plugins mess with the file encoding, files created are by default UTF-8
Hey guys does anyone know the range in which the 'tick-inactive-villagers' setting applies? Like how close do I have to be for Villagers to tick, I'm wondering since I'm worried that Iron Farms will break
Im using apex hosting, I cant find any options to switch encoding or formats
generally hosts use linux and generally its utf-8 by default and thus no need to worry
however I recommend sometime in the future you get a real hosting provider 🙂
Apex hosting hosts us for free
and its a pretty large server sooo
doesn't change my comment but ok
Hi ! For the custom drops addon for the craftbook plugin, how can i make it a item custommodeldata ?
how to make a clickable link on minecraft messageannouncer?
@west python
.
hey i added rankshops! how do i fix this it says
[21:39:42] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to RankSigns v1.0
org.bukkit.event.EventException: null
it says YOU DO NOT HAVE PERMISSION TO BUY THAT RANK
when i join my server it says kicked whilst connecting to Hub: [LP] a databae error occurred whilst loading permissions... and it goes on one more sentence but is there any way to fix it?
use Updated NoCheatPlus
except the combat checks (that aren't even that great even on Vulcan) everything is great
how can i fix
Minecraft::world - Chunk provider
Minecraft::world - tickEntities cause lagg
those are the minecraft processes that use the most ticks, it just be like that
you can try limiting mob spawns and render distance to limit those
plugins recommended by big server owners and well known dev https://github.com/Fickletcell/Best-minecraft-plugins tried to collect all in one place take a look
yk my server lagg wt 55 players
55 players is quite a lot for a server, it really depends on whats goin on with your plugins, what hardware ya got, how big your world is
could be tons of things
is that all pregenerated?
most of them
thats likely contributing to your Chunk provider tick
entity limiting should defo help tickEntities
realistically you'd need to share a more in-depth timings report if ya need more specific advice
¯_(ツ)_/¯
offline mode yk
lol
hm now its 20 tps somethimes the tps drop for a long time and get better
would need more timings info to do anything more lol
Aikar's Timings Viewer - View Timings v2 reports from Paper and Sponge
looks like mostly mob spawns
you have clearlagg running on there?
yea
Remove it
bro whats wrong wt offline mode?
why?
this is where youll want to make some changes
especially mobstacker i would recommend (first point will be most helpful for you)
You're using an illegal copy of the game
not me my players lol
It's like asking "bro whats wrong with stealing"
And you're supporting them
lul
lets put the moral discussion aside, not really what this channel is for
MobStacker, or MobMerger
ive used mobstacker but theyre both good so ive heard
What version is it for?
This is already breaking discord tos. Supporting piracy isn't allowed and Spigot really should start enforcing it
Mob stackers should be avoided unless you have a bunch of spawners. And if so try to only enable it for spawners
updated ver
their issue is a large amount of entities so its kind of the best solution in this case
imo
so remove clearlagg?
It will make things worse. The problem with stacking mobs is that the mob spawning will never stop since things will never reach the mob cap
defo keep clearlagg, thats helping for sure
It's not
lamo
you can set a cap within the mobstack plugin
and clearlagg definitely helps my guy lmfao
idk who is smarter
Tell me how and I'll prove you wrong
just google how to remove entity lag from your spigot server and follow whatever comes up
¯_(ツ)_/¯
Oh and hurry battery at 5%
Lol
i really dont feel the need to argue with you, he asked for advice and I gave my opinions 🙃
The main thing with clear lag is removing entities like items and mobs. The mobs will respawn and the items will already remove themselves
Items will still tick while clearlagg is installed causing lag from both items and clearlag rather than just items
Having too many items? Lower the despawn timer in one of the configs
Want to force remove them use the vanilla kill command
.
I see! Thank you 😄
np :)
One more thing sorry. So right now villagers is set to 32 Blocks. Outside of that do villagers still tick as normal with the 'tick-inactive-villagers' set to False? But with it set to True they don't tick outside the range?
yes
setting it to false, they will tick active or not
true, they wont tick outside of range
Any recommendations for a good anti-lag plugin
Antilag plugins are generally bad
some popular ones https://shockbyte.com/billing/knowledgebase/152/Using-Plugins-to-Reduce-Lag-on-Your-Minecraft-Server.html
The Shockbyte Knowledgebase contains hundreds of tutorials for managing your game servers for Minecraft, Hytale, ARK, Rust and more.
reviews vary, helps for some hurts for others, just do whatever seems to work best for you is what id say
Tweak settings and upgrade hardware are your best options
spigot does have pretty good lag reducing config options ^
Paper even more so
ye
i use pufferfish which seems to help some too but havent looked too far into their options
Here is another one: https://www.spigotmc.org/threads/guide-server-optimization⚡.283181/
[14:40:21 WARN]: Can't keep up! Is the server overloaded? Running 5008ms or 100 ticks behind
this does not give me any information as to whats going on lol
that just happens some times tps drop and go back
youre having lag spikes
could be a plugin, could need to optimize your set up like tomasan, Olivo, and I recommended, could be something else
theres lots of things that can cause lag
What is handleDisconnection() called twice
It says this after Warn
could be lots of things, got a log?
With essentialsx how do i get operators not to have their name red
config.yml
thank you
Np:)
im completely redoing my server rn lol
why?
i screwed it up the first time trying to do everything seperately instead of using essentialsx
installed a bunch of useless plugins and slowed down the server
hi, i wonder if someone know what plugin from these
AdvancedBan, AuthMe, CCTV*, ChestCleaner, CoreProtect, CustomCrafting, DiscordSRV, EditableSign, F3NPerm, FartherViewDistance, ForServer, Geyser-Spigot, InteractiveChat, InteractiveChatDiscordSrvAddon, LuckPerms, MiniMOTD, PlaceholderAPI, PlasmoVoice, PlugManX (PlugMan), ProtocolLib, SimpleStack, SkinsRestorer, spark, SuperVanish, SurvivalInvisiframes, TabTPS, UltimateAutoRestart, Vault, ViewDistanceTweaks, WolfyUtilities, WorldsColor
spam in console "Auto-saved all files!"?
without any prefix
what plugin stacked mobs again?
its for stacking items
no mobs
like stack pearls in 64 stack
i was asking for one for my server
oh, sorry
i want the thing that stacked mobs into one mob you could kill multiple times
Intel(R) Xeon(R) E-2274G is good cpu?
Look up single threaded performance online
Generally Xeons are not good for Minecraft
Is it possible to add baseheads to a deluxehub server selector menu?
how would i make a percentage placeholder?
like theres %progress_bar_{placeholder}%
for a progress bar, but how would i make that a percentage not a bar
Please find a plugin.
Can I disable WorldEdit in a given world? help me
I believe so in the config
is there a way to track who modified what blocks without obliterating console
id say coreprotect but i think there was some plugin that superseded it
i still use coreprotect, dont know of any that superseded it but coreprotect works wonders
am i able to change how long the night or day lasts
you'd want a plugin for that or you could change tickspeed but that will affect a ton of other stuff with it
wasnt there a way to change that though?
not to my knowledge but i could be wrong
You can use Purpur for this
wouldnt this replace paper
It would
is it an alternate version of paper or a completely different server type
It's a fork
its a fork of a fork of spigot***
Just a fork right now
i dont know what that 100% means, like would that change any settings i have in paper.yml etc
nope, wont break that
All you need is change the jar and change the setting in the purpur config
[19:50:28] [Server thread/WARN]: at net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:270)
[19:50:28] [Server thread/WARN]: at net.minecraft.server.v1_8_R3.PacketPlayInFlying.a(SourceFile:126)
[19:50:28] [Server thread/WARN]: at net.minecraft.server.v1_8_R3.PacketPlayInFlying$PacketPlayInPositionLook.a(SourceFile:18)
[19:50:28] [Server thread/WARN]: at net.minecraft.server.v1_8_R3.PlayerConnectionUtils$1.run(SourceFile:13)
[19:50:28] [Server thread/WARN]: at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[19:50:28] [Server thread/WARN]: at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[19:50:28] [Server thread/WARN]: at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:44)
[19:50:28] [Server thread/WARN]: at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:715)
[19:50:28] [Server thread/WARN]: at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[19:50:28] [Server thread/WARN]: at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[19:50:28] [Server thread/WARN]: at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[19:50:28] [Server thread/WARN]: at java.base/java.lang.Thread.run(Thread.java:831)
[19:50:28] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Field.get(Object)" because "playerConField" is null
[19:50:28] [Server thread/WARN]: at org.leakparkour.l.b.k(Reflection.java:42)
[19:50:28] [Server thread/WARN]: at org.leakparkour.g.a.a(Hologram.java:367)
[19:50:28] [Server thread/WARN]: at org.leakparkour.g.a.a(Hologram.java:125)
how to fix it
[19:50:28] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Field.get(Object)" because "playerConField" is null
.
and how to fix it?
what are you doing?
how would i do this with purpur
itll be in the purpur.yml
it adds more configurable options
shouldnt break anything as it is a fork of paper
The official documentation for Purpur. Purpur is a fork of Paper with the goal of providing new and interesting configuration options, which allow for creating a unique gameplay experience not seen anywhere else.
whats goin on lol
Ive been trying to figure out for weeks why GeyserMC stopped working all of a sudden
and some commands
are you on latest version dreamy?
Yes
I even did a new directory on my server
With brand new files
with all the latest versions
https://discord.geysermc.org/ i would try their discord support server
nothing worser than getting banned on the enginehub dc
lol
i was helping someone and they banned me
Maybe you cant ping in their discord but I can ping em in the spigot server 
I do not understand what you are saying
Hello, I'm having issues with nether spawning, my guardian farm is behaving as vanilla, but my nether gold farm (world was tested in singleplayer and it works fine there and Im alone on the server currently) is severly underperforming and I have no idea what is going on. Mob cap is set to 70, monster spawn tick is 1, mob spawning range is 4, I don't even get 60 entities spawned in total let alone mobs, server render distance is 15, simulation 12 and I have same or greater myself. All I have modified was entity-tracking-range and entity-activation-ange, all set to 200 with no performance issues at all.
Edit: Spigot 1.18.1
Are you running on spigot
Oh yeah, my bad, forgot to mention that
Ok because if it was a fork, it wouldve been better to ask the official devs
youre fine
It is 1.18.1 spigot, to be precise
is it normal to have a bukkit.yml paper.yml and purpur.yml file
like all 3 or should i just have one
and spigot.yml
idk if i should have all 3
you should have them all
ok good
Is there another plugin than GeyserMC
I dont like their support
Theyre not helping me and im bored looking for a fix
I just want to change lol
ProtocolSupport
protocol support isnt good
if you join on a client pre-1.16 itll fuck up all netherite or pre-version items
itll turn everything netherite into diamond
i believe the new 1.18 version fixes that iirc
👁️👄👁️
dont quote me on that tho haha
i will look into this @gentle bridge
best of luck!
It does the same thing than geysermc right? @crude basalt
Your username contains illegal characters Allowed chars: [a-zA-Z0-9_]*. 1.18.1
is there an issue? lol
people with bedrock can't join the server
Bedrock is like Minecraft easy mode
yes
how would i make the netherite fire resistance infinite on purpur?
like what number or word would i put there
Try asking them or reading the wiki
im trying to start my server and when i join LP gives me this error, ```
[LP] A database error occurred whilst loading permissions data. Please try again later. If you are a server admin, please check the console for any errors.
find what lol
Bedrock support for PS
there is no bedrock support with protocol @merry elk
Yeah
Only geyser is an option
algum br? poderia me ajudar a criar um servidor na minha maquina para poder adicionar plugins
@fringe frigate English only
is it possible to make essentialsxspawn make someone joining for the first time spawn in a specific world
pretty sure it says this in the config
/setspawn newbies
at least in the essentials days that was it
how would i set a spawn radius with essentials spawn?
i tried doing it with the normal /setworldspawn and /spawnradius commands but its not working
its spawning me on the specific world spawn block if i kill myself
now essentials is telling my my warps dont exist even though they're still in the warps folder and fill in the name when i type /warp
can someone help
Make sure you're on the latest dev build and that you don't have multiple warp plugins
Also what happens when you try to warp
it says "Error: that warp doesnt exist"
what other plugins would conflict with it? i dont have another warp plugin to my knowledge
What plugins do you have
alot of them that im trying to remove
i can screenshot
1 sec
its not my server, ive been trying to reduce the useless plugin count lately so ill send you a screenshot of my list once the server restarts
i cant send images here
@tawny dust
you hasve to verify your discord
how
you have to make a https://www.spigotmc.org/account
got it
sorry
there
\
spigot.com is apparently malware, lul
im in the process of updating and removing unnecessary plugins
you have way too many plugins
yeah i literally just said im in the process of removing them
its not even my server
the owner is just asking me to manage it
I know, it was me just making an observation, Ive never seen a server go above 50 in plugins.
yeah he just didnt remove alot of them in the process of making the server
but looking at that list, doesnt look like you have multiple warp plugins
yes
yeah we get complaints about that every now and again
people are stupid
Where i can download Forge Server?
sir this is a wendy's
When people on my server enter the portal in the end, if they dont have a spawnpoint set they will end up in a loop, constantly spawning ontop of the portal then falling back down in it
Bumping this just in case it got lost in the wall of text.
Just realized I was running out of date on 1.18 so just updated to 1.18.1. Went into my start file to change the jar name and noticed this in there: --add-opens java.desktop/java.awt=ALL-UNNAMED
Any idea what this is? Not sure if this is something I added during the jog4j scare or if this is a malicious argument added by a jog4j hack. Not very familiar with Java and I just wanted to check because I also had the Ukranian bot spamming my DynMap chat and I was running 1.18 at the time with an out of date DynMap version.
Nothing to do with log4j
Huh. I have no idea when or why I put that in there. Any idea what that could be for? I guess I'm fine removing it.
Probably to make a plugiin work on java 17
Ah, I see. Alright, thanks for the help. And for all of your awesome work!
We have a spawn in a different world
Anyway to make this stop appearing in chat?
It’s a gamerule
But I never remember which one
sendCommandFeedback? logAdminCommands?
Both false, still happens.
How to stop players pushing other players around? is there a setting?
is there any best plugin for rank shop? since iam tryna add rankshop that connects to luckperms and while buying the rank it costs vault money any suggestions?
same iam asking it also but idk if theres a gamerule lol
I believe their is a setting to turn off player collision lemme check
I lied
yeah lol
I thought I saw one before but guess not
same lol
is there any best plugin for rank shop? since iam tryna add rankshop that connects to luckperms and while buying the rank it costs vault money any suggestions?
I just use luckperms, essentialsx for eco, then use a gui plugin or smth where when they buy rank it takes money from them and then gives luckperms rank
yes what plugin is that?
can u send the plugin link?
Just search in safari command panels spigot
kk
There are also plugins made for ranks i can probs find one gimme a sec
i have
rankgrant+ and luckperms\
for my ranks
can you teach me how to add rankshop?
commandpanels
Minecraft GUI Plugins are great! This plugin allows you to create custom GUI menus for your server. Command Panels are easy to setup and can get you along ways.
Command Panels Plugin: https://www.spigotmc.org/resources/command-panels-custom-guis.67788/
Command Panels Discord: https://discord.gg/yyB3p5G
✮ ReviveNode Hosting:
➜ Promocode: "ST...
There
Basically make a custom gui with custom size, then once you place blocks etc in the plugin folder you can set it to run cmds and use conditionals to where if they have a rank already they can’t buy it again etc etc
That’s how I made a black market on my server
Also allows making of custom cmds
@normal osprey ^
how do i start it?
Watch yt it will show
it needs to be chests?
i want it to be in the gui doh-
No no that’s just how you make it
It can be however many rows you want an is a cmd
check dm bro bro
HUAWEI HG659 Gateway
wifi owner here? cause port forwarding sucks and i need some help please
Are you hosting a server on wifi?
[08:13:42] [Server thread/INFO]: SHUBLEx issued server command: /tb arenas
[08:13:43] [Server thread/INFO]: SHUBLEx issued server command: /tb arenas
[08:13:45] [Server thread/INFO]: SHUBLEx issued server command: /tb arenas
[08:13:47] [Server thread/INFO]: SHUBLEx issued server command: /tb arenas
[08:13:49] [Server thread/INFO]: SHUBLEx issued server command: /tb arenas
[08:13:50] [Server thread/INFO]: SHUBLEx issued server command: /tb arenas
[08:14:06] [Server thread/INFO]: SHUBLEx issued server command: /hd list
[08:14:12] [Server thread/INFO]: SHUBLEx issued server command: /hd
[08:14:16] [Server thread/INFO]: SHUBLEx issued server command: /hd help
[08:14:26] [Server thread/INFO]: SHUBLEx issued server command: /hd edit tournamnet
[08:14:29] [Server thread/INFO]: SHUBLEx issued server command: /hd edit tournament
[08:15:21] [Server thread/INFO]: SHUBLEx issued server command: /hd setline tournament 2 &6The Bridge [1.0]
[08:15:33] [Server thread/INFO]: SHUBLEx issued server command: /hd removeline tournament 2
[08:16:03] [Server thread/INFO]: SHUBLEx issued server command: /hd info tournament
[08:17:42] [Thread-3/INFO]: Stopping server```
Why does my server shut down suddenly?
This is not nearly enough info to help you at all
What information should I send?
RANKSHOP:
perm: default
rows: 5
title: '-------- RANKSHOP --------'
empty: BLACK_STAINED_GLASS_PANE
item:
'20':
material: DIAMOND
stack: 1
name: '&d&lBUY VIP+ ROLE'
commands:
- 'paywall = 300,000'
- 'add-data = vip+ bought'
- 'msg= Thank You For Buying Vip+!'
- 'console= lp user %cp-player-name% parent set vip+'
lore:
- '&b&lDO NOT BUY AGAIN AFTER BUYING!'
- '&b&lIT WILL TAKE YOUR MONEY AGAIN!'
'24':
material: GOLD_INGOT
stack: 1
name: '&6&lBUY VIP ROLE'
commands:
- 'paywall = 100,000'
- 'add-data = vip bought'
- 'msg= Thank You For Buying Vip!'
- 'console= lp user %cp-player-name% parent set vip'
lore:
- '&b&lDO NOT BUY AGAIN AFTER BUYING!'
- '&b&lIT WILL TAKE YOUR MONEY AGAIN!'```
i need help! they didnt pay the "paywall" but still got the vip role !!! how do i fix this!?
Can i dm someone?
https://www.spigotmc.org/resources/ranksigns.3868/
I ranksign i downloaded
And the https://mclo.gs/L8FaKip
Lods
Logs
Full server log
DO NOT CLICK and needs to be banned
Not without their permission. You're using a no longer updated plugin, dm the creator. And what do you mean without paying, like right click the sign and still get the rank even if they have 0 in their bank?
So actually opened the plugin link, you're asking support for a 6 year old never updated plugin...
Evening, im looking for a way to keep specific mobs inside a region, if anyone knows a way please @ me
Like prevent them from despawning when they're in said region?
I think they want the mobs to be unable to leave the region
like an invisible border
for the mobs
Barrier blocks, case closed lol
Hello, how to make spigot not break the datapack?
I have a datapack and in vanilla it works perfectly, but as soon as I switch to Spigot it doesn't work anymore... What can I do?
What does spigot break about it
Then stay on vanilla?
spigot doesn't break any datapacks for me
what datapack are you talking about @golden olive
wrong ping
oh no
correct ping
Paper referred me to you, "because it's not their fault"
XD
https://www.planetminecraft.com/data-pack/manic-5338125/
It also works under fabric
Correct a way to make it unable to leave the region
in my case im working with a enderdragon
you could pay someone a bit to get a custom plugin for this 😛
i'd rather try my luck finding a person who knows a free way instead of spending money and finding afterwards out there's already a way to do it for free xD
sure, but if you don't find any, feel free to DM me 😛
Afterwards, if everyone blames each other, I won't be out of the woods!
I'm assuming 1.18.1
Well if u could make it i'd say go for it and post it on spigot etc, im sure people will buy it if there really is no other way
Yeah and I use a fork of a fork of a fork of a fork of a fork.....
So you don't use just base spigot
I doubt it would get approved as premium resource, it would be maybe 50 lines of code in total 😄
Yes, but I tried with spigot only and it did not work
Now this was years ago, but use a custom mobs plugin, mythicalmobs allows you to set custom areas it stays in
So again I ask, what happens when you load it
Bah nothing it tells me that the datapack and of course the server, but the custom entities do not spawn naturally
Because the entities I can make appear, but that by using commands
How did you add the datapack
i see, and ur asking how much for a insightable 40-70 lines of coded plugin.
By putting the datapack in the world folder then datapack
not much, it's like 20 minutes of work
but this isn't the right place to discuss it anyway 😄
Did you do this when the server was still up or shut down?
The server was shut down
um so i made a lifesteal smp server with spigot on aternos for 1.18.1 then it says U need spigot and i cant go in the server
what?
who says "u need spigot"
u need to download spigot to get into the server
show screenshot
seems like an aternos support problem
you probably did not set up the server correctly/fully
👍
I’d use aternos if I was able too
ik
its > than any other host
Can find any spigot mob list plugins, I saw yesterday but seem to not find it, what I need is just simple command that will return all currently loaded hostile mobs (can be passive mobs too, but specifically after the hostile ones), and my nether mob cap problem still exists :/
what kind of mob list plugins? which ones are around or like every that exist?
all currently loaded, so all that are counting towards the mob cap at that moment.
All I keep finding are kill trackers and one plugin that shows most populated chunks.
if the network im on cant port forward can i redirect the port through a linux aws free tier instance
can someone lend me a minecraft shop and hub map?
hi
when i start my game (local host) i have an error
C:\Users\steel\Desktop\server>java -jar spigot-1.18.1.jar
Error: A JNI error has occurred, please check your installation and try again
Exception in thread "main" java.lang.UnsupportedClassVersionError: org/bukkit/craftbukkit/bootstrap/Main has been compiled by a more recent version of the Java Runtime (class file version 60.0), this version of the Java Runtime only recognizes class file versions up to 52.0
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.security.SecureClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.access$100(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.launcher.LauncherHelper.checkAndLoadMain(Unknown Source)
how i fix it
?
pls
we dont have access to that discord image lol
but even if you did upgrade your java, your JRE that is being used is not the new one, so ya gotta change that
in cmd do java -version
yeah and ?
whats it say
Java(TM) SE Runtime Environment (build 1.8.0_311-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.311-b11, mixed mode)```
yeah 1.18 is gonna want java version 17
and how i get java 17 ?
did you download it already?
?java
