summaryrefslogtreecommitdiff
path: root/npc/quests/bongun.txt
blob: eea5ba3e7a0717ae4ff188ad9c3a3aa8f08b3543 (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
comodo.gat,135,227,5	script	Sherri	93,{
mes "[Sherri]";
mes " ";
mes "*sighs*";
next;
mes "[Sherri]";
mes "Oh? Whats the matter? ...Well, I have finally managed to encase the soul of a handsome boy ...";
next;
mes "[Sherri]";
mes "...so why am I sad?";
mes " ";
mes "It's because I don't even know how his personality is...say, if you can find me a 'Girl's Diary' about him, I'll give you his diary!";
next;
mes "[Sherri]";
mes "Can you please help me?";

	menu "What do I need again?",ExItems,"Here! I got what you need!",ExCreate,"Sorry, I can't help you.",ExEnd;

    ExItems:
        mes "[Sherri]";
        mes "What I desire is...";
        mes " ";
	mes "A 'Girl's Diary' about him...";
	close;

    ExCreate:
        mes "[Sherri]";
	mes "Really!! You'll help me!";
	next;
	if(countitem(1558)<1) goto NoItem;
        goto ExGive;

	    NoItem:
		mes "[Sherri]";
		mes "Waahhhh, stop playing with my feelings!";
		mes " ";
		mes "Go away!";
		close;

	    ExGive:
		mes "[Sherri]";
		mes "YES! I am forever in your debt!";
		delitem 1558,1;
		getitem 659,1;
		mes " ";
		mes "Here is his diary as promised! Again - Thank you!";
		next;
		mes "[Sherri]";
		mes "Wait! Here's his sword, I found it next to him. But it's broken...I know of a old man just west of Geffen who can fix such a sword!";
		getitem 7110,1;
		close;

    ExEnd:
        mes "[Sherri]";
	mes "*sighs*";
        close;
close;    
}