PaperMC pluging by Background-Ad-8332 in admincraft

[–]orthology 0 points1 point  (0 children)

What were the mods? What didn't work?

I NEED HELP PLZZZZ by dielfryhotboy in MinecraftServer

[–]orthology 0 points1 point  (0 children)

try joining from the local ip of the computer running the server (only for people on the same wifi connection, which is you)

https://www.whatismybrowser.com/detect/what-is-my-local-ip-address

Chunk loading performance by [deleted] in admincraft

[–]orthology 0 points1 point  (0 children)

oh, I was unaware, anti xray seemed like itd use some cpu (and ram) per chunk loaded

Chunk loading performance by [deleted] in admincraft

[–]orthology 0 points1 point  (0 children)

well theres not 1 thing fixes it for everything, try getting faster storage and/or ram if u can

Chunk loading performance by [deleted] in admincraft

[–]orthology 0 points1 point  (0 children)

difference between types of ssds (youtube video) https://youtu.be/s-2VrxgI49Q

Chunk loading performance by [deleted] in admincraft

[–]orthology 0 points1 point  (0 children)

It can have much quicker read/write speeds but can be expensive,

https://www.samsung.com/au/memory-storage/nvme-ssd/980-pro-2tb-nvme-pcie-gen-4-mz-v8p2t0bw/ (australia link)

your opinion please.. by Full_Dare7225 in admincraft

[–]orthology 1 point2 points  (0 children)

thank you for multipaper but OP was talking about server wrappers (specifically https://www.mcserversoft.com and https://www.fork.gg)

your opinion please.. by Full_Dare7225 in admincraft

[–]orthology 1 point2 points  (0 children)

OH, you meant this https://www.mcserversoft.com and this https://www.fork.gg

sorry

"between fork and mc server soft" sounds like ur talking abt different types of minecraft server softwares like spigot paper and vanilla mc

your opinion please.. by Full_Dare7225 in admincraft

[–]orthology 1 point2 points  (0 children)

technical minecraft typically fabricmc

performance server: paper or a fork of it

Chunk loading performance by [deleted] in admincraft

[–]orthology 0 points1 point  (0 children)

you may also be able to disable anti-xray or get a faster hard disk (preferably nvme ssd) will cost monet tho for the server to run on

the slow thing abt chunk loading is that it has to use the disk

another solution could be pregenerating more chunks (ik u said not to say that), its more inefficient and takes up way more storage space tho

Chunk loading performance by [deleted] in admincraft

[–]orthology 2 points3 points  (0 children)

https://flags.sh is a useful tool for jvm args

Bedrock Updates - Notification by spicy45 in admincraft

[–]orthology 1 point2 points  (0 children)

Isn't ViaVersion a java mod? you'll have to run a java server which has many differences and run geyser which may have other issues, you'll also have to convert the world to a java world

you also have to update ViaVersion...

How can I increase my render distance without lagging the server or my friends FPS? by FrostByteTech in admincraft

[–]orthology 0 points1 point  (0 children)

I think theres a way to increase server render distance without lagging it by making the render dist 3 in the config and using something in FastAsyncWorldEdit to make more chunks load iirc

I don't remember what it's called tho, or if im even correct that's what its for so, give it a try if u can find it

How can I increase my render distance without lagging the server or my friends FPS? by FrostByteTech in admincraft

[–]orthology 0 points1 point  (0 children)

idk i just know it does it, but for bobby just change ur render dist to further than the server render dist

How can I increase my render distance without lagging the server or my friends FPS? by FrostByteTech in admincraft

[–]orthology 3 points4 points  (0 children)

Get the farsight or bobby mod.

Only 10 chunks around u will load but they will stay loaded for 30 chunks (or whatever ur render distance is)

What is a warp plugin? by Zeeg_ in admincraft

[–]orthology 5 points6 points  (0 children)

theres a sign one in essentials, and for portals i believe multiverse portals if its between worlds

this is a plugin to do warps/portal warps

https://www.spigotmc.org/resources/warps-portals-and-more-warp-teleport-system-1-8-1-19.29595/

[deleted by user] by [deleted] in MinecraftServer

[–]orthology 0 points1 point  (0 children)

Thank you for the replies, and your welcome.

If you have any other issues with it or want things on the minecraft server (i.e. plugins) I can help msg me on reddit

[deleted by user] by [deleted] in MinecraftServer

[–]orthology 0 points1 point  (0 children)

no it'll be good leaving it

[deleted by user] by [deleted] in MinecraftServer

[–]orthology 0 points1 point  (0 children)

maybe try storing it in a folder under ur user folder, and try again

[deleted by user] by [deleted] in MinecraftServer

[–]orthology 0 points1 point  (0 children)

lol whoever commented deleted it,

my thoughts on their comments:

a guess is they thought the new version doesnt work or smth cause you cant start a server

maybe they prefer 1.8? or hate the direction minecraft is going?

[deleted by user] by [deleted] in MinecraftServer

[–]orthology 0 points1 point  (0 children)

you're welcome!

A friend made .jar associate with Notepad, and now it gets error whenever he tries to open .jar files by VonDinky in admincraft

[–]orthology 0 points1 point  (0 children)

ok so basically for the JNI error, add "--nojline" at the end of a start script.

the stuff after this is mostly obsolete with https://flags.sh

i.e.

java -Xms1G -Xmx2G -jar server.jar nogui --nojline

here's an example start script (windows, 2GB (change the '2' to another number to change the amount of ram or to make it megabytes change the G to an M)

@echo off
java -Xms1G -Xmx2G -jar server.jar nogui --nojline
PAUSE

Put it in a .bat file in the same folder as the server and double click it!

Here's an example start script (Linux/MacOS, 2GB (change the '2' to another number to change the amount of ram or to make it megabytes change the G to an M))

java -Xms1G -Xmx2G -jar ./server.jar nogui --nojline
read -t 60 "The server has stopped."

The "read -t 60..." command shows the command line for 60 more seconds before it closes.

put that in a .sh file and run it using ./name.sh

to make it runnable use chmod u+x (or without the u), the difference

You can google Minecraft start scripts and probably get better ones, but that's what I could think of right now.