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
|
// TMW2 scripts.
// Author:
// Jesusalva
// Description:
// Tulimshar Inn Receptionist
003-9,42,123,0 script Gambler Master NPC_LOF_NOBLEMAN,{
mesn;
mesq l("Hello! Welcome to the Inn! I am an Alliance officer, and I oversee gambling all over the world!");
next;
mesn;
mesq l("So how can I help you?");
do
{
next;
select
l("How does Gambling works?"),
l("How can I obtain casino coins?"),
l("Nothing, thanks.");
mes "";
switch (@menu) {
case 1:
mesn;
mesq l("You find a slot machine or another gambler, and make a bet!");
next;
mesn;
mesq l("If you're right, you'll gain more Casino Coins! And even other nice things!");
next;
mesn;
mesq l("But if you're wrong, you'll have to pay up! There's no refunds. This is gambling, if you lose you lose!");
next;
mesn;
mesq l("If you're afraid of losing everything, then DEFINITELY do not gamble. %%2");
break;
case 2:
mesn;
mesq l("I dunno. I don't think they're sold anywhere.");
next;
mesn;
mesq l("I know a few bandits stole a few, and Lava Slimes love to eat Casino Coins.");
next;
mesn;
mesq l("I've even heard of people whom dug Casino Coins out of the ground, but as I said, I don't know. But you'll certainly come across a few o your adventures!");
break;
}
} while (@menu != 3);
close;
OnInit:
.sex = G_MALE;
.distance = 5;
end;
}
|