My question is originating from the thread about disconecting people who use the gearscore addon through the addon chat channel http://www.mmowned.com/forums/wow-ex...e-addon-2.html
Basicly I am trying to make the script work for other addons that make use of the addon chat channel.
The macro Im working with is
Code:
/script t=0;z=10;CreateFrame("frame"):SetScript("OnUpdate", function(s,e) if t>1.2 then for i=0,100 do SendAddonMessage("GearScore_Version","","GUILD","")end;if z>1 then t=0 else z=z-1 end elseif z>1 then t=t+e end end)
An example I have been working with is deadly boss mods because I know that it does use the addon chat channel and below is what happens when I invite someone to a raid
DeadlyBossMods_V4: [DBMv4-Ver][Hi!][PARTY][friend]
DeadlyBossMods_V4: [DBMv4-Ver][2373 4.30 4.30 enUS][PARTY][friend]
DeadlyBossMods_V4: [DBMv4-Ver][Hi!][PARTY][me]
DeadlyBossMods_V4: [DBMv4-Ver][2373 4.30 4.30 enUS][PARTY][friend]
DeadlyBossMods_V4: [DBMv4-Ver][2373 4.30 4.30 enUS][PARTY][me]
So I came up with this ( you will need to change 'put player name here' to the persons name )
Code:
/script t=0;z=10;CreateFrame("frame"):SetScript("OnUpdate", function(s,e) if t>1.2 then for i=0,100 do SendAddonMessage("DBMv4-Ver","Hi!","WHISPER","put player name here")end;if z>1 then t=0 else z=z-1 end elseif z>1 then t=t+e end end)
And when that is used my client keeps spamming that to the target player but I am the only person who is getting denial of servised.
I have made other variations with dbm but none have worked.
So I am left thinking that either deadly boss mods has a spam filter for this sort of thing (unlikely) or that the macro is wrong somehow (likely) and I dont know enough about wow addons to figure it out on my own.
this seemed like the best section to post this is, please dont flame if I was wrong