summaryrefslogtreecommitdiff
path: root/npc/00000SAVE/andy_alex.forum.txt
blob: 18a25ece05b530a372f949a2ebbd273ebeda36df (plain) (blame)
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// All .forum.txt files were not converted
// author: TomphaA


//Alex

009-1.gat,??,??,?|script|Alex|???,{


    if (TOM_Quest == 1) goto L_Alex_Waits_1;
    if (TOM_Quest == 2) goto L_Alex_Tablet;
    if (TOM_Quest == 3) goto L_Alex_Didyou;
    if (TOM_Quest == 4) goto L_Alex_Okay;
    if (TOM_Quest == 5) goto L_Alex_End;
	

    mes "[Alex]";
    mes "\"Hey there!  Mind giving us a hand?\"";
    menu
	
        "Yeah, what do you need?", L_Alex_Help,
		
        "I Don't have time, sorry.", -;
		
    close;
	
L_Alex_Help
	
	mes "[Alex]";
	mes "\"He shows you little wooden box.\"";
    mes "\"Give these to Andy you can find him somewhere around in Dark World, I'm sure he'll reward you.\"";
	set TOM_Quest, 1;
	close;
	
L_Alex_Tablet:

    mes "[Alex]";
    mes "\"Hey, I heard you have something for me...\"";
	mes "\"You give Alex the stone tablet, Alex looks at it and seems to be very happy\"";
	mes "[Alex]";
	mes "\"I need you to tell Andy that we found what we we're looking for and that we dont have to examine those Dark World creatures anymore, I'm sure he'll understand.\"";
	set TOM_Quest, 3;
    close;
	
L_Alex_Didyou:

    mes "[Alex]";	
    mes "\"Did you tell it to him already, if not please hurry!\"";
    close;
	
L_Alex_Waits_1:

    mes "[Alex]";
    mes "\"Did you give that box to Andy?\"";
    close;
	
L_Alex_Okay:

	mes "[Alex]";
    mes "Did you tell him what I asked you to tell him?";
    menu
	
        "Yes I did, but he asked me to tell you that he is going to stay in Dark World because he likes that place.", L_Alex_Damn,
		
		"No I didn't", -;
		
    close;
	
L_Alex_Damn:

	set TOM_Quest, 5;
    mes "[Alex]";
    mes "\"Ah, thank you. Hope he's mentally okay...\"";
	mes "\"Here is your reward anyways, Andy found these a year ago from Dark World...\"";
	getinventorylist;
    if (@inventorylist_count == 100) goto L_Alex_TooMany;
	getexp 3000, 0;
	set Zeny, Zeny + 4000;
	getitem "Whiterabbitears", 1;
	close;
	
L_Alex_TooMany:

    mes "[Alex]";
    mes "\"You have too many items for me to give you a reward.\"";
    close;
	
L_Alex_End:

    mes "[Alex]";
    mes "\"Be safe out there, Dark World is dangerous for the unexperienced!\"";
    close;
	
}












//Andy

???-?.gat,??,??,?|script|Andy|???,{
	
    if (TOM_Quest == 1) goto L_Andy_Okay;
    if (TOM_Quest == 2) goto L_Andy_Tablet;
    if (TOM_Quest == 3) goto L_Andy_Tell;
    if (TOM_Quest == 4) goto L_Andy_whatdidhesay;
    if (TOM_Quest == 5) goto L_Andy_End;
	
    mes "[Andy]";
    mes "\"Lots of work to do.\"";
    close;
	
L_Andy_Okay:

    mes "[Andy]";
    mes "\"Oh, hello there.\"";
	next;
	mes "\"You show him the wooden box Alex gave you earlier.\"";
	mes "\"Alex wanted you to give me that? Okay, let me see...\"";
	getexp 1000, 0;
	set Zeny, Zeny + 1000;
    goto L_Andy_Help
	
L_Andy_Help:

    mes "[Andy]";
    mes "\"I need Alex to see this...\"";
	mes "\"Andy shows you a stone tablet.\"";
	mes "\"Please get this to Alex!\"";
	set TOM_Quest, 2;
    close;
	
L_Andy_Tablet:

    mes "[Andy]";
    mes "\"Did you show Alex that tablet\"";
    close;

L_Andy_Tell
	
    mes "[Andy]";
    mes "\"What did he say?\"";
	menu
	
        "He said that you have found what you were looking for and you dont have to stay here in Dark World anymore.", L_Andy_Well,
		
        "Nothing...", -;
		
		close;
	
L_Andy_Well:

    mes "[Andy]";
    mes "\"Thats great news, but tell Alex that I'm going to stay here because I like this place.\"";
	getexp 1000, 0;
	set TOM_Quest, 4;
    close;
	
L_Andy_Whatdidhesay:

    mes "[Andy]";
    mes "\"Pleasy hurry!\"";
    close;
	
L_Andy_End:

    mes "[Andy]";
    mes "\"Thanks for your help again!\"";
    close;
	
}