Posted August 9, 201411 yr Hi! I coded a Client Side mod. Do I have to change something to put it on a Forge server? Please help me, Mike
August 9, 201411 yr This is totally depending on your code. Usually you can just run your mod on client and server side, unless your code runs some stuff that will crash the server (like playing sound effects). You will have to mark these code like: @SideOnly(Side.CLIENT)
August 9, 201411 yr Author Do I have to make a version for the client and one for the server of the mod? Because, if I make the mod for the server like this: @Mod(modid = "mike", name = "MikesMod", version = "1.0.0") @NetworkMod(clientSideRequired = false, serverSideRequired = true) It isn't working. I changed all @SideOnly(Side.Client) to @SideOnly(Side.Server) Please help me, Mike
August 9, 201411 yr Hi By definition, a client side mod doesn't need to be run on the server. So installing it on the server doesn't make any sense. Do you mean that your mod runs in single player mode, but you want to run it multiplayer? That might be very easy or very hard depending on how you've coded it. Maybe you could describe your mod a bit more. -TGG
August 9, 201411 yr Author Hi! The mod makes 3 new dimension. There are 3 portal blocks. And 3 new Flint ad Steels. Please help me, Mike
August 9, 201411 yr Author Hi By definition, a client side mod doesn't need to be run on the server. So installing it on the server doesn't make any sense. Do you mean that your mod runs in single player mode, but you want to run it multiplayer? That might be very easy or very hard depending on how you've coded it. Maybe you could describe your mod a bit more. -TGG I solved it, thanks. Mike
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.