mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
a0a95927c4
- some work on the scripts - fps counter moved to Monster - minor updates git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@80 ea6a568a-9f4f-0410-981a-c910a81bb256
23 lines
356 B
Plaintext
23 lines
356 B
Plaintext
// 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;
|
|
}
|