I see that most mods only either replace or add new features to the game.
Is there anyway to remove things from the game? I plan to remove all events in-game for a mod I'm developing.
Removing Features
- 5thHorseman
- Posts: 1665
- Joined: Sat Mar 02, 2013 2:29 am
Re: Removing Features
Depends on what you mean by "event." I'm pretty sure every beacon has an event, just some of them are "nothing happens" things.
But sure, you could replace all events with a "nothing happens" event.
But sure, you could replace all events with a "nothing happens" event.
My Videos - MY MOD HUB
Simo-V - The Potential - Automated Scout - "Low O2" Icons
The Black Opal - The Asteroid - The Enforcer - The Pyro
"Every silver lining has a cloud..."
Simo-V - The Potential - Automated Scout - "Low O2" Icons
The Black Opal - The Asteroid - The Enforcer - The Pyro
"Every silver lining has a cloud..."
-
- Posts: 2125
- Joined: Thu Sep 20, 2012 3:17 pm
Re: Removing Features
Almost as much as can be modded in, can be modded out. Ship systems can be removed completely from both player and enemy ships, so you could remove shields and rebalance weapons and health for an entirely different game.
Some event's must stay because they define how the player travels but as for beacon "opportunity" events, those can be thrown out the window.
Removing various features is a simple task of commenting them out in blueprints. Maybe you have some specific removal questions?
Some event's must stay because they define how the player travels but as for beacon "opportunity" events, those can be thrown out the window.
Removing various features is a simple task of commenting them out in blueprints. Maybe you have some specific removal questions?
Report spam using the handy Report Button Mod.
-
- Posts: 660
- Joined: Mon Feb 18, 2013 11:08 am
Re: Removing Features
Good luck there, events are the hardest and more problematic part of modding for FTL, making a mod that replaces ALL the events in game will be a pain in the ass, unless they are simple events of course.al244098 wrote:I see that most mods only either replace or add new features to the game.
Is there anyway to remove things from the game? I plan to remove all events in-game for a mod I'm developing.
But since everything is achievable through patience, keep it going, totally new replaced events is something im sure a lot of people will like.
- kartoFlane
- Posts: 1488
- Joined: Mon Jan 14, 2013 10:20 pm
Re: Removing Features
@speedoflight
It's quite easy, actually. Just prune all entries regarding events from sector data, and events are gone
It's quite easy, actually. Just prune all entries regarding events from sector data, and events are gone
Superluminal2 - a ship editor for FTL
-
- Posts: 660
- Joined: Mon Feb 18, 2013 11:08 am
Re: Removing Features
I know thatkartoFlane wrote:@speedoflight
It's quite easy, actually. Just prune all entries regarding events from sector data, and events are gone

-
- Posts: 36
- Joined: Wed Jan 16, 2013 7:21 am
Re: Removing Features
Thanks for the tip, I've been too busy screwing around with event data that I never bothered to check sector data.speedoflight wrote:I know thatkartoFlane wrote:@speedoflight
It's quite easy, actually. Just prune all entries regarding events from sector data, and events are gonei was talking about making all the events, 6 or 7 normal-big events are a pain in the ass sometimes, imagine the quantity of events he will need to make to replace all vanilla ones...
I plan on only making 1 giant event happen, nothing more.
It will be an event which triggers when you have no fuel, the point is to have you go through a straight boss rush, having each battle end with giving you an augment to allow you to fight the next boss.
I heard there are problems when you make events loop though.
Another thing I had on my mind is whether store beacons can be replaced with other stores via event or not.
- kartoFlane
- Posts: 1488
- Joined: Mon Jan 14, 2013 10:20 pm
Re: Removing Features
Event loop is when event A calls event B, which calls event A, starting it all over again, all in a single beacon.
Having the same event happen several times at different beacons is not an event loop.
Having the same event happen several times at different beacons is not an event loop.
If you mean change a store the player has already visited to have new stuff, etc, then nope, not possible.Another thing I had on my mind is whether store beacons can be replaced with other stores via event or not.
Superluminal2 - a ship editor for FTL
-
- Posts: 36
- Joined: Wed Jan 16, 2013 7:21 am
Re: Removing Features
The whole mod is going to take place on a single beacon, but every round will leave you stranded, making you wait and reset the event once more. But I don't think that'll be an issue.kartoFlane wrote:Event loop is when event A calls event B, which calls event A, starting it all over again, all in a single beacon.
Having the same event happen several times at different beacons is not an event loop.
If you mean change a store the player has already visited to have new stuff, etc, then nope, not possible.Another thing I had on my mind is whether store beacons can be replaced with other stores via event or not.
Thats a shame really, I guess I'll have to code an event for a whole wide array of weapons after every battle. Or I'll go through the trouble of balancing player ships and the boss ships.
Are you sure this includes events which spawns stores?
I wonder why nobody has ever made a mod which features looping no fuel events.
- kartoFlane
- Posts: 1488
- Joined: Mon Jan 14, 2013 10:20 pm
Re: Removing Features
Hm. Thing is, when you call <store/> (or any other event-terminating tag: <event load=/>, <quest name=/>, etc...), it quits the event, so you can't have followup choices.
Not to mention, I'm not sure if it's at all possible to reset a store beacon back to normal beacon (so it can be reassigned as store later)
You'd need to test this.
Not to mention, I'm not sure if it's at all possible to reset a store beacon back to normal beacon (so it can be reassigned as store later)
You'd need to test this.
Superluminal2 - a ship editor for FTL