root/npc/custom/quests/thq/THQS_QuestNPC.txt @ 1

Revision 1, 20.7 kB (checked in by jinshiro, 17 years ago)
Line 
1//===== eAthena Script =======================================
2//= Treasure Hunter Script
3//===== Converted By =========================================
4//= Fredzilla
5//= Original
6//////////////////////////////////////////////////////////////
7//                  Treasure Hunter Quests                  //
8//                       By: Ezekial                        //
9//             for the use on nRO run by Newbe5             //
10//                    revised By Warlock                    //
11//////////////////////////////////////////////////////////////
12//===== Version ==============================================
13//= 1.2
14//===== Compatible With ======================================
15//= eAthena 1.0
16//===== Description ==========================================
17//= Start for Treasure hunter quests
18//===== Comments =============================================
19//= Event_THQS - Used to check if you have already registered
20//= #Treasure_Token - used to keep track of tokens
21//= 1.0 - Straight conversionof Aegis NPC file
22//= 1.1 Added time penalty to prevent get quests to often [Lupus]
23//= 1.2 Fixed not working penalty, added anti-cheat [Lupus]
24//= 1.3 Changed some bad RGB Codes. (bugreport:211) [Samuray22]
25//============================================================
26
27
28yuno_in01,112,151,6     script  Quest Manager   62,{
29        mes "[Guy]";
30        mes "Welcome to the Treasure Hunters Guild "+strcharinfo(0)+".";
31        next;
32        if (On_Quest == 0) goto N_NewQuest;
33        mes "[Guy]";
34        mes "Look " +strcharinfo(0)+ ", you can only 1 quest at a time, you should finish the quest unless you have given up.";
35        mes "Giving up will cost you ^FF00002500z^000000.";
36        next;
37        menu "No, never would I leave a quest!",-,"Yah I'm pathetic... Pay 2500z",N_PayZeny;
38        mes "[Guy]";
39        mes "Good well get back out there.";
40        close;
41N_PayZeny:
42        if (zeny < 2500) goto N_ZenyFail;
43        set one_qset, 0;
44        set two_qset, 0;
45        set three_qset, 0;
46        set four_qset, 0;
47        set five_qset, 0;
48        set six_qset, 0;
49        set seven_qset, 0;
50        set eight_qset, 0;
51        set nine_qset, 0;
52        set ten_qset, 0;
53        set On_Quest, 0;
54        set Zeny,Zeny-2500;
55        //add time delay penalty. You can get another quest after 2 - 3 hours. [Lupus]
56        set #THQ_DELAY, (GetTime(7)*12*31*24+GetTime(6)*31*24+GetTime(5)*24+GetTime(3)+rand(2,3));
57        mes "[Guy]";
58        mes "Its sad to see someone give a quest up...";
59        mes "Shame on you.";
60        emotion 7;
61        close;
62
63N_ZenyFail:
64        mes "[Guy]";
65        mes "Thats sad you don't even have ^FF00002500z^000000.";
66        close;
67
68N_NewQuest:
69        if (Event_THQS == 0) goto N_Signup;
70        //checking if time penalty is over [Lupus]
71        if (#THQ_DELAY > (GetTime(7)*12*31*24 + GetTime(6)*31*24 + GetTime(5)*24 + GetTime(3)) ) goto L_NoQuestsForYet;
72        mes "[Guy]";
73        mes "Ahh welcome fellow Treasure Hunter.";
74        mes "You currently have ^FF0000"+#Treasure_Token+"^000000 treasure tokens!!!";
75        mes "Would you like me to asign you a Quest?";
76        next;
77        menu "Yes I would like a Quest Please.",-,"Sorry Guy no time today.",N_NoTime;
78       
79        mes "[Guy]";
80        mes "Ok lets see what quest we can give you today.";
81        mes "The quest names in ^FF0000This Colour^000000 mean that they are more challanging then the rest, but have better rewards.";
82        next;
83        set #THQ_DELAY,(GetTime(7)*12*31*24+GetTime(6)*31*24+GetTime(5)*24+GetTime(3) + 1); //you can get another quest after 1 hour [Lupus]
84        emotion 21;
85        if(@treasure_job==0) set @treasure_job,rand(1,10); //doesn't allow cheaters to pick any quest they want
86        if(@treasure_job==2) goto N_JobList2;
87        if(@treasure_job==3) goto N_JobList3;
88        if(@treasure_job==4) goto N_JobList4;
89        if(@treasure_job==5) goto N_JobList5;
90        if(@treasure_job==6) goto N_JobList6;
91        if(@treasure_job==7) goto N_JobList7;
92        if(@treasure_job==8) goto N_JobList8;
93        if(@treasure_job==9) goto N_JobList9;
94        if(@treasure_job==10) goto N_JobList10;
95        goto N_JobList1; //if(@treasure_job==1)
96
97N_NoTime:
98        mes "[Guy]";
99        mes "Alright maybe next time "+strcharinfo(0)+".";
100        emotion 20;
101        close;
102
103N_Signup:
104        mes "[Guy]";
105        mes "I'm afraid you must sign up for the guild before you can go on a quest!";
106        emotion 17;
107        close;
108
109L_NoQuestsForYet:
110        mes "[Guy]";
111        mes "I'm afraid there aren't any Quests for you yet.";
112        mes "Call in "+ (#THQ_DELAY - (GetTime(7)*12*31*24+GetTime(6)*31*24+GetTime(5)*24+GetTime(3)) )+" hours later.";
113        emotion 17;
114        close;
115
116L_QuestGiven:
117        set On_Quest,1;
118        set @treasure_job,0; //next time u get random quest
119        close;
120
121///////Job list 1///////
122N_JobList1:
123        mes "[Guy]";
124        mes "Ok you have a couple quests that can be done here.";
125        next;
126        menu "Lost Old Man.",-,"Master needs his Bow.",N_MasterBow,"The Hit List.",N_HitList,"^FF0000The Sad Widow.^000000",N_SadWidow;
127        mes "[Guy]";
128        mes "^FF0000Lost Old Man^000000";
129        mes "^FF0000------------^000000";
130        mes "This is an easy and low payed quest.";
131        mes " ";
132        mes "A wife came in asking us to find his husband, she seems to come in alot asking us to find him over and over again.";
133        next;
134        mes "[Guy]";
135        mes "But he always seems to be around the same place so there isn't much looking involved,check the mountains 1 west and 1 north of prontera.";
136        set one_qset,1;
137        goto L_QuestGiven;
138
139N_MasterBow:
140        mes "[Guy]";
141        mes "^FF0000Master needs his Bow^000000";
142        mes "^FF0000--------------------^000000";
143        mes "This is just a package delivery run, no big deal or anything.";
144        mes " ";
145        mes "Take this to an archer in the Archer Village outside of Payon.";
146        getitem 1072,1; //Delivery_Box
147        set one_qset,2;
148        goto L_QuestGiven;
149
150N_HitList:
151        mes "[Guy]";
152        mes "^FF0000The Hit List^000000";
153        mes "^FF0000------------^000000";
154        mes "In this quest you get to see some action.";
155        mes " ";
156        mes "There has been a farmer that keeps having all his crops eaten by ^FF0000Thief Bugs, Porings, and Lunitics^000000 here is a lost of what I need you to do. He is nexting East of Prontera.";
157        next;
158        mes "[Guy]";
159        mes "Ok go to the east and bash those little bastards like there is no tommorow. When you are done with that list you have just discard it, but you will NOT get another one!.";
160        set one_qset,3;
161        goto L_QuestGiven;
162
163N_SadWidow:
164        mes "^FF0000The Sad Widow^000000";
165        mes "^FF0000*************^000000";
166        mes "This is just another quest with possable well pay.";
167        mes " ";
168        mes "There is an old Widow in pontera, she recently lost her husband due to a monster attack.She has requested a Guild member to come talk to her at the Pontera Graveyard.";
169        set one_qset,4;
170        goto L_QuestGiven;
171
172///////Job list 2///////
173N_JobList2:
174        mes "[Guy]";
175        mes "Ok you have a couple quests that can be done here.";
176        next;
177        menu "The Strange Letter",-,"Jur for Jeramiah",N_JurJeramiah,"Bee Keepers Hunny",N_BeeHunny,"^FF0000The Wander Man^000000",N_WanderMan;
178
179        mes "^FF0000The Strange Letter^000000";
180        mes "^FF0000------------------^000000";
181        mes "I do not know much about this quest.";
182        mes " ";
183        mes "A strange man came in here yesterday and asked me to deliver this ^FF0000Strange Letter^000000 to some woman in Morroc. Knowing us we do not ask questions so you must take care of this delivery.";
184        mes "The Woman is in located in Morroc and her name is Erika.";
185        set two_qset, 1;
186        getitem 1072,1; //Delivery_Message
187        goto L_QuestGiven;
188
189N_JurJeramiah:
190        mes "^FF0000Jur for Jeramiah^000000";
191        mes "^FF0000----------------^000000";
192        mes "Standard delivery quest.";
193        mes " ";
194        mes "Jeramiah ordered a Special Jur from our weapon shop.Your Job is to deliver it to him in the Assasin Temple.";
195        getitem 1998,1; //Jeramiah's_Jur
196        set two_qset,2;
197        goto L_QuestGiven;
198
199N_BeeHunny:
200        mes "^FF0000Bee Keepers Hunny^000000";
201        mes "^FF0000-----------------^000000";
202        mes "Strange man in the marsh need your help.";
203        mes " ";
204        mes "There is a strange man in the forest in ^FF00001 south and 1 west^000000 of Prontera, he need your help with something.";
205        set two_qset,3;
206        goto L_QuestGiven;
207
208N_WanderMan:
209        mes "^FF0000The Wander Man^000000";
210        mes "^FF0000**************^000000";
211        mes "There is a woman in Payon that is in desperate for aid.";
212        mes " ";
213        mes "There is a woman in Payon named Molly please get to her as soon as possable the letter she sent here sounded like someone was killing her.";
214        set two_qset,4;
215        goto L_QuestGiven;
216
217///////Job list 3///////
218N_JobList3:
219        mes "[Guy]";
220        mes "Ok you have a couple quests that can be done here.";
221        next;
222        menu "Damn Pixies!",-,"Package Delivery",N_Delivery1,"Prontera Culvert",N_ProntCulvert,"^FF0000Trouble at the Coal Mine^000000",N_CoalMine;
223        mes "^FF0000Damn Pixies!^000000";
224        mes "^FF0000------------^000000";
225        mes "Have you ever been to Hell?";
226        mes " ";
227        mes "A man outside of ^FF0000Ant Hell^000000 has requested your audiance, I suggest you hurry.";
228        set three_qset,1;
229        goto L_QuestGiven;
230
231N_Delivery1:
232        mes "^FF0000Package Delivery^000000";
233        mes "^FF0000----------------^000000";
234        mes "Standard drop off quest.";
235        mes " ";
236        mes "In this quest you need to deliver a mystery box to someone names ^FF0000Flank at the bridge between Aldebaran and Juno^000000.";
237        getitem 1082,1; //Delivery_Box_
238        set three_qset,2;
239        goto L_QuestGiven;
240
241N_ProntCulvert:
242        mes "^FF0000Prontera Culvert^000000";
243        mes "^FF0000----------------^000000";
244        mes "The bugs,They are everywere!.";
245        mes " ";
246        mes "The ^FF0000Prontera Culvert^000000 is out of control!Sign up as a volenteer to clean out some of the culvert.";
247        next;
248        mes "I know it seems like there is no stoping them but however many you kill does makes a differance. After you have signed up, inside the Culvert there will be a Knight that will give you a quest.";
249        set three_qset,3;
250        goto L_QuestGiven;
251
252N_CoalMine:
253        mes "^FF0000Trouble at the Coal Mine^000000";
254        mes "^FF0000************************^000000";
255        mes "The fun...err...trouble never stops in Rune Midgar.";
256        mes " ";
257        mes "Recently there was an acident at the coal mines. There was a huge chasm that released some undead Evil Druids.";
258        next;
259        mes "The Evil Druids started to turn all the workers into the undead. We do not know why, but we do not want to find out, contact a man named Rudolfo outside the Coal Mines.";
260        set three_qset,4;
261        goto L_QuestGiven;
262
263///////Job list 4///////
264N_JobList4:
265        mes "[Guy]";
266        mes "Ok you have a couple quests that can be done here.";
267        next;
268        menu "Zombie Attack",-,"Mystic Wizard",N_MWizard,"Aww shoot!",N_Shoot,"^FF0000Emperium^000000",N_Emp;
269        mes "^FF0000Zombie Attack^000000";
270        mes "^FF0000-------------^000000";
271        mes "The undead have invaded Payon Cave!";
272        mes " ";
273        mes "I remember when Payon Cave used to be a safe place to visit, but now undead Zombies have infested the cave! Please contact ^FF0000Flora outside on Payon Cave^000000 and aid her.";
274        set four_qset,1;
275        goto L_QuestGiven;
276
277N_MWizard:
278        mes "^FF0000Mystic Wizard^000000";
279        mes "^FF0000-------------^000000";
280        mes "Proto-type of a Staff must be delivered to Zed the Wizard.";
281        mes " ";
282        mes "Zed the Wizard has requested to try out a new un-named proto-type staff. It will be your job to deliver this to him. Zed tend to stay within the general area of Juno.";
283        getitem 1999,1; //Zed's_Staff
284        set four_qset,2;
285        goto L_QuestGiven;
286
287N_Shoot:
288        mes "^FF0000Aww shoot!^000000";
289        mes "^FF0000----------^000000";
290        mes "A little girl is in trouble.";
291        mes " ";
292        mes "There is a little girl in trouble, her name is Dassy and she is ^FF0000east of the prontera fountan^000000.";
293        set four_qset,3;
294        goto L_QuestGiven;
295
296N_Emp:
297        mes "^FF0000Emperium^000000";
298        mes "^FF0000********^000000";
299        mes "This is a strange quest that I know little about.";
300        mes " ";
301        mes "Someone in ^FF0000Prontera Guild Hall^000000 has requested to see one of our members, his name is Czhore.";
302        set four_qset,4;
303        goto L_QuestGiven;
304
305///////Job list 5///////
306N_JobList5:
307        mes "[Guy]";
308        mes "Ok you have a couple quests that can be done here.";
309        next;
310        menu "Savage Land",-,"Pyramid's part 1",N_PyrPRT1,"Thinking first",N_Thinkfirst,"^FF0000The not so friendly ghost^000000",N_Ghost;
311        mes "^FF0000Savage Land^000000";
312        mes "^FF0000-----------^000000";
313        mes "Easy for some very hard for others.";
314        mes " ";
315        mes "A man named Lithin wish's to give you a quest, you can find him north of prontera inside of ^FF0000The Hidden Temple^000000";
316        set five_qset,1;
317        goto L_QuestGiven;
318
319N_PyrPRT1:
320        mes "^FF0000Pyramid's^000000";
321        mes "^FF0000---------^000000";
322        mes "Its funny cause no one knows how these were really made.";
323        mes " ";
324        mes "Aperently the Pyramids have are beganing to be infested with undead activity,outside the pyramids a man will be nexting for you. He did no give us his name but he asked for you to hurry.";
325        set five_qset,2;
326        goto L_QuestGiven;
327
328N_Thinkfirst:
329        mes "^FF0000Thinking first^000000";
330        mes "^FF0000--------------^000000";
331        mes "This sounds like another one of those ditzy girl quests...";
332        mes " ";
333        mes "Dazzy the local blond around Geffen has asked for you to deliver her these flowers. I don't know why someone would send flowers to herself...";
334        getitem 744,1; //Bouquet
335        set five_qset,3;
336        goto L_QuestGiven;
337
338N_Ghost:
339        mes "^FF0000The not so friendly ghost^000000";
340        mes "^FF0000*************************^000000";
341        mes "Well no one ever said Casper was nice behind the sceens.";
342        mes " ";
343        mes "A wizard on the 3rd floor of geffen tower want's to talk to you about the anchient ruins underneath the city.";
344        set five_qset,4;
345        goto L_QuestGiven;
346
347///////Job list 6///////
348N_JobList6:
349        mes "[Guy]";
350        mes "Ok you have a couple quests that can be done here.";
351        next;
352        menu "Package for thiefs",-,"Pyramid's part 2",N_PyrPRT2,"Special delivery",N_Delivery2,"^FF0000Geffenia^000000",N_Gef;
353        mes "^FF0000Package for thiefs^000000";
354        mes "^FF0000------------------^000000";
355        mes "How ironic.";
356        mes " ";
357        mes "Deliver this Box to the Thiefs guild.";
358        set six_qset,1;
359        getitem 1083,1; //Delivery_Box__
360        goto L_QuestGiven;
361
362N_PyrPRT2:
363        mes "^FF0000Pyramid's part 2^000000";
364        mes "^FF0000----------------^000000";
365        mes "More undead action in this triangle!";
366        mes " ";
367        mes "Talk to a man outside the entrance of the pyramids, he seems to have another quest for you.";
368        set six_qset,2;
369        goto L_QuestGiven;
370
371N_Delivery2:
372        mes "^FF0000Special delivery^000000";
373        mes "^FF0000----------------^000000";
374        mes "Well most of what we do is run packages, this is no different from other's.";
375        mes " ";
376        mes "Take this box, DO NOT OPEN IT! To a little girl in Lutie named Chirach she should be around santa.";
377        set six_qset,3;
378        getitem 1083,1; //Delivery_Box__
379        goto L_QuestGiven;
380
381N_Gef:
382        mes "^FF0000Geffenia^000000";
383        mes "^FF0000********^000000";
384        mes "The little children of Geffen have been haveing strange nightmares.";
385        mes " ";
386        mes "We belive that the ruins underneath geffen are causeing this problem, talk to a Wizard named Zuuzuu inside Geffen Tower for your mission.";
387        set six_qset,4;
388        goto L_QuestGiven;
389
390///////Job list 7///////
391N_JobList7:
392        mes "[Guy]";
393        mes "Ok you have a couple quests that can be done here.";
394        next;
395        menu "Apple Juice",-,"Delivery",N_Delivery3,"^FF0000Golden Thief Bug^000000",N_GTB,"^FF0000Evil Pirates^000000",N_EvilPirates;
396        mes "^FF0000Apple Juice^000000";
397        mes "^FF0000-----------^000000";
398        mes "Can't say no to some good apple juice.";
399        mes " ";
400        mes "There is a little girl up in prontera Square a bit north from the fountain, go talk to her.";
401        set seven_qset,1;
402        goto L_QuestGiven;
403
404N_Delivery3:
405        mes "^FF0000Delivery^000000";
406        mes "^FF0000--------^000000";
407        mes "So many packages so little time.";
408        mes " ";
409        mes "Take this box to a man in Alberta named Charles.";
410        getitem 1082,1; //Delivery_Box_
411        set seven_qset,2;
412        goto L_QuestGiven;
413
414N_GTB:
415        mes "^FF0000Golden Thief Bug^000000";
416        mes "^FF0000****************^000000";
417        mes "The prontera Culvert has never been the same...";
418        mes " ";
419        mes "Well there have been reports of a Golden Thief Bug running around the bottem on the Culvert. Talk to a Knight inside the Culvert.";
420        set seven_qset,3;
421        goto L_QuestGiven;
422
423N_EvilPirates:
424        mes "^FF0000Evil Pirates^000000";
425        mes "^FF0000************^000000";
426        mes "A ghost ship has washed up on shore on an island outside of Izlude.";
427        mes " ";
428        mes "A female assasin has a quest for you, she is nexting outside the Ghost Ship.There have been reports of evil undead pirates lurking around inside the ship.";
429        set seven_qset,4;
430        goto L_QuestGiven;
431
432///////Job list 8///////
433N_JobList8:
434        mes "[Guy]";
435        mes "Ok you have a couple quests that can be done here.";
436        next;
437        menu "Banana Juice",-,"Another Delivery",N_Delivery4,"My lost beeds",N_LostBeeds,"^FF0000Baphomet!^000000",N_Bapho;
438        mes "^FF0000Banana Juice^000000";
439        mes "^FF0000------------^000000";
440        mes "Sound gross to some good to others.";
441        mes " ";
442        mes "There is a little girl up in prontera Square a bit north from the fountain, go talk to her.";
443        set eight_qset,1;
444        goto L_QuestGiven;
445
446N_Delivery4:
447        mes "^FF0000Another Delivery^000000";
448        mes "^FF0000----------------^000000";
449        mes "Well yah box delivering is in high demand,lots of lazy people.";
450        mes " ";
451        mes "Take this package to a man in Morroc named Klye.";
452        set eight_qset,2;
453        getitem 1081,1; //Delivery_Box
454        goto L_QuestGiven;
455
456N_Bapho:
457        mes "^FF0000Baphomet!^000000";
458        mes "^FF0000*********^000000";
459        mes "Hidden in the Temple he watches and guards.";
460        mes " ";
461        mes "Rumor has it that a Goat Man is lurking in the Hidden Temple, There is also a man in the Hidden Temple names Zack that needs you help with this Goat Man known as Baphomet.";
462        set eight_qset,3;
463        goto L_QuestGiven;
464
465N_LostBeeds:
466        mes "^FF0000My lost Beeds^000000";
467        mes "^FF0000-------------^000000";
468        mes "Oh great I smell stupidity...";
469        mes " ";
470        mes "A little girl in Payon wants to talk to you, her name is Flower, What a stupid name,Hahaha.";
471        set eight_qset,4;
472        goto L_QuestGiven;
473
474///////Job list 9///////
475N_JobList9:
476        mes "[Guy]";
477        mes "Ok you have a couple quests that can be done here.";
478        next;
479        menu "Smelly Box",-,"Payon Cave",N_PayonC,"^FF0000Sohee's Everywere!^000000",N_Sohee,"^FF0000Moonlight Flower^000000",N_Moonlight;
480        mes "^FF0000Smelly Box^000000";
481        mes "^FF0000----------^000000";
482        mes "Oh god please get this out of here fast.";
483        mes " ";
484        mes "Oh man smells like someone died in here.Take this to the Magic School in Geffen and hurry,ahh the smell its burning my eye's!!!";
485        getitem 1082,1; //Delivery_Box_
486        set nine_qset,1;
487        goto L_QuestGiven;
488
489N_Sohee:
490        mes "^FF0000Sohee's Everywere!^000000";
491        mes "^FF0000******************^000000" ;
492        mes "Hmmm seem's a man named Jack wants to speak to you in the Archer Guild House.";
493        mes " ";
494        mes "Well what we know about Payon is that a while ago there was a freak fire that burnt down the old school.";
495        next;
496        mes "The strange thing about what happened was that the children inside did not seem to die from the flames.";
497        mes "Speak to the little school girl somewere in Payon.";
498        set nine_qset,2;
499        goto L_QuestGiven;
500
501N_Moonlight:
502        mes "^FF0000Moonlight Flower^000000";
503        mes "^FF0000****************^000000" ;
504        mes "Hmmm seem's a man named Jack wants to speak to you in the Archer Guild House.";
505        mes " ";
506        mes "Well I don't know much about this, it has to do with the deepest reagions of Payon Cave, We don't know much because no one ever seems to make it back alive.";
507        set nine_qset,3;
508        goto L_QuestGiven;
509
510N_PayonC:
511        mes "^FF0000Payon Cave^000000";
512        mes "^FF0000----------^000000" ;
513        mes "Hmmm seem's a man named Jack wants to speak to you in the Archer Guild House.";
514        mes " ";
515        mes "The farther we go into the cave the stranger it gets.";
516        set nine_qset,4;
517        goto L_QuestGiven;
518
519///////Job list 10///////
520N_JobList10:
521        mes "[Guy]";
522        mes "Ok you have a couple quests that can be done here.";
523        next;
524        menu "The Blank Box",-,"^FF0000Eddga^000000",N_Eddga,"^FF0000Phreeoni^000000",N_Phreeoni,"^FF0000Maya^000000",N_Maya;
525
526        mes "^FF0000The Blank Box^000000";
527        mes "^FF0000-------------^000000";
528        mes "Package to Morroc";
529        mes " ";
530        mes "There is nothing writen on this box but a notice to deliver it to a man Kreg.";
531        getitem 1082,1; //Delivery_Box_
532        set ten_qset,1;
533        goto L_QuestGiven;
534
535N_Eddga:
536        mes "^FF0000Eddga^000000";
537        mes "^FF0000*****^000000";
538        mes "Tony the Tiger is on crack and destroying the forest.";
539        mes " ";
540        mes "Talk to a man outside the 'Hidden' Hunter Guild, He needs your help.";
541        set ten_qset,2;
542        goto L_QuestGiven;
543
544N_Phreeoni:
545        mes "^FF0000Phreeoni^000000";
546        mes "^FF0000********^000000";
547        mes "He is big and Pink and you run and hide!";
548        mes " ";
549        mes "This guy just poped into some hole one day, He dosent look that tough but you would be supprised. Talk to a man named Caral outside of Ant Hell.";
550        set ten_qset,3;
551        goto L_QuestGiven;
552
553N_Maya:
554        mes "^FF0000Maya^000000";
555        mes "^FF0000****^000000";
556        mes "Something scary!";
557        mes " ";
558        mes "This half naked freak need an army to take down, now its your job, good luck. Meet a girl named Jeni outside of the back entrance to Ant Hell.";
559        set ten_qset,4;
560        goto L_QuestGiven;
561}
Note: See TracBrowser for help on using the browser.