Thread: Timeless Isle
View Single Post
09-11-13, 07:39 AM   #6
myrroddin
A Pyroguard Emberseer
 
myrroddin's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 1,240
Timeless Isle in any locale

I don't know where to look in the code that requires you to use the string "Timeless Isle", but here's some suggestions.
Lua Code:
  1. -- prints "Timeless Isle" twice
  2. -- regardless of locale, as the game translates
  3. -- automatically and correctly
  4. -- would output "Zeitlose Insel" for deDE
  5. print(GetMapNameByID(951))
  6. local Timeless_Isle = GetMapNameByID(951)
  7. print(Timeless_Isle)