Results: 3Comments by: seraphos
File: Infinite Ignore06-10-10
I'd be interested as to figuring ou...
Posted By: seraphos
I'd be interested as to figuring out how to tie this into the default blizzard UI. Like overriding the default ignore frame. Not sure quite how one does that, as I'm a bit new to UI modding.
File: Infinite Ignore06-10-10
Re: Hey!
Posted By: seraphos
another function -- This allows you to add or remove from the right click menu on peoples names AddOrDelIgnore = function(name) local exists = false for index,value in pairs(InIg_IgList)do if value == strlower(name) then exists = true end end if (exists) then InIg:remove(strlower(name)) else InIg:add...
File: Infinite Ignore06-09-10
Hey!
Posted By: seraphos
hey, I have a fix that hooks it into the Ignore button. add this to the lua file AddIgnore = function(name) InIg:add(name) end I was also wondering if you would like help writing with this addon.