View Single Post
06/23/15, 09:03 AM   #4
Sasky
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 231
Originally Posted by circonian View Post
Just FYI, they must have changed things, those are not the correct constant values.
I wouldn't count on the numeric IDs being consistent, even over minor patches. They're localization strings, which are essentially numbered alphabetically. So if a new string name before SI_GA... is added, the numbers will increase for those. Use the constants instead like:

Lua Code:
  1. GetString(ZO_GAMECAMERAACTIONTYPE1)

This will also be translated for you to the game client's language.
  Reply With Quote