Adding another request to update this mod for Worlds 2/Relics? This is a great mod, and I'd love to see multiple options for different percentages, maybe? Like 20% chance of old stations, 50%, 75%, etc. I'd personally go for about 50% because I miss the old stations a lot.
Would love to see this updated for Worlds Part II, have tried updating it myself by chucking the lua in amm but to no such success. Please revive this mod !!
Hi, there was a conversation below about changing the spawn rate of old stations by changing the MODEL_LIST, and it seems to me that this method doesn't work anymore.
I change the "WEIGHT" line from the examples below, but the spawn rate of the old stations remains the same as with the standard values of "1" and "19" for the old and new station models, i.e. the same 5%. (I even tried to comment the model of the new station in order to exclude its generation, the result did not change.) Do you know ways to change this for the current NMS version?
I unpacked the mod with PSArcTool.exe, and modified its internal .lua script, and packaged the mod back into a .pak file.
The lua script isnt run by the game. The lua is to generate the other files in the pak, which are where the actual changes are made. You need to build a new pak by putting the lua script in the ModScript folder of your AMUMSS installation and then run BUILDMOD.bat.
You'll probably see players walking around in impossible places if you are in a modded space station and they are in a vanilla version of the same station
I would also very much like this mod lua to be updated, if possible please. I play with 50-50 chances and it just adds a great deal of variety into the universe
Good afternoon First of all, thank you so much for the idea of bringing back old stations! This is a great idea, but it's the old stations that I miss! I’m not against the new design, but only sometimes (very, very, very rarely sometimes), but I would like to see the old format of stations in regular systems, regardless of their star rating. Taking into account the fact that I primarily install an economy scanner on a regular and/or cargo ship, I would prefer to see the old stations in 3 and/or 2 star systems, because I visit poor systems only on assignments from quests and guilds, or in search of a specific resource, if in the poor system there is an urgently needed resource that is impossible or difficult to buy at stations, etc. We have already asked before, but please, tell me, please, how to return the old stations to 70-90%?!!! As I wrote, I’m not completely against new stations, but besides the fact that I don’t really like the new design, I’m too unlucky with their color design - often station colors are generated that are not pleasant for me... Therefore, I beg you - add instructions on exactly how to change the parameters in lua, so that you can significantly increase the number of old stations, leaving only 10-30% for new station options!!!
Thank you very much! Having understood the principle (what is responsible for what), I will be able to choose the best option for myself personally (I will start with 90%, if I want to see new ones more often, I will play with percentages)... In general, thanks again!
34 comments
Could Yoy update this mod for World 2?
I change the "WEIGHT" line from the examples below, but the spawn rate of the old stations remains the same as with the standard values of "1" and "19" for the old and new station models, i.e. the same 5%. (I even tried to comment the model of the new station in order to exclude its generation, the result did not change.)
Do you know ways to change this for the current NMS version?
I unpacked the mod with PSArcTool.exe, and modified its internal .lua script, and packaged the mod back into a .pak file.
Thanks
We have already asked before, but please, tell me, please, how to return the old stations to 70-90%?!!! As I wrote, I’m not completely against new stations, but besides the fact that I don’t really like the new design, I’m too unlucky with their color design - often station colors are generated that are not pleasant for me...
Therefore, I beg you - add instructions on exactly how to change the parameters in lua, so that you can significantly increase the number of old stations, leaving only 10-30% for new station options!!!
MODEL_LIST = {
{
["PATH"] = "MODELS/SPACE/SPACESTATION/SPACESTATION.SCENE.MBIN",
["SCALE"] = 1,
["WEIGHT"] = 7,
},
{
["PATH"] = "MODELS/SPACE/SPACESTATION/SPACESTATIONTYPEB.SCENE.MBIN",
["SCALE"] = 1,
["WEIGHT"] = 3,
},
}
For 90%, do:
MODEL_LIST = {
{
["PATH"] = "MODELS/SPACE/SPACESTATION/SPACESTATION.SCENE.MBIN",
["SCALE"] = 1,
["WEIGHT"] = 9,
},
{
["PATH"] = "MODELS/SPACE/SPACESTATION/SPACESTATIONTYPEB.SCENE.MBIN",
["SCALE"] = 1,
["WEIGHT"] = 1,
},
}