1. #1

    Non-spam Kick Macro?

    I'm looking for a macro that says or yells "Kicked" whenever I kick. That is the easy part, I can do that.

    However, I sometimes I spam my hotkeys pretty fast and I don't want the raid chat log to say:

    [Bob] yells: Kicked!
    [Bob] yells: Kicked!
    [Bob] yells: Kicked!
    [Bob] yells: Kicked!
    [Bob] yells: Kicked!
    [Bob] yells: Kicked!
    [Bob] yells: Kicked!

    Is there any way to make a macro that I can spam but it will only say/yell once when the kick actually happens?

  2. #2
    I think you need an addon for that and let the addon do the announcement.

  3. #3
    Deleted
    Code:
    /run if not timeElapsed or GetTime() > timeElapsed + 1 then SendChatMessage("%t kicked!", "YELL") timeElapsed = GetTime() end
    /cast Kick

    Code:
    GetTime() > timeElapsed + 1 -- Change this value with your spam threshold.
    SendChatMessage("%t kicked!", "YELL") -- This will yell Yourtarget kicked!.

  4. #4
    Excellent macro. Thanks!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •