exec_alias - Execute an alias
exec_alias alias ?args?
This procedure is the only way to execute aliases from a procedure you define, from another alias, or from an action. If given two arguments, alias is the name of the alias to be executed and args are the arguments to be passed to that alias.
alias doh {writemud
"'I hate it when %0 kill me"}
action {([a-z ]+) kills you.}
{bell;exec_alias doh "@1"}
Bear kills you. will then result in a beep and you saying "I hate it when Bear kills me"