Difference between revisions of "Preparing for modding"
From XStoryPlayer Wiki
Line 2: | Line 2: | ||
==Steps== | ==Steps== | ||
− | + | <ol> | |
− | + | <li>First of all you need to get access to XStoryPlayer 3 (or higher). More information on that can be [http://www.xmoonproductions.org/viewtopic.php?f=33&t=3459 found here].</li> | |
− | + | <li>It is assumed that you are familiar with playing XStoryPlayer and you know what e.g. the '[[Story menu]]' and '[[Fastsex menu]]' are.</li> | |
− | + | <li>After installing XStoryPlayer you will find (among others) the following files in the [[install directory]]: | |
− | + | ||
− | + | ||
− | + | ||
* [[settings.ini]] | * [[settings.ini]] | ||
Line 15: | Line 12: | ||
* testini/ | * testini/ | ||
* save/ | * save/ | ||
− | + | </li> | |
− | + | <li>Make a backup copy of your save directory and then delete your save files.<br> | |
− | + | ||
− | + | ||
Because you will be using unencrypted save files when modding your current ones cannot be used. | Because you will be using unencrypted save files when modding your current ones cannot be used. | ||
− | + | </li> | |
− | + | <li>Open [[settings.ini]] and make the following changes: | |
− | + | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
Line 32: | Line 26: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | + | </li> | |
− | + | <li>Now you are ready to start [[unpacking/packing packs]]</li> | |
− | + | </ol> |
Revision as of 10:30, 6 January 2015
In this tutorial you will make the necessary preparations to start modding.
Steps
- First of all you need to get access to XStoryPlayer 3 (or higher). More information on that can be found here.
- It is assumed that you are familiar with playing XStoryPlayer and you know what e.g. the 'Story menu' and 'Fastsex menu' are.
- After installing XStoryPlayer you will find (among others) the following files in the install directory:
- settings.ini
- filemaker/
- pack/
- testini/
- save/
- Make a backup copy of your save directory and then delete your save files.
Because you will be using unencrypted save files when modding your current ones cannot be used. - Open settings.ini and make the following changes:
start_mode = MAIN; // Start in menu debug_sys = BASIC; // Use basic debugging debug_brain = ENABLED; // Trace brain events to trace.txt save_key = ""; // Do not encrypt save files
- Now you are ready to start unpacking/packing packs