forked from mirror/openmw-tes3mp
656007cf01
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
12 lines
209 B
Text
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);
|
|
}
|