-
Member
What is the macro to mass kick everyone in the raid?
Whenever I join a raid group and everyone has assist there is always someone who basically mass kicked every single person in the raid group all at once. I was able to find the mass guild kick macro but no luck on this one(maybe I just didn't look hard enough)
-
Legendary
You can't kick other people with assist, unless you have leader.
-
Eryx
Guest
-
Originally Posted by
tmanowen
You can't kick other people with assist, unless you have leader.
Yeah you can, /kick name
Kicks other people if you just have assist, even other people that have assist. Maybe it doesn't work anymore, I haven't played WoW in a month, it worked back then.
-
Member
Originally Posted by
Igzz
Yeah you can, /kick name
Kicks other people if you just have assist, even other people that have assist. Maybe it doesn't work anymore, I haven't played WoW in a month, it worked back then.
omg this works. I, along with everyone in the group had assist and I just started kicking people 1 by 1 until the raid leader took away assist lol. Now just to figure out how to mass kick.
-
Member
You can try:
Code:
for i=1,40 do name, _, _, _, _, _, _, _, _, _, _ = GetRaidRosterInfo(i); print(name); end
and try to find something to replace "print(name)" by the "/kick".
I don't know yet how to mix LUA script with macro functions.
-
Elite User
found this on the wowapi site:
UninviteUnit("name" [, "reason"])
-
Elite User
Originally Posted by
tmanowen
You can't kick other people with assist, unless you have leader.
yes you can, just not with mass assist.
-
Member
Originally Posted by
strath2121
found this on the wowapi site:
UninviteUnit("name" [, "reason"])
Originally Posted by WoW_API
Removes a player from the party/raid group if you're the party leader, or initiates a vote to kick a player
I don't know if it works if you are not the leader.
-
Contributor
Mass kick macro - only works if you have assist, doesnt matter if the whole raid have assist or not, as long as you have it, it works:
Code:
/run for i=1,GetNumGroupMembers() do if UnitName("raid"..i) ~= UnitName("player") then UninviteUnit("raid"..i, "reason") end end LeaveParty()
Have fun
-
Post Thanks / Like - 2 Thanks