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
72
73
74
75
76
77
78
79
80
81
82
83
84
|
// Evol scripts.
// Authors:
// Reid
// Description:
// Drunken easteregg about player's past activity
000-2-0.gat,20,23,0,1 script BillyBons 311,{
mesn;
if (rand(5)==2) goto l_Hips;
mesq l("You?? Here??");
mesq l("How is *hick* possible??");
next;
mesq l("The sailor chugs his beer");
menu
lg("Excuse me? Do you know who I am?"), -;
mesn;
mesq l("Don't do do theee... *hick* with me eh!");
next;
menu
l("Are you ok?"), l_Quit,
l("Alright, bye!"), -;
mesn;
mesq lg("NO and *hick* NO, you and you and your... *burp* stupi*hick* guild!");
next;
mesq l("You tried to get rid of me, eeh?? But surprise! I'm still here...*hick* Or there....");
next;
mesn;
mesq l("But you won't *hick* me this time...");
next;
menu
l("What are you talking about? Which guild?"), l_Quit,
l("You are full of wine, my friend..."), -,
l("You should go and get some sleep."), l_Quit;
mesn;
mesq l("If I saw *hick* who you wereee.... *hips* Would not have helped you! ");
next;
menu
l("But who am I?"), -,
l("What am I suposed to say?"), l_Quit,
l("You should go and get some sleep."), l_Secret;
mesn;
mesq l("The giant bogeyman!");
next;
goto l_Quit;
l_Secret:
mesn;
mesq l("Hear me *hick* well, what ever, whatididever you will*hick*said ab...euh..out wha?! You saw there, the Guild of Esperia won't let it go to public.");
next;
mesq l("Nobody will know about the existence of the Mercurians");
next;
mesq l("Nobody! *burp*");
next;
goto l_Quit;
l_Hips:
mesq l("*hick*");
close;
l_Quit:
mesn;
mesq l("Yeah you're all like *hick* that in Esperia, but you won't get me! *burp*");
next;
mesq l("I'm not that numb eeh *hick* what did ever you disco*hips*veeered there, the warrior guild won't get me!");
next;
mesq l("The sailor is turning his back to you.");
close;
}
|