Macros for Repeating Commands
// A macro for repeatedly yelling something. The macro will exit when a key is
// pressed. Useful for when you're fallen and waiting for a wandering healer
// to come by.
// Author: Magnels
"ry" call repyell
repyell
{
set yelltext @text
set @env.key_interrupts "true"
label top
"\yell " yelltext "\r"
pause 40
goto top
}
Return to Merlisk's Scrolls