Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
WildStar
Talk
English
Views
Read
More
Edit
History
Search
Navigation
Home
Random page
Help using wiki
Editions
for WoW
for WildStar
for Solar2D
Documentation
for WoW
for WildStar
Reference
WoW
⦁ FrameXML
⦁ AddOns
⦁ API
⦁ WoW Lua
WildStar
⦁ AddOns
⦁ API
⦁ WildStar Lua
Engine
Tools
What links here
Related changes
Special pages
Page information
Site
Recent Changes
Editing
WildStar:UI AddOn
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
Advanced
Special characters
Help
Heading
Level 2
Level 3
Level 4
Level 5
Format
Insert
Latin
Latin extended
IPA
Symbols
Greek
Greek extended
Cyrillic
Arabic
Arabic extended
Hebrew
Bangla
Tamil
Telugu
Sinhala
Devanagari
Gujarati
Thai
Lao
Khmer
Canadian Aboriginal
Runes
Á
á
À
à
Â
â
Ä
ä
Ã
ã
Ǎ
ǎ
Ā
ā
Ă
ă
Ą
ą
Å
å
Ć
ć
Ĉ
ĉ
Ç
ç
Č
č
Ċ
ċ
Đ
đ
Ď
ď
É
é
È
è
Ê
ê
Ë
ë
Ě
ě
Ē
ē
Ĕ
ĕ
Ė
ė
Ę
ę
Ĝ
ĝ
Ģ
ģ
Ğ
ğ
Ġ
ġ
Ĥ
ĥ
Ħ
ħ
Í
í
Ì
ì
Î
î
Ï
ï
Ĩ
ĩ
Ǐ
ǐ
Ī
ī
Ĭ
ĭ
İ
ı
Į
į
Ĵ
ĵ
Ķ
ķ
Ĺ
ĺ
Ļ
ļ
Ľ
ľ
Ł
ł
Ń
ń
Ñ
ñ
Ņ
ņ
Ň
ň
Ó
ó
Ò
ò
Ô
ô
Ö
ö
Õ
õ
Ǒ
ǒ
Ō
ō
Ŏ
ŏ
Ǫ
ǫ
Ő
ő
Ŕ
ŕ
Ŗ
ŗ
Ř
ř
Ś
ś
Ŝ
ŝ
Ş
ş
Š
š
Ș
ș
Ț
ț
Ť
ť
Ú
ú
Ù
ù
Û
û
Ü
ü
Ũ
ũ
Ů
ů
Ǔ
ǔ
Ū
ū
ǖ
ǘ
ǚ
ǜ
Ŭ
ŭ
Ų
ų
Ű
ű
Ŵ
ŵ
Ý
ý
Ŷ
ŷ
Ÿ
ÿ
Ȳ
ȳ
Ź
ź
Ž
ž
Ż
ż
Æ
æ
Ǣ
ǣ
Ø
ø
Œ
œ
ß
Ð
ð
Þ
þ
Ə
ə
Formatting
Links
Headings
Lists
Files
References
Discussion
Description
What you type
What you get
Italic
''Italic text''
Italic text
Bold
'''Bold text'''
Bold text
Bold & italic
'''''Bold & italic text'''''
Bold & italic text
{{dev/uiaddon}} This is the development reference for the structure and rules for WildStar '''UI AddOns'''. See [[AddOn]] for the general WildStar term. See [[development]] for the main development portal. == Reference == ''WS AddOn files and related files and concepts'' === Code files === * [[TOC file]] - WS AddOn special "manifest" 'toc.xml' file. * [[XML file]] - WS AddOn 'XML' UI element 'form' file. * [[LUA file]] - WS AddOn 'Lua' code file. === Details === * [[AddOn loading process]] - WS AddOn loading process. === Client files === * [[Machine.ini]] * [[User.ini]] * [[Tools.ini]] * [[Account.ini]] * [[Character.ini]] * [[Archive file]] * [[Index file]] === Art files === * [[TEX file]] - WS texture image file * [[TGA file]] - WS image file * [[M3 file]] - 3D model format * [[TTF file]] - True Type Font file == Help == * [[WildStar AddOn Policy]] === Guides === * [[Creating a WS AddOn]] === FAQs === {{section-stub}} == 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]]. Example file layout anatomy of a basic [[WS AddOn]]: <div class="ws-compact"> * {WS Install} (folder) - your WS installation folder ** -- nothing -- * {Operating system drive} (drive) - your actual operating system 'system drive' ** Users (folder) - standard Windows Users folder, in the root of the drive *** {User name} (folder) **** AppData (folder) ***** Roaming (folder) ****** NCSOFT (folder) ******* WildStar (folder) ******** AddOns (folder) ********* MyAddOn (folder) - your AddOn's 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 </div> This example establishes a WS AddOn named 'MyAddOn' with one xml form file and one Lua code file. == AddOns folder == For WildStar, most AddOn related files lie in your personal folders in the normally hidden AppData location. The WildStar AddOns folder inside AppData contains folders for each user AddOn. Using windows environment values: %appdata%\NCSOFT\WildStar\AddOns Typical example c:\Users\[UserFolderName]\AppData\Roaming\NCSOFT\WildStar\AddOns == External links == * [http://www.wildstar-online.com/en/news/wildstar_wednesday_yes_well_have_ui_addons.php/ wildstar-online.com] ''Yes, We'll Have UI Addons'' by [[\Jon Wiesman]] client Lead Developer. * [http://massively.joystiq.com/2013/02/06/slap-a-rocket-on-a-pig-wildstars-modding-and-pgc-community/ joystiq.com] ''Slap a rocket on a pig'' by [[\Brianna Royce]] (Feb-6-2013) - WildStar press event * [http://www.hiddenarena.com/content.php?160-Getting-Started-with-WildStar-Addon-Creation-Guide-Part-1 hiddenarena.com] ''Getting Started with WildStar Addon-Creation'' by Taterz (Dec-31-2013) * [http://wildstarnasa.com/2014/01/a-complete-newbies-guide-to-apollo-and-houston/ wildstarnasa.com] - ''A Complete Newbie’s Guide to Apollo and Houston''
Summary:
Please note that all contributions to AddOn Studio are considered to be released under the Creative Commons Attribution-NonCommercial-ShareAlike (see
AddOn Studio Wiki:Copyrights
for details).
Submissions must be written by you, or copied from a public domain or similar free resource (see
AddOn Studio Wiki:Copyrights
for details).
Cancel
Editing help
(opens in new window)
Template:Crumb
(
edit
)
Template:Dev/uiaddon
(
edit
)
Template:Editlink
(
edit
)
Template:I-note
(
edit
)
Template:Section-stub
(
edit
)
Template:Sectionstub
(
edit
)
Template:Tocright
(
edit
)
Template:WildStar/devnav
(
edit
)