summaryrefslogtreecommitdiff
path: root/npc/custom/quests/kiel_quest.txt
blob: d9a496a8469b25e2aaa70d4017da87ce1ac3b754 (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
//===== rAthena Script =======================================
//= Custom Kiel Dungeon Warper
//===== By: ==================================================
//= Lupus
//===== Current Version: =====================================
//= 1.0
//===== Compatible With: =====================================
//= rAthena SVN
//===== Description: =========================================
//= I't custom 8) But you have to pay every time you enter
//===== Additional Comments: =================================
//= 
//============================================================

prontera,157,168,2	script	Kiel Capry	68,{
	mes "[Kiel Capry]";
	mes callfunc("F_Hi");
	mes "Help us! Everybody's evacuated! There's been an accident in my father's University...";
	if(rand(2))close;
	specialeffect 417;
	next;
	emotion e_wah;
	mes "[Kiel Capry]";
	mes "My father, ^FF0000Kiel Carlo^000000 is waiting for help in the broken elevator.";
	if(rand(2))close;
	next;
	mes "[Kiel Capry]";
	mes "What? Our home is located in the middle of ^FF0000Yuno field 08^000000...";
	close;
}

kh_school,119,146,3	script	Kiel Carlo	748,{
	mes "[Kiel Carlo]";
	mes callfunc("F_Hi");
	mes "We have evacuated all the students!";
	mes "What? Are you going to jump in the lift tunnel, right into the hands of those gone bad robots?";
	mes "Well... we need money. Will you pay 10.000z?";
	next;
	emotion e_hmm;
	menu "Yep.",M_GO, "No way!",-;

	mes "[Kiel Carlo]";
	mes "Well... "+callfunc("F_Bye");
	close;

M_GO:
	mes "[Kiel Carlo]";
	mes "I refuse to let you enter if you don't meet these conditions:";
	mes "1. You have to be 70 Base Level or higher.";
	mes "2. You have to donate 10.000 zeny.";
	next;
	if(BaseLevel<70 || Zeny<10000){
		mes "[Kiel Carlo]";
		mes "Alas... I can't let you in.";
		emotion e_sry;
		close;
	}
	set Zeny,Zeny-10000;
	warp "kh_kiehl02",rand(46,53),rand(9,12);
	end;
}

kh_kiehl02,49,5,0	warp	warpk06	1,1,kh_school,119,146