Addoninfo.txt: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (links, source, cat)
No edit summary
Line 2: Line 2:


<source lang=ini>
<source lang=ini>
// The addoninfo.txt file is a metadata file that is required by all Left 4 Dead Add-ons.  
// The addoninfo.txt file is a metadata file that is required by all Source Engine Add-ons.  


"AddonInfo"
"AddonInfo"
{
{
         addontitle "Dead Line"                                     // Add-on title that shows up in Add-ons list. ~20 chars max
    addonSteamAppID         500                                                    // 500 is the app ID for Left 4 Dead
        addonversion         1.3                                             // Add-on version.
    addontitle             "Dead Line"                                             // Add-on title that shows up in Add-ons list. ~20 chars max
        addontagline "Catch the last subway... out of hell."         // Add-on tagline or wrap-up- a short description. ~100 chars max
    addonmajorversion      1                                                       // Major version number of add-on version.
addonauthor "Valve"                                         // Name/alias of the author
    addonminorversion      3                                                       // Minor version number of add-on version.
addonauthorSteamID "http://steamcommunity.com/groups/Valve"       // Steam Profile URL of author or group
    addontagline           "Catch the last subway... out of hell."             // Add-on tagline or wrap-up- a short description. ~100 chars max
    addonauthor             "Valve"                                                 // Name/alias of the author
    addonSteamGroupName    "deadlineadd-on"                                        // (Optional) Steam group related to the add-on. We use this to construct a URL to the group page.
    addonauthorSteamID     "MikeDurand"                                            // (Optional) Steam ID of author. We use this to construct a URL to the author's page.
    addonContent_Campaign  1                                                     //This addon provides muliple connected maps with a finale
    addonURL0              "http://media.steampowered.com/apps/513/deadline.html" //An html home page for the add-on that includes a download link.


addonContent_Campaign 1                                 //This addon provides muliple connected maps with a finale
    // short description that appears in the Add-on list screen...
 
    addonDescription       "Survivors must escape on a subway train in this short tutorial example campaign. Get source files and tools for creating your own campaigns by downloading the Left 4 Dead Authoring tools SDK, which is available under the 'Tools' tab in Steam."
addonURL0 "http://media.steampowered.com/apps/513/deadline.html" //An html home page for the add-on that includes a download link.
 
// short description that appears in the Add-on list screen...
addonDescription "Survivors must escape on a subway train in this short tutorial example campaign. Get source files and tools for creating your own campaigns by downloading the Left 4 Dead Authoring tools SDK, which is available under the 'Tools' tab in Steam."
// Authors can add localized descriptions here. (Not yet supported)
    // Authors can add localized descriptions here. (Not yet supported)
addonDescription_FR "Les survivants doivent s'échapper en métro dans cette carte du tutoriel. Obtenez les fichiers et les outils pour créer vos propres cartes en chargeant les outils de création SDK Left 4 Dead qui sont disponibles sous l'onglet "Outils" sur Steam."
    addonDescription_FR     "Les survivants doivent s'échapper en métro dans cette carte du tutoriel. Obtenez les fichiers et les outils pour créer vos propres cartes en chargeant les outils de création SDK Left 4 Dead qui sont disponibles sous l'onglet "Outils" sur Steam."


}
}

Revision as of 11:26, 2 July 2009

This is the addoninfo metadata file included with the sample Deadline campaign. Feel free to use this as a template for the metadata for your own custom addons.

// The addoninfo.txt file is a metadata file that is required by all Source Engine Add-ons. 

"AddonInfo"
{
     addonSteamAppID         500                                                     // 500 is the app ID for Left 4 Dead
     addontitle              "Dead Line"                                             // Add-on title that shows up in Add-ons list. ~20 chars max
     addonmajorversion       1                                                       // Major version number of add-on version.
     addonminorversion       3                                                       // Minor version number of add-on version.
     addontagline            "Catch the last subway... out of hell."	             // Add-on tagline or wrap-up- a short description. ~100 chars max
     addonauthor             "Valve"                                                 // Name/alias of the author
     addonSteamGroupName     "deadlineadd-on"                                        // (Optional) Steam group related to the add-on. We use this to construct a URL to the group page.
     addonauthorSteamID      "MikeDurand"                                            // (Optional) Steam ID of author. We use this to construct a URL to the author's page.
     addonContent_Campaign   1 	                                                     //This addon provides muliple connected maps with a finale
     addonURL0               "http://media.steampowered.com/apps/513/deadline.html"  //An html home page for the add-on that includes a download link.

     // short description that appears in the Add-on list screen...
     addonDescription        "Survivors must escape on a subway train in this short tutorial example campaign. Get source files and tools for creating your own campaigns by downloading the Left 4 Dead Authoring tools SDK, which is available under the 'Tools' tab in Steam."
	
     // Authors can add localized descriptions here. (Not yet supported)
     addonDescription_FR     "Les survivants doivent s'échapper en métro dans cette carte du tutoriel. Obtenez les fichiers et les outils pour créer vos propres cartes en chargeant les outils de création SDK Left 4 Dead qui sont disponibles sous l'onglet "Outils" sur Steam."	

}

See also