-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c736cc
commit 05e9d2f
Showing
5 changed files
with
1,142 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# mumod-config-defaut.ini : This file controls which installation options are enabled by default. | ||
# Do not modify this file manually unless you know what you are doing. | ||
|
||
# ini section header is required to avoid false detection | ||
|
||
[Configurarion_options] | ||
mymod_variable1=1 | ||
# mymod_variable1 description | ||
# 1 = first option (recommended) [default] - 2 = second option description | ||
|
||
| mymod_variable4 | blabla<br> | string | a name! | <strong>Hello<strong> | | ||
|
||
mymod_variable2=1 | ||
# mymod_variable2 description | ||
# 1 = first option (recommended) [default] - 2 = second option description - 3 = third option description | ||
|
||
mymod_variable3=A | ||
# mymod_variable3 description | ||
# Type a single character | ||
|
||
mymod_variable3=Hello | ||
# mymod_variable4 description | ||
# Please enter a name. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# File encoding: preferred UTF8 (no BOM) if unicode characters are present, it can be ANSI for English-only | ||
# File format: ini as default and then HJSON/JSON5/JSONC/JSON (JSON doesn't allow comments) for advanced modders who want to use benefits of those file formats | ||
# File name: it must be the same as tp2 name: MyMod.tp2 => MyMod.ini (.hjson/.json5/.jsonc/.json) | ||
# File location: the same folder where .tp2 file is present | ||
# File content: every key=value pair is optional, key names are case insensitive | ||
|
||
|
||
# ini section header is required to avoid false detection | ||
[Metadata] | ||
|
||
# Full name of the mod, without version number | ||
Name = name of your mod | ||
|
||
# Author name or nick, don't use email address | ||
Author = you | ||
|
||
# Short description of the mod, main goals, features etc | ||
Description = small description of your mod content. | ||
|
||
# Web address of mod readme file (filename is case-sensitive!) | ||
Readme = https://spellholdstudios.github.io/readmes/mymod-readme-english. | ||
|
||
# Web address of mod dedicated forum or forum thread | ||
Forum = http://www.shsforums.net/forum/234-miscellaneous-released-mods/ | ||
|
||
# Web address of mod personal Homepage, no need to duplicate with mod dedicated forum | ||
Homepage = http://www.shsforums.net/topic/your_topic_in_SHS_forums | ||
|
||
# if you use Github.com (preferred hosting site), simply use github.com/AccountOrOrgName/RepositoryName | ||
# If you use other hosting sites, please check requirements and put direct download link | ||
Download = https://github.com/yourpersonalaccount/yourmodrepo | ||
|
||
# Requirements for other hosting sites: | ||
# - forum attachments won't work because the download links will be changed every time when you update mod package | ||
# - mod package should be downloaded using 'wget' commandline tool: wget.exe --no-check-certificate 'link' | ||
# - it's possible to preform file size check using 'wget' commandline tool: wget.exe --no-check-certificate --spider 'link' | ||
# - links do not expire after 30 or more days without download (speeedyshare, mediafire etc has forced expiration dates) | ||
# - hosting site won't require user interaction or captcha (googledrive, mediafire etc require user interaction) | ||
# - hosting site don't advertise any kind of adware/crapware etc | ||
|
||
# Dynamic Install Order Category. Pick one category from Overwrite, Fixes, Quests, NPC, Items, Spells, Kits, Tweaks, AI, Sounds, Portraits, UI, Late | ||
Type = | ||
|
||
# This mod should be installed *before* the mods listed after the keyword | ||
Before = EET_end | ||
|
||
# This mod should be installed *after* the mods listed after the keyword | ||
After = bg2fixpack, EET | ||
|
||
# The listed mods are required to be installed *before* this mod | ||
# Require-Earlier = | ||
|
||
# The listed mods are required to be installed *after* this mod | ||
# Require-Later = |
Oops, something went wrong.