WildStar:UI AddOn: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Created page with "{{wsaddon}} This is the WS AddOn development main reference. Use '''Reference''' for detailed information, '''Guides''' for getting started and further understanding, and...")
 
Line 31: Line 31:


== Summary ==
== Summary ==
WildStar is capable of loading special files for adding or modifying aspects of the game. WS uses these files to create User Interface functionality for its own interface. These files and facilities can also be used for creating custom user UI functionality, or [[AddOn]]s for WS. Before getting started, should read familiarize themselves with the [[WildStar AddOn Policy]]. For WildStar, most AddOn related files lie in your personal folders in the normally hidden AppData location.  
WildStar is capable of loading special files for adding or modifying aspects of the game. WS uses these files to create User Interface functionality for its own interface. These files and facilities can also be used for creating custom user UI functionality, or [[AddOn]]s for WS. Before getting started, should read familiarize themselves with the [[WildStar AddOn Policy]]. For WildStar, most AddOn related files lie in your personal folders in the normally hidden AppData location (<code>%appdata%\NCSOFT\WildStar</code>).


Example file layout anatomy of a basic [[WS AddOn]]:
Example file layout anatomy of a basic [[WS AddOn]]:

Revision as of 14:59, 14 May 2014

WoW AddOn


This is the WS AddOn development main reference. Use Reference for detailed information, Guides for getting started and further understanding, and Summary for overall concepts details. See AddOns for information on the general AddOn term used in WildStar.

Reference

WS AddOn files and related files and concepts

Code Files

  • TOC file - WS AddOn special "manifest" 'XML' file.
  • XML file - WS AddOn 'XML' UI element 'form' file.
  • LUA file - WS AddOn 'Lua' code file.

Details

WS Files

Help

Guides

FAQs

Icon-edit-22x22.png
Note: This is a generic section stub. You can help expand it by clicking Sprite-monaco-pencil.png Edit on the section title.

Summary

WildStar is capable of loading special files for adding or modifying aspects of the game. WS uses these files to create User Interface functionality for its own interface. These files and facilities can also be used for creating custom user UI functionality, or AddOns for WS. Before getting started, should read familiarize themselves with the WildStar AddOn Policy. For WildStar, most AddOn related files lie in your personal folders in the normally hidden AppData location (%appdata%\NCSOFT\WildStar).

Example file layout anatomy of a basic WS AddOn:

  • {WS Install} (folder) - your WS installation folder
    • -- nothing --
  • {Operating system drive} (drive) - your actual operating system 'system' hard drive
    • Users (folder) - the standard Users folder in the root of the drive
      • {User name} (folder)
        • AppData (folder)
          • Roaming (folder)
            • NCSOFT (folder)
              • WildStar(folder)
                • AddOns (folder)
                  • MyAddOn (folder) - your AddOns own folder, normally matches the AddOn name
                    • toc.xml (TOC file) - WS AddOn "manifest" file
                    • MyAddOn.xml (XML file) - XML file with visible element 'form' definitions
                    • MyAddOn.lua (Lua file) - Code file, with instructions for AddOn behavior


This example establishes a WS AddOn named 'MyAddOn' with one xml form file and one Lua code file.

External links