openmw-tes3coop/mscripts/test.mn

23 lines
356 B
Text
Raw Normal View History

// A sample class
class Test;
import io, timer;
test()
{
state = printMessage;
}
state printMessage
{
// This state code will run as long as the object is in this state.
begin:
sleep(6);
loop:
print("Howdy from the world of Monster scripts!");
print("This script is located in mscripts/test.mn. Check it out!");
sleep(60);
goto loop;
}