Changes between Version 23 and Version 24 of Modding_Guide


Ignore:
Timestamp:
Jul 23, 2017, 12:55:40 AM (7 years ago)
Author:
leper
Comment:

Only the mod mod is loaded by default.

Legend:

Unmodified
Added
Removed
Modified
  • Modding_Guide

    v23 v24  
    2323== How are mods used? ==
    2424
    25 As of Alpha 17, the game has a mod selection screen, which can be accessed through the main menu: '''Tools & Options > Mod Selection'''
     25The game has a mod selection screen, which can be accessed through the main menu: '''Tools & Options > Mod Selection'''
    2626
    2727[[Image(mod-selection-a17.jpg, 25%)]]
     
    3030{{{
    3131#!sh
    32 pyrogenesis.exe -mod=mymod -mod=anothermod ...
     32pyrogenesis.exe -mod=public -mod=mymod -mod=anothermod ...
    3333}}}
    3434This will load the `public` mod first, then add all files from `mymod`, then adding all files from `anothermod` (replacing all already present files) and so on.
    3535
    36 The `public` mod is currently always loaded by default. Any files or folders in the `public` mod might be replaced or added to in a new mod. In fact by replacing the main menu page, it's possible to achieve a totally different game experience, without reusing any of the `public` mod (though it would require a lot of work).
     36The `mod` mod is currently always loaded by default. Any files or folders in the `public` mod might be replaced or added to in a new mod. In fact by replacing the main menu page, it's possible to achieve a totally different game experience, without reusing any of the `public` mod (though it would require a lot of work).
    3737
    3838== Which tools are needed? ==