-
Posted by ns66 on Wed, 13 Oct 2010 00:18:53
GetSpellName() seems is nil in new 4.0.1 patch, any idea? thanks
-
Posted by ns66 on Wed, 13 Oct 2010 00:39:16
found this thread
http://forums.worldofwarcraft.com/thread.html?topicId=26560499864&sid=2000
-
Posted by ns66 on Wed, 13 Oct 2010 03:05:49
now RegisterEvent() seems stopped working, I can't get any event to trigger :(
-
Posted by jnwhiteh on Wed, 13 Oct 2010 07:16:06
RegisterEvent most definitely still works.. It's a frame method. Something else must be going on, and you haven't given me much information at all.
As always, the API listings here, if not the documentation, will be up-to-date once the patch is fully live everywhere.
-
Posted by ns66 on Wed, 13 Oct 2010 17:20:18
it seems I have to move the OnEvent function definition above the RegisterEvent/SetScript for the event to get triggered, that wasn't the case before... anyway once I move the function to the beginning of .lua it seems to be working
on a 2nd issue, does UnitAura() still work? I tried but it doesn't seem to return non nil name at all even if target has debuff, the code works before patch
thanks
-
Posted by jnwhiteh on Wed, 13 Oct 2010 17:24:45
I don't know if it changed. I would check the patch notes, Iriel's notes and then the code if you have any questions. I'm not aware of any changes to that function, however.
-
Posted by ns66 on Thu, 14 Oct 2010 15:59:22
I called UnitAura to scan target dummy's buff/debuff, the only thing I got back is the "Banner of the Horde", even though the dummy has all kinds of debuff on it when dozens of player hitting it, did I miss something here?
thanks
-
Posted by jnwhiteh on Thu, 14 Oct 2010 16:06:28
Works just fine for me:
/dump UnitAura("target", 1, "HARMFUL")
Shows the first debuff on the target.
-
Posted by ns66 on Thu, 14 Oct 2010 16:15:55
ok I called without the "harmful" filter thinking that will include both buff and debuff? and it worked before patch, it now seems changed if no filter then it's some other category?
anyway thanks for the help
-
Posted by ns66 on Thu, 14 Oct 2010 16:37:39
also filter like "HARMFUL|HELPFUL" doesn't seem to work now
-
Posted by jnwhiteh on Thu, 14 Oct 2010 16:43:48
So don't combine them. Alternatively, you can use UnitAura for positive auras, and UnitDebuff for debuffs.