Hello everyone
I've made my way to Mushclient and I am slowly getting the hang of programming in Lua.
But now I stumbled upon a (probably incredibly easy-to-solve) problem.
I made a small "Warning" table with only one key in it yet. It should
warn me on several occasions (theft for example)
This is what I did in my script :
Warning = {}
Warning.theft = {
ColourNote("darkred","white","Warning! Theft attempt!!")}
I though that would be the right way to do that.
But now I want it to play that ColourNote when I get this trigger :
^You get (\d+) gold sovereigns from a canvas backpack\.$
I already tried Warning.theft and such in script and in send but I
can't figure out how to access my table!
