#Simple Fun Guild WA

4 messages · Page 1 of 1 (latest)

tropic pecan
#

Ok so ive had a couple attempts at this and it only works for when I say the phrase myself,

im trying to make a chat wa that makes everyone who has it reply in /G or /s havnt decided yet "Everybody's dead dave"
when i say "they are all dead?" (red dwarf inside joke)

i know its super simple and i feel stupid even asking......

can someone point to me the most basic WA pointers for this so i can make it myself.

candid bough
#

custom trigger that checks on event: CHAT_MSG_GUILD

function(event, text, playerName, ...)
    if event == "CHAT_MSG_GUILD" 
    and text 
    and text:lower():find("they are all dead?")
    and playerName == "YOUR_NAME_HERE"
    then
        SendChatMessage("Everybody's dead dave", "GUILD")
    end
end

You could change it to CHAT_MSG_SAY but do note that /say and /yell automation only works in instances.

#

@tropic pecan

tropic pecan