1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-04 20:45:34 +00:00
openmw/mscripts/test.mn

13 lines
209 B
Text
Raw Normal View History

// A short example script
import io, timer;
sleep(6);
while(true)
{
print("Howdy from the world of Monster scripts!");
print("This script is located in mscripts/test.mn. Check it out!");
sleep(60);
}