Hello folks!
Just a simple question here:
Does anyone know if the 3.08 Sector Management xml is saved within the savegame, like the universe-file?
Changing it doesn't seem to do anything about my game, so I guess it is.. can anyone confirm?
[AP3.0][UFJD] Question
Moderators: Scripting / Modding Moderators, Moderators for English X Forum
-
- Posts: 425
- Joined: Tue, 15. Aug 06, 15:47
[AP3.0][UFJD] Question
As the size of an explosion increases, the number of social situations it is incapable of solving approaches zero.
[ external image ]
[ external image ]
Litcube wrote:Don't succumb to the "I figured it'd be ok".
-
- EGOSOFT
- Posts: 12166
- Joined: Fri, 21. May 04, 17:15
Yes, like any other MD (Missions Director) File it gets loaded and stored in the save. Inactive cues will be refreshed once they are activated, so changes to those can be done "on the fly".
Cues that have already been completed can be reset though and changes made to those will take effect. Usually all it needs is an incremental version number in the cue, so the MD loads the "newest" one.
These are general guides though, it greatly depends on what you want to achieve and which files we are talking about. Static Files that run once are less problematic than Plot/Mission files, special Code like the Sector Management has all sorts of things in it that can go really wrong if you go about messing in it willy nilly.
Best is you describe what you want to achieve then more accurate advice can be given to your specific needs. The ways of the MD are tricky.
MFG
Ketraar
Cues that have already been completed can be reset though and changes made to those will take effect. Usually all it needs is an incremental version number in the cue, so the MD loads the "newest" one.
These are general guides though, it greatly depends on what you want to achieve and which files we are talking about. Static Files that run once are less problematic than Plot/Mission files, special Code like the Sector Management has all sorts of things in it that can go really wrong if you go about messing in it willy nilly.
Best is you describe what you want to achieve then more accurate advice can be given to your specific needs. The ways of the MD are tricky.
MFG
Ketraar

-
- Posts: 425
- Joined: Tue, 15. Aug 06, 15:47
I was asking about the '3.08 Sector Management.xml' in particular, because I wanted to add something to the UFJD sectors.
Just trying to get a crate, or another abandoned ship in there - been playing around a bit, but haven't achieved anything yet.
Even if I just edit the values of the created Energy Cells, nothing happens.
Might be a dumb question, but do I have to do something particular despite increasing the "version" tag in the xml and reload my game?
Just trying to get a crate, or another abandoned ship in there - been playing around a bit, but haven't achieved anything yet.
Even if I just edit the values of the created Energy Cells, nothing happens.
Might be a dumb question, but do I have to do something particular despite increasing the "version" tag in the xml and reload my game?

As the size of an explosion increases, the number of social situations it is incapable of solving approaches zero.
[ external image ]
[ external image ]
Litcube wrote:Don't succumb to the "I figured it'd be ok".
-
- EGOSOFT
- Posts: 12166
- Joined: Fri, 21. May 04, 17:15
Well in that one all you need is to jump out of UFJD sector and back in again and all your changes should work.
The only things that pop to mind for it to not work is you are placing it in the wrong folder or there is an xml error which makes the MD skip the file altogether and load the next one.
Mind also that there are some chance values in the sector creator code making it random which things get created.
MFG
Ketraar
The only things that pop to mind for it to not work is you are placing it in the wrong folder or there is an xml error which makes the MD skip the file altogether and load the next one.
Mind also that there are some chance values in the sector creator code making it random which things get created.
MFG
Ketraar

-
- Posts: 425
- Joined: Tue, 15. Aug 06, 15:47
I'm handling it via false patch cat/dat files.
Placement is in 'addon/director', just like the original file I extracted out of 03.cat/.dat, but still nothing goes
But if I intentionally make a total mess in that file, the game crashes, so it MUST be loading my 'false patch sector xml'...
Ah it just doesn't make any sense at all - I'm quite sure I miss a point somewhere
Placement is in 'addon/director', just like the original file I extracted out of 03.cat/.dat, but still nothing goes

But if I intentionally make a total mess in that file, the game crashes, so it MUST be loading my 'false patch sector xml'...
Ah it just doesn't make any sense at all - I'm quite sure I miss a point somewhere

As the size of an explosion increases, the number of social situations it is incapable of solving approaches zero.
[ external image ]
[ external image ]
Litcube wrote:Don't succumb to the "I figured it'd be ok".
-
- Posts: 425
- Joined: Tue, 15. Aug 06, 15:47
Heh, I figured it out now.
The game loads the cat/dat files first, and then loads the files directly stored in the 'director' folder (somehow I assumed it worked vice versa
), so that problem is solved now 
For now I was just trying to make the ECells generated in UFJD sectors being more per crate (just added a '0' to the min/max in the file) to see if the new file gets loaded after all...
But I have figured out that and can now try adding new stuff
Thanks for using your time on my questions though, I'm sure there will be more soon enough
The game loads the cat/dat files first, and then loads the files directly stored in the 'director' folder (somehow I assumed it worked vice versa


For now I was just trying to make the ECells generated in UFJD sectors being more per crate (just added a '0' to the min/max in the file) to see if the new file gets loaded after all...
But I have figured out that and can now try adding new stuff

Thanks for using your time on my questions though, I'm sure there will be more soon enough

As the size of an explosion increases, the number of social situations it is incapable of solving approaches zero.
[ external image ]
[ external image ]
Litcube wrote:Don't succumb to the "I figured it'd be ok".
-
- Posts: 1277
- Joined: Tue, 13. Dec 11, 08:27
Ahh precedence. It actually makes modding a whole lot easier. The game loads things in this order:
Packaged Loose Files (.pck files for MD)
Unpackaged Loose Files (.xml for MD)
Highest cat/dat file
||
||
\/
Lowest cat/dat file (will load packaged before unpackaged)
Packaged Loose Files (.pck files for MD)
Unpackaged Loose Files (.xml for MD)
Highest cat/dat file
||
||
\/
Lowest cat/dat file (will load packaged before unpackaged)
1940s - Various "computers" are "programmed" using direct wiring and switches. Engineers do this in order to avoid the tabs vs spaces debate.
-
- EGOSOFT
- Posts: 12166
- Joined: Fri, 21. May 04, 17:15