View Single Post
02/27/14, 07:02 AM   #2
zork
 
zork's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 29
This is what I can tell you for now. There is a file called \esoui\libraries\globals\globalapi.lua.

The variable names of the cached Lua function references are:
Lua Code:
  1. zo_strlower         = LocaleAwareToLower
  2. zo_strupper         = LocaleAwareToUpper
  3.  
  4. string.lowerbybyte  = string.lower
  5. string.upperbybyte  = string.upper
  6.  
  7. string.lower        = zo_strlower
  8. string.upper        = zo_strupper
  9.  
  10. zo_strsub           = string.sub
  11. zo_strgsub          = string.gsub
  12. zo_strlen           = string.len
  13. zo_strmatch         = string.match
  14. zo_strfind          = string.find
  15. zo_plainstrfind     = PlainStringFind
  16. zo_strsplit         = SplitString
  17. zo_loadstring       = LoadString
  18.  
  19. zo_floor            = math.floor
  20. zo_ceil             = math.ceil
  21. zo_mod              = math.fmod
  22. zo_decimalsplit     = math.modf
  23. zo_abs              = math.abs
  24. zo_max              = math.max
  25. zo_min              = math.min
  26. zo_sqrt             = math.sqrt
  27. zo_randomseed       = math.randomseed
  28. zo_random           = math.random

If you look closely you will find your function.

Last edited by zork : 02/27/14 at 09:07 AM.
  Reply With Quote