1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-04 18:15:34 +00:00
openmw/mscripts/test.mn
nkorslund 656007cf01 Updated and tested with latest Monster version. Fps ticker and test
script are now simple function-scripts, not classes.


git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@82 ea6a568a-9f4f-0410-981a-c910a81bb256
2009-01-20 08:29:15 +00:00

12 lines
209 B
Text

// 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);
}