Jump to content
  • Home
  • Files
  • Docs
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Non-Forge
  • Minecraft General
  • List of server mods?
The update for 1.13 is being worked on - please be patient. (Updated 02/19/19)
Sign in to follow this  
Followers 0
dtbradio

List of server mods?

Started by dtbradio, June 6, 2016

6 posts in this topic

dtbradio    0

dtbradio

dtbradio    0

  • Tree Puncher
  • dtbradio
  • Members
  • 0
  • 2 posts
  • Report post
Posted June 6, 2016

This may not be the appropriate forum section for this question, but is there a posted list of server mods available for a Forge server running MC 1.9.4, along with good instructions on installing the client and server side parts of each mod (if they are different)? ? I've successfully set up a Forge server and now want to un-vanilla it, but so far I've not had any success with the ones I've tried to use. The server always crashes.

 

Also, I'm looking for add-ons or mods that will allow me to set up safe zones, add pre-made structures, etc. My research has pointed to several, but all of the ones Ive seen seem to require a Spigot or Bukkit server.

 

Any help appreciated.

Share this post


Link to post
Share on other sites

Draco18s    1928

Draco18s

Draco18s    1928

  • Reality Controller
  • Draco18s
  • Members
  • 1928
  • 12868 posts
  • Report post
Posted June 6, 2016

This may not be the appropriate forum section for this question,

 

This isn't even the right site.

 

but is there a posted list of server mods available for a Forge server running MC 1.9.4,

 

Yes, it's called Curse.com

 

along with good instructions on installing the client and server side parts of each mod (if they are different)? ? I've successfully set up a Forge server and now want to un-vanilla it, but so far I've not had any success with the ones I've tried to use. The server always crashes.

 

1) Put mods in the mods folder

2) Forge black magic

3) Modded server

Share this post


Link to post
Share on other sites

Choonster    1593

Choonster

Choonster    1593

  • Reality Controller
  • Choonster
  • Forge Modder
  • 1593
  • 4980 posts
  • Report post
Posted June 6, 2016

Most Forge mods are universal, which means the same mod runs on (and is required on) both the client and server. The exceptions are things like HUDs/minimaps (usually client-only) or admin tools like permission management/backup (usually server-only).

 

Single player still has a server running in the background, so most server-only mods will still work with it.

 

Refer to the mod's description/installation instructions to see which sides it runs on.

Share this post


Link to post
Share on other sites

dtbradio    0

dtbradio

dtbradio    0

  • Tree Puncher
  • dtbradio
  • Members
  • 0
  • 2 posts
  • Report post
Posted June 6, 2016

Thanks for the replies.

 

@Draco: When I searched for "official minecraft forge forum", this site is what I got. Thanks for the link to Curse.

 

@Choonster: Thanks for your input. I was assuming most were universal, but since every single one I tried crashed the server, I was beginning to assume I was wrong. Must be another issue I'm not aware of... The minimap and perms mods, surprisingly, I actually already understood were single side mods (client OR server).

Share this post


Link to post
Share on other sites

Choonster    1593

Choonster

Choonster    1593

  • Reality Controller
  • Choonster
  • Forge Modder
  • 1593
  • 4980 posts
  • Report post
Posted June 6, 2016

The Modder Support section is for mod developers, but this thread would fit the General Discussion or Minecraft General sections (and I've requested it be moved to one of them).

 

If you want help with the crashes, post in the Support and Bug Reports section. Make sure you read the EAQ before posting.

Share this post


Link to post
Share on other sites

Draco18s    1928

Draco18s

Draco18s    1928

  • Reality Controller
  • Draco18s
  • Members
  • 1928
  • 12868 posts
  • Report post
Posted June 6, 2016

@Draco: When I searched for "official minecraft forge forum", this site is what I got. Thanks for the link to Curse.

 

Curse hosts mods, but is not the only repository (although be aware that there are some really scummy ones out there).  It also hosts the Minecraft forums which has a mods subfora which may have a wider selection.

 

The Minecraft Forge site (here) is more narrowly focused on mod development although not entirely (its more like "this is where some of the developers hang out and sometimes they want to talk about non-development related topics").

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  
Followers 0
Go To Topic Listing Minecraft General

  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • BeardlessBrady
      [1.12] Making a TESR less laggy

      By BeardlessBrady · Posted just now

      How would I go about getting a baked model from an itemstack?
    • Drachenbauer
      [1.13.2] How do i setup a block propertys constructor in a blockbase?

      By Drachenbauer · Posted 20 minutes ago

      but i cannot look inside there, if i hover over my imports, who starts wich minecraft, i get a popup with message: and if i try to open such a class to look into it, i just get an more advanced info-vindow, that´s not a java-editor
    • amelisse
      [1.13.2] How Register Entity for new Snowball

      By amelisse · Posted 23 minutes ago

      I dev a new Snowball dirt i register item but i don't know how register ans declared this entityDirtBall? and how created entitype?     EntityDirtBall.class // // Source code recreated from a .class file by IntelliJ IDEA // (powered by Fernflower decompiler) // package net.amelisse.craftland.tileentity.items; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityType; import net.minecraft.entity.monster.EntityBlaze; import net.minecraft.entity.projectile.EntityThrowable; import net.minecraft.init.Particles; import net.minecraft.util.DamageSource; import net.minecraft.util.math.RayTraceResult; import net.minecraft.world.World; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.api.distmarker.OnlyIn; public class EntityDirtBall extends EntityThrowable { public EntityDirtBall(World world) { super(EntityType.SNOWBALL, world); } public EntityDirtBall(World world, EntityLivingBase entity) { super(EntityType.SNOWBALL, entity, world); } public EntityDirtBall(World world, double x, double y, double z) { super(EntityType.SNOWBALL, x, y, z, world); } @OnlyIn(Dist.CLIENT) public void handleStatusUpdate(byte b_) { if (b_ == 3) { for(int lvt_2_1_ = 0; lvt_2_1_ < 8; ++lvt_2_1_) { this.world.spawnParticle(Particles.ITEM_SNOWBALL, this.posX, this.posY, this.posZ, 0.0D, 0.0D, 0.0D); } } } protected void onImpact(RayTraceResult p_70184_1_) { if (p_70184_1_.entity != null) { int lvt_2_1_ = 0; if (p_70184_1_.entity instanceof EntityBlaze) { lvt_2_1_ = 3; } p_70184_1_.entity.attackEntityFrom(DamageSource.causeThrownDamage(this, this.getThrower()), (float)lvt_2_1_); } if (!this.world.isRemote) { this.world.setEntityState(this, (byte)3); this.remove(); } } }  
    • Drachenbauer
      Error with block registration

      By Drachenbauer · Posted 31 minutes ago

      but if i start the properties for the ItemBlock with (Item.Properties. in ItemInit.ITEMS.add(new ItemBlock(this, null).setRegistryName(this.getRegistryName())); instead of "null" in my block class, the dropdown-menu holds only the options: -class:Class<net.minecraft.item.Item.Properties> -super -this   for Block properties in the blockinit it will show me things like material, sound or hardness/resistance
    • Kemanorel
      [1.12.2] Bit of help with removing baby zombies?

      By Kemanorel · Posted 39 minutes ago

      Myself and the group I play with heavily dislike baby zombies so I decided to try to remove them. However, whenever I test it by spawning a bunch of zombies, I still get a few babies in there. This is the code being used.  
  • Topics

    • BeardlessBrady
      7
      [1.12] Making a TESR less laggy

      By BeardlessBrady
      Started Yesterday at 04:36 PM

    • Drachenbauer
      7
      [1.13.2] How do i setup a block propertys constructor in a blockbase?

      By Drachenbauer
      Started Tuesday at 06:16 PM

    • amelisse
      0
      [1.13.2] How Register Entity for new Snowball

      By amelisse
      Started 24 minutes ago

    • Drachenbauer
      13
      Error with block registration

      By Drachenbauer
      Started Tuesday at 10:50 PM

    • Kemanorel
      0
      [1.12.2] Bit of help with removing baby zombies?

      By Kemanorel
      Started 39 minutes ago

  • Who's Online (See full list)

    • MORIMORI0317
    • Terrails
    • amelisse
    • BeardlessBrady
    • Ugdhar
    • DavidM
    • Keksuccino
    • Drachenbauer
    • LexManos
    • Kemanorel
    • WilliHay
    • trexxet
    • FloppyGaming
  • All Activity
  • Home
  • Non-Forge
  • Minecraft General
  • List of server mods?
  • Theme
  • Contact Us

Copyright © 2017 ForgeDevelopment LLC Powered by Invision Community