diff options
author | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
---|---|---|
committer | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
commit | 1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67 (patch) | |
tree | 87a171383266dd1f64196589af081bc2f8e497c3 /tests/examplefiles/example.moo | |
parent | f1c080e184dc1bbc36eaa7cd729ff3a499de568a (diff) | |
download | pygments-master.tar.gz |
Diffstat (limited to 'tests/examplefiles/example.moo')
-rw-r--r-- | tests/examplefiles/example.moo | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/examplefiles/example.moo b/tests/examplefiles/example.moo deleted file mode 100644 index 1a15914d..00000000 --- a/tests/examplefiles/example.moo +++ /dev/null @@ -1,26 +0,0 @@ -if (this.running) - player:tell("[Train] Error: already a jump in progress"); - return; -endif -this.running = 1; -this.aborted = 0; -this:announce_all("[Train] departure in 20 seconds"); -dest = this.targets[random(length(this.targets))]; -this:announce_all("[Train] Next stop is '", dest:title(), "'"); -this:announce_all("You hear the engines starting up"); -this.location:announce("The MOOTrain starts up his engines"); -suspend(20); -if (this.aborted) - this.running = 0; - this.aborted = 0; - return; -endif -this:announce_all("[Train] Departure!"); -this.location:announce_all("The MOOTrain leaves into the 42th dimension!"); -this:announce_all("Outside you see the lights of the 42th dimension"); -this:moveto(dest); -suspend(4); -this:announce_all("The glowing gets less, until you can see the clear shape of the room, the MOOTrain has landed in"); -this.location:announce_all("The MOOTrain arrives out of the 42th dimension!"); -this:announce_all("[Train] arrived in '", dest:title(), "'"); -this.running = 0;
\ No newline at end of file |