Jump to content

A few questions from a more less relatively new Minecraft Server hoster


Recommended Posts

Posted

Hi guys,

 

i just found this Website while looking for alternatives of Bukkit Server, especially since there seems to be the end of the line now with the legal situation with Notch recently.

I just rented my first Multiplayer Server, before I only played via LAN and SinglePlayer.

 

Now my question, what are the benefits or differences or maybe even disadvantages of hosting Minecraft with Minecraft Forge instead of Bukkit, which I have installed on my Server. My hoster doesn't have Minecraft Forge in his available Mod list, but the option to ask to get them to add that is there. I really only need a few plugins like WorldEdit, which is most important for me. So what are the differences for me hosting MC with this Mod here, instead of Bukkit ?

 

Or does it make more sense to stick with the Bukkit version I have installed, which is something like 1.7.9 (couldnt get 1.7.10 versions anymore because of the current Bukkit legal situation) ?

 

I would appreciate any help in this matter.

Thank you in advance.

 

Wolfseye

Posted

Assuming you're using something like mcprohosting, you still should have ftp file access to the files you're hosting on their server.  You can set your server to Vanilla minecraft pre-1.8 and manually copy in Forge over FTP.

 

At least that's what I'll be doing when Forge supports 1.8.  I also came here from the fallout at Bukkit.

Posted

... looking for alternatives of Bukkit Server... what are the benefits or differences or maybe even disadvantages of hosting Minecraft with Minecraft Forge instead of Bukkit, which I have installed on my Server. My hoster doesn't have Minecraft Forge in his available Mod list, but the option to ask to get them to add that is there. I really only need a few plugins like WorldEdit, which is most important for me. So what are the differences for me hosting MC with this Mod here, instead of Bukkit ?

 

Or does it make more sense to stick with the Bukkit version I have installed

 

If you want to start a new world, then you can start under a new program. However, if you want to port an existing world to a new server, then it's very tricky to change from one line of development to another. Anything (block types, items, entities etc) that one modded server saved into the world's files but is not known to the new server's mods is prone to be discarded. Seemingly random chaos can ensue. Unless you have a clear understanding of what your mods are doing (and not doing) internally, you shouldn't jam an existing world from one mod to another.

 

If you decide that you can switch to a Forge-modded server, especially if you dip your tow in the water with a new world, is there something stopping you from hosting it yourself? I run mine on the same machine as my web server. It sits in my laundry room whirring away 24/7, and my Comcast broadband can support about 6 players concurrently. If you're new to MC server, or if you're just trying out something, then your usage pattern is likely not in the hundreds of players on at the same time. You might start by running at home. You can port that world later to a Forge-modded server on a higher-bandwidth host if you decide to keep it and grow it.

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I am having some issues starting an RLCraft server on a minimal install of Debian 12. I have Java installed and I'm able to start the vanilla Minecraft server jar no problem and people can join and play without any issues, as soon as I try to create a new directory with the Forge jar the initial install with the INSTALLER jar works when I use the java command with the --installServer flag, but as soon as I try to start the server using the forge jar that is NOT labelled with installer I get the following error: A problem occurred running the Server launcher.java.lang.reflect.InvocationTargetException         at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)         at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)         at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)         at java.base/java.lang.reflect.Method.invoke(Method.java:569)         at net.minecraftforge.fml.relauncher.ServerLaunchWrapper.run(ServerLaunchWrapper.java:70)         at net.minecraftforge.fml.relauncher.ServerLaunchWrapper.main(ServerLaunchWrapper.java:34) Caused by: java.lang.ClassCastException: class jdk.internal.loader.ClassLoaders$AppClassLoader cannot be cast to class java.net.URLClassLoader (jdk.internal.loader.ClassLoaders$AppClassLoader and java.net.URLClassLoader are in module java.base of loader 'bootstrap')         at net.minecraft.launchwrapper.Launch.<init>(Launch.java:34)         at net.minecraft.launchwrapper.Launch.main(Launch.java:28)         ... 6 more   I have tried using newer versions of Java directly from Oracle as well. Has anybody been successful in starting and running a RLCraft server from the terminal on a Linux machine? I cannot figure out why it doesn't want to work but the vanilla jar works without issue. Thank you in advance!
    • This is my latest attempt :  public class ManaScreen extends Screen { Mana mana = new Mana(); boolean removeManaBar = false; ResourceLocation manaBar = ResourceLocation.fromNamespaceAndPath(RSGArmoury.MOD_ID, "/textures/block/spawnable_arena_wall.png"); public ManaScreen() { super(Component.literal("Mana")); } @Override protected void init() { super.init(); Minecraft.getInstance().setScreen(this); } @Override public boolean isPauseScreen() { return false; } @Override public void render(GuiGraphics pGuiGraphics, int pMouseX, int pMouseY, float pPartialTick) { pGuiGraphics.blit(manaBar, 10, -10, 0, 0, mana.getMana(), 10, mana.getMana(), 10); if (removeManaBar) { this.onClose(); return; } super.render(pGuiGraphics, pMouseX, pMouseY, pPartialTick); } public void addManaBar() { removeManaBar = false; Minecraft.getInstance().setScreen(new ManaScreen()); } public boolean removeManaBar() { return removeManaBar = true; } }
    • I tried a few different things that all didnt work. Right now I have nothing but what I had that seemed most likely to work was just a guiOverlay.blit(x, y, z, vx, vy, getMana()). I dont remember the exact code but it was somthing along those lines. It was in a new class extending screen I believe.
    • yo help pls  i get this error message The game crashed whilst rendering screen Error: java.lang.NullPointerException: Rendering screen https://pastebin.com/fHwr7nXA
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.