I created 3 actions with these commands:
Code
//react add "Ayame" "Tachi: Kasha" Complete "input /ws Resolution <t>" //react add "Ayame" "Tachi: Goten" Complete "input /ws Resolution <t>" //react add "Ayame" "Tachi: Jinpu" Complete "input /ws Resolution <t>"
The addon created a new react_RUN.lua file and successfully loaded all the actions, but it never actually does anything.
Code
return {
["Ayame"]={
["Tachi: Kasha"]={
["complete_reaction"]="input /ws Resolution <t>",
["ready_reaction"]=""
},
["Tachi: Jinpu"]={
["complete_reaction"]="input /ws Resolution <t>",
["ready_reaction"]=""
},
["Tachi: Goten"]={
["complete_reaction"]="input /ws Resolution <t>",
["ready_reaction"]=""
}
}
}
I've also tried using "/ws resolution <t>" without the "input" but that hasn't worked either:
Code
["complete_reaction"]="/ws Resolution <t>",
Is there something I'm missing here?
