View Single Post
09-02-12, 05:33 AM   #3
myrroddin
A Pyroguard Emberseer
 
myrroddin's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 1,240
I'm not sure what the question is. Are you trying to edit global strings, or use them? You shouldn't be editing strings, as that creates all kinds of problems. To use them, do something like
Lua Code:
  1. -- this translates and prints
  2. -- Everyone passed on: %s
  3. -- automatically, as the game itself does the translating for you
  4. Print(LOOT_ROLL_ALL_PASSED)
If you edit the global strings in any way, shape, or form, yes, you will crash because the game expects something, but you changed it, so boom.
  Reply With Quote