File information

Last updated

Original upload

Created by

CodenameAwesome

Uploaded by

CodenameAwesome

Virus scan

Safe to use

Tags for this mod

34 comments

  1. Vertigo5050
    Vertigo5050
    • member
    • 0 kudos
    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.
  2. 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 !!
  3. frvind
    frvind
    • member
    • 0 kudos
    Hi
    Could Yoy update this mod for World 2?
  4. dedsanych
    dedsanych
    • member
    • 0 kudos
    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.
    1. CodenameAwesome
      CodenameAwesome
      • premium
      • 22 kudos
      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.
  5. RumKub259
    RumKub259
    • member
    • 0 kudos
    How or does this work with multiplayer?
    1. CodenameAwesome
      CodenameAwesome
      • premium
      • 22 kudos
      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
  6. IIHylander
    IIHylander
    • premium
    • 0 kudos
    Thank you for the update!
  7. mijwa
    mijwa
    • member
    • 0 kudos
    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
  8. frvind
    frvind
    • member
    • 0 kudos
    Could You update lua file after Worlds?
    Thanks
  9. IIHylander
    IIHylander
    • premium
    • 0 kudos
    Hopefully you still decide to update for the new world update :D 
    1. CodenameAwesome
      CodenameAwesome
      • premium
      • 22 kudos
      I will, as soon as MBINCompiler is fully up to date
    2. IIHylander
      IIHylander
      • premium
      • 0 kudos
      Awesome!!
  10. KaaTrav
    KaaTrav
    • supporter
    • 0 kudos
    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!!!
    1. CodenameAwesome
      CodenameAwesome
      • premium
      • 22 kudos
      For 70% old stations, edit the lua to use this as the MODEL_LIST:

      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,
          },
      }
    2. KaaTrav
      KaaTrav
      • supporter
      • 0 kudos
      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!