1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
OpenMW/mscripts/test.mn

11 lines
190 B
Plaintext
Raw Normal View History

// A short example script
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);
}