1. #1

    [WA] Starlight Rose loot notification

    So I currently have a Weakaura using the code:
    Code:
    function()
        
        if CHAT_MSG_LOOT then
            return true
            
        else
            return false
            
        end
    end
    I am looking for a way for this to only trigger when I loot a specific item, in this case Starlight Rose. I looked at http://wowprogramming.com/docs/events/CHAT_MSG_LOOT but I am unsure how to incorporate this into the trigger, as I am a noob at using custom triggers.

    Any help is greatly appreciated.
    Last edited by LeetHaxor; 2016-10-11 at 12:54 AM.
    Quote Originally Posted by Pet0r-the-Pan View Post
    i would only buy a flying potato

  2. #2
    Quote Originally Posted by LeetHaxor View Post
    So I currently have a Weakaura using the code:
    Code:
    function()
        
        if CHAT_MSG_LOOT then
            return true
            
        else
            return false
            
        end
    end
    I am looking for a way for this to only trigger when I loot a specific item, in this case Starlight Rose. I looked at http://wowprogramming.com/docs/events/CHAT_MSG_LOOT but I am unsure how to incorporate this into the trigger, as I am a noob at using custom triggers.

    Any help is greatly appreciated.
    Chat_msg_ loot is an event, so you can't throw it into an if statement like it's a variable.

    You need to to handle the events and the subevents with the function like

    function(event, subevents, etc, ...)
    If event == CHAT_MSG_LOOT and item = "Starlight Rose" then

    return true


    Something like that.

  3. #3
    Quote Originally Posted by dennisdkramer View Post
    Chat_msg_ loot is an event, so you can't throw it into an if statement like it's a variable.

    You need to to handle the events and the subevents with the function like

    function(event, subevents, etc, ...)
    If event == CHAT_MSG_LOOT and item = "Starlight Rose" then

    return true


    Something like that.
    Keep getting errors, but I'm probably doing something wrong :/
    Quote Originally Posted by Pet0r-the-Pan View Post
    i would only buy a flying potato

  4. #4
    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

  5. #5
    Quote Originally Posted by Kanegasi View Post
    Works perfect, ty.
    Quote Originally Posted by Pet0r-the-Pan View Post
    i would only buy a flying potato

  6. #6
    Quote Originally Posted by LeetHaxor View Post
    Works perfect, ty.
    Thanks a lot.

Posting Permissions

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