Do not put redistributables of this version in your public mod releases!
Do not use these releases as part of the Big World Project installation!
Feedback to be posted at http://www.shsforums...lease-feedback/
Instructions for modders using the TobEx_redist package
In order to install TobEx as part of your modification:
1. Place the entire ./TobEx_redist directory within your mod directory.
2. Insert the following code into your mod's main .tp2 file. Replace <your mod directory> with the directory that your mod uses. Please note that TOBEX_ is used as a prefix to make the variable unique. It should not point to the TobEx mod directory, but to your mod's directory.
OUTER_SPRINT TOBEX_MOD_DIRECTORY "./<your mod directory>"
LOAD_TRA "%TOBEX_MOD_DIRECTORY%/TobEx_redist/TobEx.tra"
ACTION_INCLUDE "%TOBEX_MOD_DIRECTORY%/TobEx_redist/TobEx.tpa"
3. Once installed, existing tweak settings are kept and all new tweak settings are disabled by default. In order to activate tweaks, use REPLACE_TEXTUALLY on TobEx_ini/TobExTweak.ini. For example,
COPY "TobEx_ini/TobExTweak.ini" "TobEx_ini/TobExTweak.ini"
REPLACE_TEXTUALLY "A Tweak=0" "A Tweak=1"
BUT_ONLY_IF_IT_CHANGES
4. In order to support translations to other languages, translators should translate TobEx.tra. Then, modify the LOAD_TRA tp2 action to point to the language-specific .tra file. For example:
LOAD_TRA "%TOBEX_MOD_DIRECTORY%/language/%LANGUAGE%/TobEx.tra"
Edited by Ascension64, 07 February 2011 - 06:04 AM.