Jump to content

Help: Howto: Manage different servers with different configs


keybounce

Recommended Posts

I want advice on managing two different servers with two different config files.

 

I have a 1.2.5 server, and a 1.3.2 server. Both have Twilight Forest. But they need different config files, different block ID's, etc.

 

It's easy enough (relatively ...) to enable/disable the different versions for different configs. I can use the 1.2.5 version when talking to one server, and the 1.3.2 version when talking to the other.

 

But I have no idea how to manage the different config files that the different servers need.

 

Suggestions? Ideas?

Jeb! The sheep! The fence pens, they do nothing still leak!

Link to comment
Share on other sites

Alright, I tried renaming the files when I'm not using them.

 

What happens?

 

2012-09-02 20:50:32 [iNFO] [ForgeModLoader] Searching /Volumes/UserData/Users/michael/Library/Application Support/minecraft/mods for mods

2012-09-02 20:50:32 [FINE] [ForgeModLoader] Ignoring unknown file .DS_Store in mods directory

2012-09-02 20:50:32 [FINE] [ForgeModLoader] Found a candidate mod directory MumbleLink

2012-09-02 20:50:32 [FINE] [ForgeModLoader] Found a candidate zip or jar file Ruins-1.3.2.xzip

2012-09-02 20:50:32 [FINE] [ForgeModLoader] Found a candidate mod directory resources

2012-09-02 20:50:32 [FINE] [ForgeModLoader] Found a candidate mod directory sppcommands

2012-09-02 20:50:32 [FINE] [ForgeModLoader] Found a candidate zip or jar file twilightforest-1.11.3.xzip

 

I've tried changing the extension to .Zzip, .xzip, etc.

 

I know that Magic Launcher uses .zipX, but I don't want to use that -- that just means magic launcher will re-enable them fairly often.

 

So, what's a way to leave a mod in place and disable it so that it won't be active? The whole "Everything is active unless you turn it off" is a pain, and I don't see a good working way to say "Only turn things on that you want for this config". (I thought I did, but it has failed me.)

 

So yea, now I'm trying to figure out how to both enable/disable mods in the mods folder, AND adjust which config file is in use when a mod is active.

Jeb! The sheep! The fence pens, they do nothing still leak!

Link to comment
Share on other sites

I want advice on managing two different servers with two different config files.

 

I have a 1.2.5 server, and a 1.3.2 server. Both have Twilight Forest. But they need different config files, different block ID's, etc.

 

But I have no idea how to manage the different config files that the different servers need.

 

Suggestions? Ideas?

 

Maybe I'm missing something, but wouldn't it make sense to have two separate server instances in their own directories?  I do this with my client installation (also keeps me from accidentally corrupting worlds with wrong mods) and it works out great. 

I'm fixing the stupid villagers.  http://www.minecraftforum.net/topic/1588460-

Link to comment
Share on other sites

I want advice on managing two different servers with two different config files.

 

I have a 1.2.5 server, and a 1.3.2 server. Both have Twilight Forest. But they need different config files, different block ID's, etc.

 

But I have no idea how to manage the different config files that the different servers need.

 

Suggestions? Ideas?

 

Maybe I'm missing something, but wouldn't it make sense to have two separate server instances in their own directories?  I do this with my client installation (also keeps me from accidentally corrupting worlds with wrong mods) and it works out great.

That, and with a simple enough batch file, I can choose which server I want to start up. Accommodates CraftBukkit too, since it already requires a bat script to load.

Read the EAQ before posting! OR ELSE!

 

This isn't building better software, its trying to grab a place in the commit list of a highly visible github project.

 

www.forgeessentials.com

 

Don't PM me, I don't check this account unless I have to.

Link to comment
Share on other sites

I want advice on managing two different servers with two different config files.

 

I have a 1.2.5 server, and a 1.3.2 server. Both have Twilight Forest. But they need different config files, different block ID's, etc.

 

But I have no idea how to manage the different config files that the different servers need.

 

Suggestions? Ideas?

 

Maybe I'm missing something, but wouldn't it make sense to have two separate server instances in their own directories?  I do this with my client installation (also keeps me from accidentally corrupting worlds with wrong mods) and it works out great.

 

You are missing something.

 

The servers have different directories, completely separate.

 

But the _CLIENT_ has a single directory, with a single config directory, with a single TwilightForest.cfg file.

 

If I have the 1.3.2 config, the 1.2.5 client crashes when I try to activate the portal, and won't see an already active portal.

If I have the 1.2.5 config, the 1.3.2 client crashes during initialization.

 

Right now I have to manually swap the files each time I switch servers. I'm looking for something better.

 

===

Try setting the system property FML.mod states to a semi colon separated list of modid:true/false, or write the same to config/fmlStates.properties (one mod per line there)

 

Actually, this was for a slightly different issue. I tried using file renames to disable mods that I wasn't using that were in the mod folder, and it did not work.

 

But this holds promise. I can't easily generate a semi-colon seperated list, but I can work with filenames in a text file.

 

Just for exactness: Lets say I've got a file named "mods/ConfigA/Helpful Mod V4-132.zip". Exactly what do I need to write to the config/fmlStates.properties?

 

(Yea, I hate spaces in filenames, but some people give them.)

Jeb! The sheep! The fence pens, they do nothing still leak!

Link to comment
Share on other sites

You are missing something.

 

The servers have different directories, completely separate.

 

But the _CLIENT_ has a single directory, with a single config directory, with a single TwilightForest.cfg file.

 

If I have the 1.3.2 config, the 1.2.5 client crashes when I try to activate the portal, and won't see an already active portal.

If I have the 1.2.5 config, the 1.3.2 client crashes during initialization.

 

Right now I have to manually swap the files each time I switch servers. I'm looking for something better.

 

If you aren't familiar, Magic Launcher will let you configure multiple/different client directories.  Copy your .minecraft directory somewhere else (I use /minecraft/1.3.2/.minecraft, /minecraft/1.2.5/.minecraft, etc).  In Magic Launcher's setup, create a new configuration, and be sure to point the Minecraft.jar and Base Folder to the new location.

I'm fixing the stupid villagers.  http://www.minecraftforum.net/topic/1588460-

Link to comment
Share on other sites

Hmm ... that actually might be the best solution. I actually did try something similar to that back before it was officially supported by Magic Launcher, but the scripting needed to make it work became a bit of a maintenance headache.

 

(Magic Launcher has supported this on windows for a long time, but only recently on macs)

Jeb! The sheep! The fence pens, they do nothing still leak!

Link to comment
Share on other sites

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

    • https://pastebin.com/VwpAW6PX My game crashes upon launch when trying to implement the Oculus mod to this mod compilation, above is the crash report, I do not know where to begin to attempt to fix this issue and require assistance.
    • https://youtube.com/shorts/gqLTSMymgUg?si=5QOeSvA4TTs-bL46
    • CubeHaven is a SMP server with unique features that can't be found on the majority of other servers! Java: MC.CUBEHAVEN.NET Bedrock: MC.CUBEHAVEN.NET:19132 3 different stores: - CubeHaven Store: Our store to purchase using real money. - Bitcoin Store: Store for Bitcoin. Bitcoin can be earned from playing the server. Giving options for players if they want to spend real money or grind to obtain exclusive packages. - Black Market: A hidden store for trading that operates outside our traditional stores, like custom enchantments, exclusive items and more. Some of our features include: Rank Up: Progress through different ranks to unlock new privileges and perks. 📈 Skills: RPG-style skill system that enhances your gaming experience! 🎮 Leaderboards: Compete and shine! Top players are rewarded weekly! 🏆 Random Teleporter: Travel instantly across different worlds with a click! 🌐 Custom World Generation: Beautifully generated world. 🌍 Dungeons: Explore challenging and rewarding dungeons filled with treasures and monsters. 🏰 Kits: Unlock ranks and gain access to various kits. 🛠️ Fishing Tournament: Compete in a friendly fishing tournament! 🎣 Chat Games: Enjoy games right within the chat! 🎲 Minions: Get some help from your loyal minions. 👥 Piñata Party: Enjoy a festive party with Piñatas! 🎉 Quests: Over 1000 quests that you can complete! 📜 Bounty Hunter: Set a bounty on a player's head. 💰 Tags: Displayed on nametags, in the tab list, and in chat. 🏷️ Coinflip: Bet with other players on coin toss outcomes, victory, or defeat! 🟢 Invisible & Glowing Frames: Hide your frames for a cleaner look or apply a glow to it for a beautiful look. 🔲✨[ Player Warp: Set your own warp points for other players to teleport to. 🌟 Display Shop: Create your own shop and sell to other players! 🛒 Item Skins: Customize your items with unique skins. 🎨 Pets: Your cute loyal companion to follow you wherever you go! 🐾 Cosmetics: Enhance the look of your character with beautiful cosmetics! 💄 XP-Bottle: Store your exp safely in a bottle for later use! 🍶 Chest & Inventory Sorting: Keep your items neatly sorted in your inventory or chest! 📦 Glowing: Stand out from other players with a colorful glow! ✨ Player Particles: Over 100 unique particle effects to show off. 🎇 Portable Inventories: Over virtual inventories with ease. 🧳 And a lot more! Become part of our growing community today! Discord: https://cubehaven.net/discord Java: MC.CUBEHAVEN.NET Bedrock: MC.CUBEHAVEN.NET:19132
    • # Problematic frame: # C [libopenal.so+0x9fb4d] It is always the same issue - this refers to the Linux OS - so your system may prevent Java from working   I am not familiar with Linux - check for similar/related issues  
  • Topics

×
×
  • Create New...

Important Information

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