Thread: 1.6 update
View Single Post
04/10/15, 04:22 AM   #64
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 1,019
For editing API :

http://wiki.esoui.com/API

Patchnotes : http://www.esoui.com/forums/attachme...1&d=1422465326

- Copy/Paste in a new file
Section h2. Game API

- Search/Replace (Notepad++) :

** _Returns:_ -> ** '''Returns:'''

*string* -> '''string'''
*bool* -> '''boolean'''
*integer* -> '''number'''
*number* -> '''number'''
*luaindex* -> '''number'''
*id64* -> '''id64'''
*textureName* -> '''textureName'''

*luaindex:nilable* -> '''number:nilable'''
*string:nilable* -> '''string:nilable'''
*integer:nilable* -> '''number:nilable'''
*bool:nilable* -> '''boolean:nilable'''
*number:nilable* -> '''number:nilable'''
*id64:nilable* -> '''id64:nilable'''
*textureName:nilable* -> '''textureName:nilable'''
_ -> ''

- Search/Replace Regular expression :

\*\[(\w+)\|\#(\w+)\]\* -> ''number'' [[Globals\#\1|\1]]
\*\[(\w+)\|\#(\w+)\]\:nilable\* -> ''number:nilable'' [[Globals\#\1|\1]]
(.+)\*private\*(.+) -> * {{Private function}} \1 \2
(.+)\*protected\*(.+) -> * {{Protected function}} \1 \2

- Search/Replace :
* {{Private function}} * -> * {{Private function}}
* {{Protected function}} * -> * {{Protected function}}
Triple space -> Single space (I cannot write them here)
() -> () (there is a space to remove before ())

Last edited by Ayantir : 10/08/15 at 08:13 AM.
  Reply With Quote