Quote:
what are you on about??

i make a file called "script.mrc" and put the code in

Code:
 alias sayall {
  .timersayall 0 900   echo -a $$1-
}


But i when i do /sayall test

Nothing happens. Even if i reduce time to 2 seconds nothing happens... frown

for one, you have that /echoing and not /amsgin.
Code:
alias startsay { set %t.msg $$1- | timermsg 0 900  amsg %t.msg }
alias stopsay { timermsg off }

The usage would be /startsay message to begin the message, and /stopsay to stop the message. If you'd like to change the seconds between the messages, simply change the 900 to your desired length in seconds. Leave the 0 as it is. I changed the alias's in case you still have some of the other's loaded which could be causing a problem. Hope this works for you.