Your web browser, Internet Explorer is out of date.

Please download one of these up-to-date, free and excellent browsers:

Microsoft Edge, Mozilla Firefox, Google Chrome or Brave Browser

auto modbuilder + updater + mod script definition system

DIRECT DOWNLOAD WITHOUT ANY SITE REGISTRATION (no guarantee for latest version)

LATEST VERSION DOWNLOAD

Note: This description may be outdated so have a look on nexusmods (link above) for the most current description and download, thanks !

Revolutionary No Man’s Sky auto modbuilder and updater with lua script mod definition system

Fully automatic mod builder that automates every step of nms modding and provides an easy to use lua script mod definition system.

MODLIST:

AllShipsMaxSlots | AllShipsMaxSlots+SClass
AlwaysDay
AmbientGameMode
BetterFlight-LOW+FAST+REVERSE+10xPulseSpeed+ZeroPulseDelay
BiomeForceType | BiomePerStarTypeChange
BuildEverythingEverywhere | BuildEverythingEverywhereNoCollision | BuildingsOnPlanetsRemoved
CostReduction
CreatureSizeAndSpawnRateIncrease
DenserForests
DisableSaving
EqualyDistributedBiomes
ForceVRMode
ForestDensityAndSizeIncrease
GodMode
IntroLogoSkip
JetpackWalkSwimSpeed
LearnMoreWords
LodDistanceScale
LongerAndThickerGalaxyLines
MoreScreenFilters
MoreWeaponDamage
NaturalFlight
NoChargePortal
NoHazardDamage
NoPirates | NoPirates_Extended | NoPirates+NoRandomSentinels | NoPirates+NoRandomSentinels_Extended
NoRandomSentinels | NoRandomSentinels_Extended
NoShipsOnPlanet
NoWarpCameraShake
OnlyLushBiomes
PlanetGenerationModTemplate (UNFINISHED, TEMPLATE)
PlantSizeIncreaseCompact | PlantSizeIncreaseScaleEdition | PlantSizeIncreaseScaleEditionMinMax
PortalOnSpacestation
Reverse+Hover+Underwater+10xPulseSpeed
RewardPercentage100
ScanTimesAndRangeImprove
ShipGunTerrainDamage
ShipRangeIncrease
SpeedIncreaseActions | SpeedIncreaseAnalysis
SpeedIncreaseGrowthAndHarvest
SpeedIncreaseRefiners
SpeedIncreaseVehicles
StackMultiplier
SuperformulaSuperTerrainExperiment (demo only, experimental)
TerrainEditorMod
TorchImprovement
TradeCostReduction
UnlimitedHyperDriveDistance_UnlimitedJetPack_ZeroLaunchCost
UnlimitedPhotoMode+NoClip+Speed3x
WeatherDisabled

 

What does this tool do ?
1. Downloads the latest MBINCompiler from github (needs Internet connection)
2. Reads especially made mod script lua files (NMS version independent modding)
3. Extracts the necessary .pak files from your NMS game folder
4. Decompiles the needed MBIN files to EXML files
5. Applies the changes defined in the lua mod script files to the decompiled .exml files 
6. Compresses the .exml files back to .pak (all *.MBIN,*.BIN,*.H,*.DDS,*.PC,*.WEM,*.TTF,*.TTC,*.TXT,*.XML files)
7. Copies the mods to: A) NMS mods folder (optional), B) CreatedModPAKs folder of this tool and C) Builds folder 
8. Creates incremental builds in numbered order in Builds/IncrementalBuilds

How to use:
1. If asked, put your No Man’s Sky game folder path into NMS_FOLDER.txt, otherwise the tool will find the game
2. Choose a script from the ModScriptCollection folder or from anywhere else or create one yourself
3. Paste it into the ModScript folder
4. Start BuildMod.bat
5. Answer a few questions and the tool will do its processing, let it finish (review the REPORT.txt file if necessary)
6. Copy the mod that gets created in the CreatedModPAKs folder to your game folder if you haven’t made that choice at the start of processing
7. You can combine multiple mods and even make PATCH mods (see below on how to do this)

 

How to create your own lua mod definition scripts ?
Look at the scripts in the ModScriptCollection and LearningExamples + Commented folders.
Just copy one of them and adapt it for your mod.  Note multiple {…} entries need to be separated with a comma.
     +++++  Script Rules are explained in the file Script_Rules.txt included  +++++
For mods that depend on multiple pak sources and MBINs see Multi_PAK_Multi_MBIN_Example_Mod.lua to see how to do the correct nesting.
The real revolution is the mod script lua definition system that enables every modder to easily convert their mods to these scripts and 
finally become mostly independent of manual mod updates.

How to Create a Patch for an existing MOD PAK ?

Background:
Mods in NMS are loaded from top to bottom (when listed in alphabetical order).
Lower mods that modify the same file in any above mod will win all changes to that file

So, to make a Patch for a mod PAK, you could manually do (see below for MODBUILDER help):

  1. Extract from that mod PAK the file you want to change, it gives you a .MBIN
  2. Decompile the .MBIN to .EXML format using the appropriate MBINCompiler version
  3. Find what you want to change and make these changes to the .EXML file
  4. Recompile the .EXML file to .MBIN using the “latest” MBINCompiler version
  5. Pack this new .MBIN file to a .PAK (name it as you like as “Patch_xyz.pak”)
  6. Make sure the name is lower than the original PAK file in alphabetical order
  7. Place both files into your NMS MODS folder
  8. Verify that the DISABLEMODS.TXT file in PCBANKS folder is still deleted
  9. Enjoy

   Using the .EXML file from the mod PAK ensure that most if not all of the changes made by the MOD
   will be saved and the MOD will continue to work as intended.
   In using the Patch, only if you change something that affects that MOD, will that change how the MOD works
   otherwise the MOD AND YOUR CHANGES will work as planned by you.

MODBUILDER can help in creating the “Patch_xyz.pak”:
   A. Create a simple script with the changes you want to an .EXML file (steps 1, 2 and 3 above)
   B. Copy the Script AND the MOD PAK you want to patch in the ModScript folder (steps 4, 5, 6, 7, 8 are handled by MODBUILDER)
   C. MODBUILDER will attempt to use your MBIN_FILE_SOURCE name in the mod PAK if found
     *** That will preserve the mod PAK changes unless you change the same exact values with your patch ***
   D. A new mod PAK will be created in the CreatedModPAKs folder
   E. Use that PAK in 6- above (if you did not let MODBUILDER do it for you)

How to distribute you mod script lua definition file ?
1. Upload it plain to nexusmods with a link to a download or
2. Upload your mod into the NMS modding discord server (mod releases 
    channel or mod discussion), mention @Mjjstral if you want that I add it 
    to the project for future releases
3. Post a link to the commentary section on nexus

Many thanks to monkeyman192 for his huge efforts toward the NMS community and his work on the MBIN compiler.
Many thanks to Wbertro (aka TheBossBoy) for further improvements.
Many thanks to Seekker for further improvements.
Original idea by Mjjstral aka MetaIdea
Copyright MIT license

Contact: [email protected] or [email protected]

 

Right Click -> Send To -> NMS BAT .pak

Just some scripts to make modding stuff easier for those that prefer modding like me.  I use these an image editor and Notepad ++ for the most part.  Its a blend of CMD, vbs, and powerscript

———————-
send to psarc_UnPak_here == use on individual .pak file to extract them and create a psarc repackable files_list%paks name%.txt
using this script places the files_list.txt into the same directory as the pack.

———————-
send to psarc_UnPak_folder == same as the previous one except it places everything into a sub-folder with the packs name.
use this one mostly if you have a mod where there are multiple .pak in a single folder

———————-
send to psarc_RePak == use on the files_list%name%.txt to repack the .pak
it will use the name of the original pack file plus ” _random#” to name the .pak file
you can also manually create a files_list_%name%.txt for any new mod you wish to make and it will pack it
*note if you make a custom mod .txt the name must contain no space so replace with the “_”

———————-
send to psarc_GAMEDATA_UnPak == use on GAMEDATA or PCBANKS folder to extract everything in PCBANK
(IMPORTANT: I still give the some credit for this one to GaticusHax cause he thought extracting the PCBANKS first)

I took his idea and changed it quite a but by adding some validation, a fully psarc repackable files_list.txt,
it now gets extracted into its own folder, and confirmation for when it finishes since it takes so long.

This last one places the PSARC_Extract.xml to the GAMEDATA folder.
This also extracts everthing into a folder called PSARC_UNPACKED located in the GAMEDATA folder.
Finally places the psarc repak ready files_list.txt into the PSARC_UNPACKED folder.

**********************
you must keep the files in the pack together in the same folder and in the right structure
**********************

Video Game Mods

Video Game Mods is bringing modding communities together under a unified network. The original community creator retains control over the content and community for the game.

Start your own Modding Community

We allow modders to manage their own modding community using our platform for hosting and sharing mods, unlimited usage to grow your community without the hassle of hosting.

Get in touch

Follow us on social media

Please take a moment to follow us on social media, we will be posting new updates and featued mods. Theres going to be exciting new competitions for great prizes.