I play a mud that uses @ as a color code indicator. I made a hiding variable and a trigger to set the variable yes or no depending on if I’m hiding or not. I then made an alias for say to check the variable and then perform one of two actions.
How do I get it to send @ within the scrip and not call for a variable?
<aliases>
<alias
match="say *"
enabled="y"
send_to="12"
sequence="99"
>
<send>
if hiding == "yes" then
SendImmediate ("emote says from the shadows, "@R%1@n"")
else
SendImmediate ("say @R%1@n")
end
</send>
</alias>
</aliases>
How do I get it to send @ within the scrip and not call for a variable?