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
|
izlude_in.gat,115,76,5 script Evan 47,{
mes "[Evan]";
mes " ";
mes "*sighs*";
next;
mes "[Evan]";
mes "Oh? Whats the matter? ...Well, I have finally managed to encase the soul of a pretty girl ...";
next;
mes "[Evan]";
mes "...so why am I sad?";
mes " ";
mes "It's because I don't even know how she looks like...say, if you can find me and 'Old Portrait' of her, I'll give you her lover's lost letter!";
next;
mes "[Evan]";
mes "Whaddaya say? ..pal?";
menu "What do I need again?",ExItems,"Here! I got what you need!",ExCreate,"Sorry, I can't help you.",ExEnd;
ExItems:
mes "[Evan]";
mes "A picture of her lovely face...";
mes " ";
mes "An 'Old Portrait' preferrably...";
close;
ExCreate:
mes "[Evan]";
mes "Really!! You'll help me!";
next;
if(countitem(7014)<1) goto NoItem;
goto ExGive;
NoItem:
mes "[Evan]";
mes "Waahhhh, stop playing with my feelings!";
mes " ";
mes "Go away!";
close;
ExGive:
mes "[Evan]";
mes "YES! I am forever in your debt!";
delitem 7014,1;
getitem 636,1;
mes " ";
mes "Here is lover's lost letter as promised! Again - Thank you!";
close;
ExEnd:
mes "[Evan]";
mes "*sighs*";
close;
close;
}
|