View Single Post
09-07-08, 02:14 PM   #6
kerrang
A Flamescale Wyrmkin
AddOn Author - Click to view addons
Join Date: Oct 2006
Posts: 109
I've been playing with this (whilst watching the Warhammer forums and laughing a lot - but that's another story) and it seems that (on live and BETA)

PEW fires on all zoning (instance/continent/expansion)

PL fires on all zoning EXCEPT instances...

VL is 100% unreliable the first time you login to a character - but is 100% reliable from that point forward (e.g. reloadui)

Another thing I've noticed - which is ever weirder - is that a variable declared and assigned at the highest level in my lua has NO value on the first VARIABLES_LOADED either....

e.g.

MYSTRING = ""
MYTABLE = {"A","B","C")

MYVLFUNC() -- called on VARIABLES_LOADED
for val in pairs(MYTABLE) do
MYSTRING = MYSTRING .. val
end
end

With code like that, the first time I login MYSTRING will be blank - a reloadui and it will be "ABC" - logout and back in and it's blank again and so on...

Something is ROYALLY screwed here???
  Reply With Quote