-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
1 changed file
with
24 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
# 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 | ||
|
||
# Never copy this file from other mods, always use https://github.com/ALIENQuake/ProjectInfinity/wiki/Adding-metadata-for-mod | ||
# Filename must be the same as tp2 basename, placed in the same folder where | ||
# .tp2 file is located, use UTF8 (without BOM) encoding, everything is optional | ||
|
||
# ini section header is required to avoid false detection | ||
[Metadata] | ||
|
||
# Full name of the mod, without version number | ||
# Full name of the mod, without the list of supported games, without the version number, without 'Mod' | ||
Name = Dorn Friendship | ||
|
||
# Author name or nick, don't use email address | ||
# Author name or nick, don't use an email address | ||
Author = Lava Del'Vortel | ||
# Short description of the mod, main goals, features etc | ||
Description = One of the things many find sorely lacking in the Bioware / Beamdog NPCs are the more complex relationships presented by modern NPC mods--especially in regards to "friendships", the relationships NPCs have with the PC when not romancing them. This mod adds a series of dialogues with Dorn (BGII:EE, EET). | ||
Description = A mod for BG2:EE which adds a friendship with the half-orc blackguard, Dorn. | ||
# Web address of mod readme file (filename is case-sensitive!) | ||
# Readme = | ||
# Web address of mod readme file (filename is case-sensitive!), comma-separated list. You can link to txt, md, html, pdf etc. | ||
Readme = https://spellhold-studios.github.io/readmes/dorn-friendship/DornFriendship-readme-english.html | ||
# Web address of mod dedicated forum or forum thread | ||
# Web address of mod dedicated forum or forum thread | ||
Forum = http://www.shsforums.net/forum/353-npc-iep/ | ||
# Web address of mod personal Homepage, no need to duplicate with mod dedicated forum | ||
Homepage = http://www.spellholdstudios.net/ie/npciep | ||
# Web address of mod personal Homepage, no need to duplicate with a mod dedicated forum | ||
Homepage = https://spellhold-studios.github.io/ | ||
# If you use GitHub.com, simply use https://github.com/AccountOrOrgName/RepositoryName (omit /releases) | ||
# read more about Delta Updates https://github.com/ALIENQuake/ProjectInfinity/wiki/Delta-Updates-for-mods-hosted-at-Github | ||
Download = https://github.com/Spellhold-Studios/Dorn-Friendship | ||
# Type of LABELs used by the mod, read more here https://www.gibberlings3.net/forums/topic/32516-tutorial-what-is-label | ||
LabelType = GloballyUnique | ||
# Dynamic Install Order, use mod ID as tp2 name without file extension and `setup-` prefix | ||
# 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 = | ||
# This mod must be installed *before* those ModID listed below, comma-separated list: | ||
Before = EET_end | ||
# 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 | ||
# This mod must be installed *after* those ModID listed below, comma-separated list: | ||
After = EET |