I have a trigger that looks like this:
fires on: Your 'aegis' spell is about to fail.
which sends: aegis_warning
'Sent to:' is set to script
this call the script below:
just wondering how to get rid of the echo on the DoAfter bit that is sent to the world... or can I? Nothing major, just asthetics..
cheers
addon: ..thinking some more, I guess I should get the DoAfter to call a script instead, and then the script could send to the world using the world.EchoInput = 0.. but how do I get the DoAfter to call a script rather than send to world? ..can I even?
fires on: Your 'aegis' spell is about to fail.
which sends: aegis_warning
'Sent to:' is set to script
this call the script below:
sub aegis_warning
world.EchoInput = 0
world.send "grouptell :: aegis falling in 1 minute"
world.EchoInput = 1
world.DoAfter 48, "grouptell :: aegis falling in 10 seconds"
end sub
just wondering how to get rid of the echo on the DoAfter bit that is sent to the world... or can I? Nothing major, just asthetics..
cheers
addon: ..thinking some more, I guess I should get the DoAfter to call a script instead, and then the script could send to the world using the world.EchoInput = 0.. but how do I get the DoAfter to call a script rather than send to world? ..can I even?