root/npc/custom/events/hyegun_event.txt @ 1

Revision 1, 2.7 kB (checked in by jinshiro, 17 years ago)
Line 
1//===== eAthena Script =======================================
2//= HyeGun Event
3//===== By: ==================================================
4//= Synesthesia
5//===== Current Version: =====================================
6//= 1.0
7//===== Compatible With: =====================================
8//= Any Athena Version I think
9//===== Description: =========================================
10//= Event similar to iRO's Christmas event when searching for Antonios.
11//===== Additional Comments: =================================
12//= Drink Jakada!
13//============================================================
14
15//HyeGun Mob spawning
16anthell01,0,0,0,0       monster Hyegun  1512,3,180000,30000,0
17mag_dun01,0,0,0,0       monster Hyegun  1512,3,180000,30000,0
18alde_dun01,0,0,0,0      monster Hyegun  1512,3,180000,30000,0
19in_sphinx1,0,0,0,0      monster Hyegun  1512,3,180000,30000,0
20
21//Munak Quest
22pay_dun01,53,269,6      script  Munak   1026,{
23if(event_hyegun==3) goto Lfinished;
24mes "[^FF0000Munak^000000]";
25mes "Hello, kinda strange talking to a Munak huh?";
26mes "I'm a friendly Munak that wants to tell you something.";
27menu "Listen to her story",Lok,"Leave",Lno;
28
29        Lok:
30        mes "[^FF0000Munak^000000]";
31        mes "Well see our father ^666600HyeGun^000000 has been terrible to us Munaks.";
32        mes "We would like you to get revenge for what he has done to us.";
33        next;
34        mes "When you find him, kill him.";
35        mes "He will drop an item that you will have to bring to me to prove his death.";
36        mes "Bring me ^FF00003 ^008800Yggdrasil Dew^000000 and I'll give you a reward.";
37        mes "Remember, you may only do this quest ^FF00003 times.";
38        menu "Info about HyeGun",Lhyeinfo,"Give her the items",Litem,"Leave",Lno;
39
40        Lhyeinfo:
41        mes "[^FF0000Munak^000000]";
42        mes "- HyeGun looks like us but he's a tanish color type with long hair.";
43        mes "- He's been last seen in the first level of the 4 most popular dungeons.";
44        mes "He doesn't hang out here because there's so many of us.";
45        mes "Anything else?";
46        menu "Info about HyeGun",Lhyeinfo,"Give her the items",Litem,"Leave",Lno;
47
48        Litem:
49        mes "[^FF0000Munak^000000]";
50        mes "Ahh so you've completed the task so soon?";
51        mes "Good job";
52        mes "Let's see if you've got the right stuff.";
53        next;
54        if (countitem(7141) < 3)goto Lnoitem;
55        mes "Good job, here's your reward.";
56        next;
57        delitem 7141,3;
58        getitem 617,1;
59        set event_hyegun,event_hyegun+1;
60        close;
61
62        Lfinished:
63        mes "[^FF0000Munak^000000]";
64        mes "I'm sorry, you've already completed my task 3 times.";
65        close;
66
67        Lno:
68        mes "[^FF0000Munak^000000]";
69        mes "Okay then, when you feel brave enough, come on back.";
70        close;
71
72        Lnoitem:
73        mes "[^FF0000Munak^000000]";
74        mes "Hey, you don't have the Yggdrasil Dew.";
75        mes "Come back when you've gotten 3 of them.";
76        close;
77}
Note: See TracBrowser for help on using the browser.