I'm new to Mushclient, but used Zmud/Cmud for awhile and I've been using TF for a long time.
Two questions:
1) How do I play a system beep in a trigger? Either in the send box, or from my Lua script.
2) Is it possible to omit the text I send from my Lua script in a trigger.
For example:
Damian dealt the killing blow to .*
calls this:
function handleCorpse()
local lastkiller = GetVariable("lastkiller")
if lastkiller == "damian" then
world.Send "bury corpse"
world.Send "rest"
world.Send "arepair all"
world.Send "divvy gold"
end
end
Can I omit the bury corpse;rest;arepair all;divvy gold from my output?
Thank you,
Jinkai
Two questions:
1) How do I play a system beep in a trigger? Either in the send box, or from my Lua script.
2) Is it possible to omit the text I send from my Lua script in a trigger.
For example:
Damian dealt the killing blow to .*
calls this:
function handleCorpse()
local lastkiller = GetVariable("lastkiller")
if lastkiller == "damian" then
world.Send "bury corpse"
world.Send "rest"
world.Send "arepair all"
world.Send "divvy gold"
end
end
Can I omit the bury corpse;rest;arepair all;divvy gold from my output?
Thank you,
Jinkai