blob: 67c60636e0f7dcc4cb0b377580766bbee0fbca37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
game.title = "Demo game";
game.author = "Mike Buland";
game.version = 1;
game.revision = 0;
game.start = <<start>>;
global
{
command: "take" item
{
if item in situation.items then
{
player.inventory += item;
situation.items -= item;
display('''You pickup the ''' + item +
''' and put it in your pocket.''');
}
else
{
display('''You don't see anything like that here.''');
}
}
command: "use" item
{
if not item in player.inventory then
{
display('''You don't have anything like that in your pocket.''');
}
else
{
}
}
}
situation <<main>>
{
command: "there" hi
{
}
setup
{
player.inventory = [];
}
enter
{
}
}
function hello()
{
bob = 55 * 2 + 1;
}
situation <<start>>
{
enter
{
display('''You are here, there is a wrench sitting on the table.''');
test("use", bob );
}
}
situation <<end>>
{
enter
{
goto( <<start>> );
}
}
|