summaryrefslogtreecommitdiff
path: root/npc/quests/eye_of_hellion.txt
blob: 1db58facb2319bb9a43aadf4b5bdd4f6a62763af (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
//===== eAthena Script =======================================
//= The Eye of Hellion Quest.
//===== By: ==================================================
//= MasterOfMuppets
//===== Current Version: =====================================
//= 1.1
//===== Compatible With: =====================================
//= eAthena SVN 3422+(Requires jA Script System)
//===== Description: =========================================
//= Quest for getting a Nile Rose
//===== Comments: ============================================
//=
//===== Additional Comments: =================================
//= 1.0 First version [MasterOfMuppets]
//= 1.1 a ',' that should be ';' [FlavioJS]
//============================================================

geffen.gat,110,200,3	script	Sage Welshyun	754,2,2,{

	if(HELLIONQ > 25)goto s_Last;
	if(HELLIONQ > 18)goto s_Switches;
	mes "[Welshyun]";
	mes "Hm? Oh, pardon me.";
	mes "I didn't notice you. I was";
	mes "far too occupied thinking";
	mes "deep important thoughts";
	mes "that your puny little mind";
	mes "couldn't possible fathom.";
	close;

s_Last:
	mes "[Welshyun]";
	mes "So, were you able";
	mes "to deliver the tablet";
	mes "and the Hellion's gem to";
	mes "Chilias safely? Ah, and";
	mes "how has my friend been?";
	close;

s_Switches:
	switch(HELLIONQ)
	{

	case 19:
		if(HELLIONQ3)goto s_Thirsty;
		specialeffect 313;
		specialeffect2 313;
		mes "[Welshyun]";
		mes "That...";
		mes "That eerie glow...";
		next;
		mes "[Welshyun]";
		mes "You! Identify yourself";
		mes "and explain how you came";
		mes "about to get those tablet";
		mes "pieces! Now answer me!";
		next;
		mes "[Welshyun]";
		mes "Ah, forgive me. You're";
		mes "helping Chilias, are you?";
		mes "I see. So you must be here";
		mes "to seek my help in finding";
		mes "the final piece, am I correct?";
		next;
		menu "Shut up, I know you have it, so give it!",s_Shut,"Yes, please help me.",-;

		mes "[Welshyun]";
		mes "Ah, yes... I shall help";
		mes "you get the final tablet";
		mes "piece, but first you'll have";
		mes "to do a favor for me.";
		next;
		mes "[Welshyun]";
		mes "My student in the Geffen";
		mes "Tower has not reported back to";
		mes "about his research project,";
		mes "so I would like for you to find";
		mes "him and retrieve the report";
		mes "for me. Not a big deal, right?";
		next;
		mes "[Welshyun]";
		mes "The title of his report";
		mes "should be, \"^7151FFMonster Life";
		mes "in the Geffen Area^000000\", so";
		mes "please remember that.";
		mes "Ah, and my student's";
		mes "name is Enoz.";
		set HELLIONQ,20;
		close;

	s_Shut:
		mes "[Welshyun]";
		mes "Such insolence!";
		mes "Huh. I suppose Chilias";
		mes "may have misjudged you";
		mes "when he entrusted you with";
		mes "this important mission. Huh.";
		mes "A reevaluation is in order...";
		set HELLIONQ3,1;
		close;

	s_Thirsty:
		if(countitem(504))goto s_Thirsty2;
		mes "[Welshyun]";
		mes "^111111*Ahem*^000000 Oh dear me...";
		mes "I'm unfathombly thirsty...";
		mes "There's no way I can do any";
		mes "serious thinking with such";
		mes "a dry, parched throat...";
		close;

	s_Thirsty2:
		mes "[Welshyun]";
		mes "Oh, a White Potion?";
		mes "Yes, may I please have";
		mes "one? Ahh, most refreshing~";
		mes "You may not be such a bad";
		mes "person after all! Now";
		mes "Shall I help you find";
		mes "that tablet piece?";
		next;
		mes "[Welshyun]";
		mes "Of course, in the";
		mes "interest of mankind,";
		mes "I shall help you. But first,";
		mes "I have a favor to ask of you.";
		next;
		mes "[Welshyun]";
		mes "My student in the Geffen";
		mes "Tower has not reported back to";
		mes "about his research project,";
		mes "so I would like for you to find";
		mes "him and retrieve the report";
		mes "for me. Not a big deal, right?";
		next;
		mes "[Welshyun]";
		mes "The title of his report";
		mes "should be, \"^7151FFMonster Life";
		mes "in the Geffen Area^000000\", so";
		mes "please remember that.";
		mes "Ah, and my student's";
		mes "name is Enoz.";
		delitem 504,1; //White potion
		set HELLIONQ3,0;
		set HELLIONQ,20;
		close;
	break;

	case 20:
		mes "[Welshyun]";
		mes "Please bring me the";
		mes "report entitled, \"^7151FFMonster Life";
		mes "in the Geffen Area^000000\",";
		mes "from my student Enoz in";
		mes "the Geffen Tower. Thank";
		mes "you, I appreciate your help.";
		close;
	break;

	case 21:
		mes "[Welshyun]";
		mes "Hm? What's that strange";
		mes "expression on your face?";
		mes "Prank? Oh please. Such";
		mes "chicanery is beneath me...";
		mes "But even if I did play a";
		mes "joke, believe me. It";
		mes "builds character.";
		next;
		mes "[Welshyun]";
		mes "First and foremost,";
		mes "I want yo test you to see";
		mes "if you are worthy of this";
		mes "tablet piece. I want to see";
		mes "for myself if you are a person";
		mes "of honor. Someone of character.";
		next;
		mes "[Welshyun]";
		mes "Oh yes, I accidentally";
		mes "took this Master Science";
		mes "Reference Book from Enoz,";
		mes "so would you please return it";
		mes "to him for me? Oh, and please";
		mes "bring back 1 Blue Gemstone.";
		next;
		mes "^3151FFYou received the";
		mes "incredibly heavy tome,";
		mes "the the Master Science";
		mes "Reference Book.";
		set HELLIONQ,22;
		close;
	break;

	case 22:
		mes "[Welshyun]";
		mes "Please deliver the Master";
		mes "Science Reference Book to";
		mes "Enoz, and come back to me";
		mes "with 1 Blue Gemstone.";
		close;
	break;

	case 23:
		if(!countitem(717))goto s_NoGem;
		mes "[Welshyun]";
		mes "Thank you. You've";
		mes "brought the book to Enoz";
		mes "and delivered a Gemstone";
		mes "to me as I've asked. Now,";
		mes "there is one final test...";
		next;
		mes "[Welshyun]";
		mes "Answer this question.";
		mes "Where is the abode of the";
		mes "departed souls with a shining";
		mes "silver roof that is mentioned";
		mes "in the third part of the ballad";
		mes "of Grimnir? Well, adventurer?";
		next;
		input @str$;
		if(@str$ != "Valaskjalf")goto s_WrongStr;
		mes "[Welshyun]";
		mes "Ah, well met, well met.";
		mes "You are as well learned as";
		mes "you are brave. As promised,";
		mes "you may have this piece of";
		mes "the tablet, which I've";
		mes "already found. The clues";
		mes "were too simple...";
		set HELLIONQ,24;
		delitem 717,1; //Blue gemstone
		getitem 7336,1; //Geffen Tablet
		next;
		mes "[Welshyun]";
		mes "Please send my regards";
		mes "to my dear friend, Chilias,";
		mes "who has dedicated his life";
		mes "to sealing the evil within";
		mes "the Hellion's gem.";
		close;

	s_WrongStr:
		mes "[Welshyun]";
		mes "Bwahahaah! Only";
		mes " a superior mind could";
		mes "know the answer to such";
		mes "a question! Go forth and";
		mes "learn the answer, else";
		mes "I cannot help you, adventurer~";
		close;

	s_NoGem:
		mes "[Welshyun]";
		mes "Ah, I've heard that";
		mes "Enoz received the Master";
		mes "Science Reference Book";
		mes "from you. But did you remember";
		mes "to bring me a Blue Gemstone?";
		close;
	break;

	case 24:
		mes "[Welshyun]";
		mes "Hm. You should visit";
		mes "Chilias and determine";
		mes "your next course of action,";
		mes "now that you have all four";
		mes "of the pieces of the tablet.";
		close;
	break;

	case 25:
		mes "[Welshyun]";
		mes "Hm? Did you need";
		mes "me to combine all four";
		mes "pieces of the tabled and";
		mes "make it whole again? Oh.";
		mes "All this time I thought you";
		mes "knew how to do it. Alright.";
		next;
		mes "[Welshyun]";
		mes "As a matter of fact,";
		mes "I was planning on using";
		mes "the Blue Gemstone you gave";
		mes "me to do this. But since you";
		mes "never really asked... In any";
		mes "case, let me concentrate.";
		next;
		specialeffect 54;
		mes "[Welshyun]";
		mes "Shadows remembered by time.";
		mes "Help me retrieve the forgotten";
		mes "stories that have been";
		mes "scattered in the wind.";
		mes "Right here. Right now.";
		next;
		specialeffect 72;
		mes "[Welshyun]";
		mes "...";
		mes "Okay...";
		mes "That was tough.";
		next;
		mes "[Welshyun]";
		mes "Here's the";
		mes "complete tablet.";
		mes "Please bring this";
		mes "safely back to Chilias.";
		getitem 7332,1; //Complete Tablet
		delitem 7333,1; //Prontera Tablet
		delitem 7334,1; //Payon Tablet
		delitem 7335,1; //Morroc Tablet
		delitem 7336,1; //Geffen Tablet
		set HELLIONQ,26;
		next;
		mes "[Welshyun]";
		mes "Wait, take a look!";
		mes "There's a map on the back";
		mes "of the tablet. Although the gem";
		mes "is already embedded within the";
		mes "tablet, who knows where this";
		mes "map may lead? Perhaps";
		mes "Hellion Revenant?";
		next;
		mes "[Welshyun]";
		mes "I don't know if Chilias";
		mes "told you, but the name of";
		mes "the monster that guards and";
		mes "follows this gem is Hellion";
		mes "Revenant. But why mark its";
		mes "location on this tablet?";
		next;
		mes "[Welshyun]";
		mes "Well, it will be dangerous, but";
		mes "I'm sure that you're strong enough";
		mes "to confront this monster. I";
		mes "believe it was the wish of this";
		mes "tablet's creator for someone";
		mes "to defeat the Hellion Revenant.";
		next;
		menu "Alright I'll do it!",s_DoIt,"I better get this tablet to Chilias...",-;

		mes "[Welshyun]";
		mes "Yes, that's true.";
		mes "Chilias has been waiting";
		mes "his whole life to seal this";
		mes "gem. Plus, who knows what";
		mes "may happen while it is in";
		mes "your possession?";
		set HELLIONQ,26;
		close;

	s_DoIt:
		mes "[Welshyun]";
		mes "Well, I'm almost certain";
		mes "this map will lead you to";
		mes "Hellion Revenant. Let me";
		mes "warp you to the location";
		mes "marked on the tablet's map...";
		close2;
		warp "gef_fild09.gat",368,88;
		set HELLIONQ,26;
		end;
	break;

	}

OnTouch:
	if(HELLIONQ != 19)end;
	specialeffect 313;
	specialeffect2 313;
	mes "^3151FFThe piece of tablet";
	mes "that you have is shining";
	mes "with light as if in response";
	mes "to something in the area.";
	close;

}

prontera.gat,269,326,3	script	Clanux Heffron	50,{

	if(HELLIONQ > 7)goto s_Last;
	if(HELLIONQ)goto s_Switches;
	mes "[Clanux Heffron]";
	mes "What's wrong with";
	mes "this map?! I can't";
	mes "find a blasted thing";
	mes "on it! How can finding";
	mes "something be so hard?";
	close;

s_Last:
	mes "[Clanux Heffron]";
	mes "Oh hey, it's you.";
	mes "Listen I got this number";
	mes "pad to pop out of that old";
	mes "machine in the Tool Shop,";
	mes "I still don't know what the";
	mes "password for it might be.";
	next;
	mes "[Clanux Heffron]";
	mes "If I couldn't figure";
	mes "it out, and I understand";
	mes "if you couldn't figure this";
	mes "out, then this puzzle must";
	mes "be freakin' impossible!";
	close;

s_Switches:
	switch(HELLIONQ)
	{

	case 1:
		if(HELLIONQ2)goto s_Bother;
		mes "[" + strcharinfo(0) + "]";
		mes "Excuse me, but are";
		mes "you Clanux Heffron?";
		next;
		mes "[Clanux Heffron]";
		mes "Why, who are you";
		mes "and what the heck";
		mes "do you want? Oh...";
		mes "Sent by Chilias, eh?";
		mes "What does he want?";
		next;
		menu "He wants me to help you",s_You,"He wants you to help me.",-;

		mes "[Clanux Heffron]";
		mes "Help you...? What, with";
		mes "clues to the location of";
		mes "the Hellion's gem? Screw";
		mes "that, pal! Why should I help";
		mes "you if we're gonna compete";
		mes "for the same prize?!";
		set HELLIONQ2,1;
		close;

	s_Bother:
		mes "[Clanux Heffron]";
		mes "Hey, why do you keep";
		mes "botherin' me?! Go and";
		mes "find your own clues for the";
		mes "Hellion's gem on your own,";
		mes "jerkface! Now getouttahere!";
		next;
		menu "W-what! Let's work together!",s_Work,"Fine. I don't need your help!",-;

		mes "[" + strcharinfo(0) + "]";
		mes "Fine.";
		mes "I don't need";
		mes "your help!";
		next;
		mes "[Clanux Heffron]";
		mes "Yeah right!";
		mes "You'll be back!";
		mes "...They always";
		mes "come back.";
		close;

	s_Work:
		mes "[Clanux Heffron]";
		mes "Work together, eh? You";
		mes "know, normally I'd tell you";
		mes "to make like a moonwalker";
		mes "and just beat it, but I gotta";
		mes "admit that I ain't doin' so";
		mes "good on my own on this...";
		next;
		mes "[Clanux Heffron]";
		mes "Alright, fine.";
		mes "First, look through the";
		mes "old Swordman Training";
		mes "Grounds here in Prontera.";
		mes "There might be some clues";
		mes "left over there for you to";
		mes "find.";
		set HELLIONQ2,0;
		set HELLIONQ,2;
		close;

	s_You:
		mes "[Clanux Heffron]";
		mes "So he sent me an";
		mes "assistant, huh? Well...";
		mes "Seeing as he gave me this";
		mes "clue and I've taken so long";
		mes "and still don't have anything";
		mes "to show for it, I don't blame him.";
		next;
		mes "[Clanux Heffron]";
		mes "Well, if he sent you to";
		mes "help me out, I guess I can";
		mes "tell you everything. For the";
		mes "clues he had me look for,";
		mes "I've only found two so far.";
		mes "But I can't figure them out...";
		next;
		mes "[Clanux Heffron]";
		mes "Let's see, there's this";
		mes "broken sword and this";
		mes "strange lookin' cogwheel.";
		mes "What do these clues mean?!";
		mes "Did the old man give you";
		mes "any hints to help me out?";
		next;
		menu "Where did you find these?",-,"No I'm sorry.",s_Sorry;
		//Custom dialog
		mes "[Clanux Heffron]";
		mes "I found them next to a";
		mes "broken training dummy";
		mes "in the old Swordman";
		mes "Training Grounds here";
		mes "in Prontera.";
		next;
		mes "[Clanux Heffron]";
		mes "Why don't you go search";
		mes "the old Swordman Training";
		mes "Grounds for clues? I might";
		mes "have missed something...";
		mes "Not that I think so, but";
		mes "just in case!";
		set HELLIONQ,2;
		close;

s_Sorry:
		mes "[Clanux Heffron]";
		mes "Wha--? Then why are";
		mes "you even here to help";
		mes "me then? Huh. That old";
		mes "coot must not trust me";
		mes "enough, but I can't exactly";
		mes "blame him. Alright then...";
		next;
		mes "[Clanux Heffron]";
		mes "If you're gonna help me,";
		mes "go search the old Swordman";
		mes "Training Grounds over here in";
		mes "Prontera. I doubt it, but there's";
		mes "a chance I mighta missed";
		mes "something there. Get to it!";
		set HELLIONQ,2;
		close;
	break;

	case 2:
		mes "[Clanux Heffron]";
		mes "Look pal, I found this broken";
		mes "sword, a bonafide clue if I";
		mes "ever saw one, in the old";
		mes "Swordman Training Grounds in";
		mes "Prontera. You should be able to";
		mes "find something else there, maybe.";
		close;
	break;

	case 3:
		mes "[Clanux Heffron]";
		mes "Hey, you're done";
		mes "searching? Were you";
		mes "able to find anything?";
		next;
		menu "Nothing...",s_Nothing,"In fact, I found this.",-;

		mes "[Clanux Heffron]";
		mes "Wha--? I had no idea";
		mes "that sort of thing could";
		mes "be hidden in that training";
		mes "ground. I missed it. Oh,";
		mes "so the Veggie Lady gave you a";
		mes "password and all?";
		next;
		mes "[Clanux Heffron]";
		mes "Huh, I can't make heads";
		mes "or tails of that password.";
		mes "I guess I have no choice but";
		mes "to give you this, the";
		mes "cogwheel clue I found";
		mes "from the Tool Shop.";
		next;
		mes "[Clanux Heffron]";
		mes "I mean, you've been lucky";
		mes "enough till now, so you'll";
		mes "probably be able to stumble";
		mes "upon the answer behind this";
		mes "weird, weird riddle. But you";
		mes "gotta tell me the answer too!";
		next;
		mes "[Clanux Heffron]";
		mes "Alright, now take your";
		mes "cogwheel and get outta";
		mes "here. The sooner you get";
		mes "that clue, the sooner I'll";
		mes "get that Hellion's gem.";
		set HELLIONQ,4;
		getitem 7093,1; //Cogwheel
		close;

	s_Nothing:
		mes "[" + strcharinfo(0) + "]";
		mes "^111111(This guy's a real punk!";
		mes "I better not share any new";
		mes "information I've found, just";
		mes "in case he doesn't already";
		mes "know about it.)";
		next;
		mes "[" + strcharinfo(0) + "]";
		mes "I... I wasn't able to";
		mes "find anything that looked";
		mes "like a clue. I'm sorry, but";
		mes "I let you down big time...";
		next;
		mes "[Clanux Heffron]";
		mes "Aw nuts! Alright, if you";
		mes "go back to the old man, let";
		mes "him know that I found a broken";
		mes "sword from the old Swordman";
		mes "Training Grounds and this";
		mes "cogwheel from the Tool Shop.";
		next;
		mes "[Clanux Heffron]";
		mes "The clues I've found so";
		mes "far don't make any sense!";
		mes "So if you can, convince him to";
		mes "drop me a couple more hints.";
		mes "And give this to the old guy";
		mes "to prove I found it, will you?";
		next;
		mes "[Clanux Heffron]";
		mes "That's all I know.";
		mes "At this point you're";
		mes "probably better off";
		mes "searching for these";
		mes "clues on your own...";
		getitem 7093,1; //Cogwheel
		set HELLIONQ,4;
		close;
	break;

	case 4:
	case 5:
	case 6:
		mes "[Clanux Heffron]";
		mes "Hey... Didn't I tell";
		mes "you to check out the";
		mes "Tool Shop in case there";
		mes "was anything I missed?";
		mes "Now go! That's an order!";
		close;
	break;

	case 7:
		mes "[Clanux Heffron]";
		mes "Hey, so you have";
		mes "anything new to report?";
		mes "Oh, and did you learn";
		mes "anything from that weird";
		mes "maching in the Tool Shop?";
		next;
		menu "Tell him just a little bit.",s_Bit,"Don't tell him",-;

	s_Bit:
		mes "[" + strcharinfo(0) + "]";
		mes "Well, I put that cogwheel";
		mes "into that weird machine in";
		mes "the Tool Shop and some kind";
		mes "of number pad came out. Then...";
		next;
		mes "[" + strcharinfo(0) + "]";
		mes "^111111(Wait, I can't trust this";
		mes "guy!)^000000 I put in every single";
		mes "password that I could think";
		mes "of, but nothing happened!";
		mes "I think I'm stuck...";
		next;
		mes "[Clanux Heffron]";
		mes "Oh yeah? Hah! Well, now";
		mes "that the easy part is";
		mes "done, I'll just figure out";
		mes "that secret password";
		mes "myself! Hahahah! That Hellion's";
		mes "gem is as good as mine!";
		set HELLIONQ,8;
		close;
	break;

	}

}

prontera.gat,224,84,1	script	Training Dummy#HellionDummy	111,{

	if(HELLIONQ == 2)goto s_Hellion;
	mes "^3151FFIt's a training dummy";
	mes "that was used to hone the";
	mes "skills of new Swordmen...";
	mes "But the Swordman Training";
	mes "Grounds have moved to Izlude.";
	close;

s_Hellion:
	mes "^3151FFIt's a training dummy";
	mes "with a gash in its body";
	mes "that looks like it was made";
	mes "by the thrust of a sharp sword.";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "Didn't Clanux mention that he";
	mes "found a broken sword around";
	mes "here? Maybe this was exactly";
	mes "where he found it. Let's see...";
	next;
	menu "Inspect the dummy's gash",-;

	mes "^3151FFInside of the dummy's body is";
	mes "a steel bearing with a roughly";
	mes "etched message that reads:";
	mes "^7151FF\"Veggie Lady N9 W3 BINGO.\"";
	next;

	mes "[" + strcharinfo(0) + "]";
	mes "What the heck does this";
	mes "even mean? A Veggie Lady?";
	mes "Does Clanux know anything";
	mes "at all about this clue...?";
	set HELLIONQ,3;
	close;

}

prt_in.gat,128,79,0	script	Unknown Machine#HellionMchn	111,{
	if(HELLIONQ == 6)goto s_Input2;
	if(HELLIONQ == 5)goto s_Input;
	mes "^3151FFIt's some sort of";
	mes "strange looking machine";
	mes "with a mysterious purpose.";
	close;

s_Input:
	mes "^3151FFIt's a weird looking";
	mes "machine that looks like";
	mes "it hasn't been used in a";
	mes "while. It looks like the";
	mes "cogwheel that you have";
	mes "would fit perfectly in it...";
	next;
	menu "Insert Cogwheel",s_Insert,"Ignore it.",-;

	mes "[" + strcharinfo(0) + "]";
	mes "Eh...";
	mes "Forget it.";
	close;

s_Insert:
	if(!countitem(7093))goto s_NoCog;
	mes "[" + strcharinfo(0) + "]";
	mes "I just know this";
	mes "cogwheel will fit";
	mes "into this machine!";
	mes "What I don't know is";
	mes "what will happen once";
	mes "this machine works...";
	next;
	mes "^3151FF*Click...!*";
	mes "Once the cogwheel is";
	mes "fit into the machine and";
	mes "turned, the device hums";
	mes "to life and a panel opens,";
	mes "revealing a numeric keypad.";
	delitem 7093,1; //Cogwheel
	set HELLIONQ,6;
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "I guess that I've got";
	mes "to input some kind of";
	mes "numeric password...";
	mes "Ah, right, the numbers";
	mes "that Veggie Lady gave me!";
	next;
	input @temp;
	if(@temp != 16754213)goto s_FailInp;
s_CorrectInput:
	mes "^3151FFThe machine responds to";
	mes "the password with a pleasant";
	mes "chime, confirming that you've";
	mes "input the correct numbers.";
	mes "The keypad slides open to";
	mes "reveal a piece of a tablet.";
	getitem 7333,1; //Prontera Tablet
	set HELLIONQ,7;
	next;
	mes "^3151FFThe message engraved on";
	mes "this table reads: \"This is for";
	mes "Christopher, my dear friend who";
	mes "I met in Prontera. To the one";
	mes "who finds this, please seek";
	mes "out the next piece of this tablet";
	mes "in the city of thickest forest.\"";
	next;
	mes "^3151FFThe message is signed";
	mes "by someone named Tyus.";
	mes "It would be best to bring";
	mes "this back to Sir Chilia'Tyus";
	mes "and confirm that this was";
	mes "made by his grandfater...";
	close;

s_Input2:
	mes "[" + strcharinfo(0) + "]";
	mes "Okay, let me see";
	mes "if I can enter the";
	mes "right number this time...";
	next;
	input @temp;
	if(@temp == 16754213)goto s_CorrectInput;

s_FailInp:
	mes "^3151FFThe machine responds to";
	mes "the passwords with an abrupt,";
	mes "screeching beep and the entire";
	mes "machine shuts down. You'll";
	mes "have to try entering the";
	mes "password again.";
	close;

s_NoCog:
	mes "[" + strcharinfo(0) + "]";
	mes "Hmm, I can't find the";
	mes "cogwheel, now where did";
	mes "I put it?";
	close;

}

prontera.gat,45,67,1	script	#HellionActivator	139,0,0,{
OnTouch:
	if(HELLIONQ != 4)end;
	mes "[" + strcharinfo(0) + "]";
	mes "Well, according to the";
	mes "message in that old training";
	mes "dummy, this is where I'm";
	mes "supposed to go. Nine steps";
	mes "north, 3 steps west. And now...";
	mes "Veggie Lady. Okay, okay...";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "Huh. That's creepy.";
	mes "There's one right there";
	mes "staring at me. But after";
	mes "the words \"Veggie Lady\"";
	mes "all the message says is, um,";
	mes "what was that last word again?";
	next;
	input @tempstr$;
	if(@tempstr$ != "BINGO")goto s_Failstr;
	mes "[" + strcharinfo(0) + "]";
	mes "Of course!";
	mes "\"BINGO!\" But";
	mes "I don't see a hall";
	mes "full of old people";
	mes "around here, I--";
	next;
	mes "[Veggie Lady]";
	mes "Finall, you say it.";
	mes "Yessh, I thought I was";
	mes "going to wait forever for";
	mes "somebody to say that";
	mes "password. Okay, here's";
	mes "the code number you want...";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "C-code number?";
	mes "Wait, wh-what...?";
	next;
	mes "[Veggie Lady]";
	mes "Awww...I don't know!";
	mes "I'm only gonna say it";
	mes "now: ^7151FF16754213^000000. One";
	mes "more time, in case you";
	mes "didn't get it: ^7151FF16754213^000000.";
	mes "Don't forget it, adventurer.";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "Wait... What does";
	mes "this all mean? Won't";
	mes "you tell me more?";
	next;
	mes "[Veggie Lady]";
	mes "No. I've been given";
	mes "explicit instructions";
	mes "to not tell you more.";
	mes "In face, I hate talking.";
	mes "That's why I sell vegetables.";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "Holy cow...";
	mes "This is all";
	mes "really cloak and";
	mes "dagger type stuff!"; 
	set HELLIONQ,5;
	close;

s_Failstr:
	mes "[" + strcharinfo(0) + "]";
	mes @tempstr$;
	mes "Hmmm. No, no that couldn't";
	mes "be it. What in the world was";
	mes "that word and why can't I";
	mes "remember it when I seemingly";
	mes "need it most?";
	close;

}

payon.gat,182,132,3	script	Grout'he Tuccok	48,{

	if(HELLIONQ > 17)goto s_Final;
	if(HELLIONQ > 8)goto s_Switches;
	mes "[Grout'he]";
	mes "Hey...";
	mes "Hey you!";
	mes "What are you";
	mes "looking at?!";
	mes "Get outta my";
	mes "face, ya jerkward.";
	close;

s_Final:
	mes "[Grout'he]";
	mes "Hey, this is great!";
	mes "you actually found the";
	mes "next piece of the tablet!";
	mes "You better take this back";
	mes "to Chilias'Tyus right now~";
	next;
	mes "[Grout'he]";
	mes "Oh. And um, thanks";
	mes "for being willing to pay";
	mes "me in cash for all those";
	mes "little bitty clues. I won't";
	mes "forget your help, pal~";
	close;

s_Switches:
	switch(HELLIONQ)
	{

	case 9:
		mes "[Grout'he]";
		mes "What...?";
		mes "You got something";
		mes "to tell me or are you";
		mes "just bein' a rude prick";
		mes "and starting at me like";
		mes "this is your turf?!";
		next;
		mes "[" + strcharinfo(0) + "]";
		mes "I'm sorry, but well...";
		mes "Chilias'Tyus told me that";
		mes "you might know something";
		mes "about a piece of a table--";
		next;
		mes "[Grout'he]";
		mes "What? Oh, so Chilias'Tyus";
		mes "is lookin for the gem too eh?";
		mes "Ooh, that's right. He wants to";
		mes "seal its evil or something.";
		mes "Yeah, yeah. That's a good";
		mes "cause. Real noble and all...";
		next;
		mes "[Grout'he]";
		mes "I'll tell you what. The only reason";
		mes "I want that gem is to sell it";
		mes "so I can pay off ally my debts.";
		mes "But if I sell you the clues I found,";
		mes "I'll get the zeny I need and the";
		mes "gem will be in good hands too.";
		next;
		mes "[Grout'he]";
		mes "So what do you say?";
		mes "It's not a bad deal if";
		mes "you think about it and";
		mes "we might as well kill";
		mes "two birds with one stone...";
		next;
		menu "Alright, I'll buy your clues.",s_Buy,"Why the hell should I pay you?!",-;

		mes "[Grout'he]";
		mes "Why the hell should you";
		mes "pay me?! Hey, aren't you";
		mes "looking for the gem to help";
		mes "the world? Well, I happen to";
		mes "be a little part of this world,";
		mes "so why don't you help me first?";
		next;
		mes "[Grout'he]";
		mes "Man, you might not";
		mes "know it, but the money";
		mes "you give me will save";
		mes "a life. My own! Dude, how";
		mes "can you be so insensitive?";
		close;

	s_Buy:
		mes "[Grout'he]";
		mes "Oh man, thanks a lot.";
		mes "Alright, all I'm asking";
		mes "for is 10,000 zeny. You get";
		mes "my clues and I'll let you know";
		mes "where I found 'em, in case";
		mes "you can find something new.";
		next;
		if(Zeny < 10000)goto s_NoZeny;
		set Zeny,Zeny-10000;
		mes "[Grout'he]";
		mes "There you go!";
		mes "Thanks for the cash~";
		mes "(Know I won't have to";
		mes "get my knees all broken!)";
		mes "Oh, and let me makr your";
		mes "Mini-Map for you real quick...";
		next;
		mes "[Grout'he]";
		mes "You see this here?";
		mes "It's where I found the";
		mes "Skirt of Virgin I'm about";
		mes "to give you. So check that";
		mes "spot out and see if you find";
		mes "anything new and interesting.";
		viewpoint 1,101,191,10,0xFF00FF;
		next;
		mes "[Grout'he]";
		mes "Here you go, pal...";
		mes "A Stone Heart, Green Herb,";
		mes "some Grape Juice and one";
		mes "clean and pure Skirt of Virgin.";
		mes "If you got any more questions,";
		mes "I guess you can ask me later~";
		getitem 953,1;
		getitem 511,1;
		getitem 533,1;
		getitem 1049,1;
		set HELLIONQ,10;
		close;

	s_NoZeny:
		mes "[Grout'he]";
		mes "Oh hey...";
		mes "You don't got the zeny.";
		mes "Sorry pal, but I've really got";
		mes "to pay my debts somehow.";
		mes "I don't know if I'm allowed";
		mes "to reall talk about it...";
		mes "^111111*Sob*";
		close;
	break;

	case 10:
		mes "[Grout'he]";
		mes "You see this here?";
		mes "It's where I found the";
		mes "Skirt of Virgin I'm about";
		mes "to give you. So check that";
		mes "spot out and see if you find";
		mes "anything new and interesting.";
		viewpoint 1,101,191,10,0xFF00FF;
		close;
	break;

	case 11:
		mes "[Grout'he]";
		mes "You've been to the";
		mes "first location? Good.";
		mes "Okay, now look over here.";
		mes "Check your Mini-Map to";
		mes "see where I found that";
		mes "Stone Heart, got it?";
		viewpoint 1,82,109,11,0xFF00FF;
		close;
	break;

	case 12:
		mes "[Grout'he]";
		mes "Alright, here's where";
		mes "I found that Green Herb.";
		mes "You know you can use that";
		mes "to counter poison, right?";
		mes "Check that place to see if";
		mes "there's anything I missed.";
		viewpoint 1,239,56,12,0xFF00FF;
		close;
	break;

	case 13:
		mes "[Grout'he]";
		mes "Okay, here's the last";
		mes "place you should double";
		mes "check, the place where";
		mes "I nabbed that Grape";
		mes "Juice. Good luck~";
		viewpoint 1,240,161,13,0xFF00FF;
		close;
	break;

	case 14:
		mes "[Grout'he]";
		mes "Oh, you need some help";
		mes "with figuring out the clues?";
		mes "Heh. Alright, let's see.";
		mes "You want me to help";
		mes "you in making sense of";
		mes "this weird riddle?";
		next;
		menu "Yes, please!",s_YesP,"No thanks~",-;

		mes "[Grout'he]";
		mes "Oh yeah?";
		mes "Well listen, I dunno,";
		mes "but this looks to be one";
		mes "of those situations where";
		mes "two heads are better than one.";
		mes "I think we oughta team up~";
		close;

	s_YesP:
		mes "[Grout'he]";
		mes "Alright now. All those";
		mes "messages said stuff about";
		mes "one sized clothing, dried";
		mes "fish and green herbs, wine...";
		mes "Huh. It doesn't make sense.";
		next;
		mes "[" + strcharinfo(0) + "]";
		mes "What...?";
		mes "I could have";
		mes "told you that!";
		next;
		mes "[Grout'he]";
		mes "Wait, wait.";
		mes "Let's mark all the";
		mes "clue locations again";
		mes "on your Mini-Map.";
		mes "Okay, we've got four";
		mes "dots around Payon.";
		viewpoint 1,101,191,10,0xFF00FF;
		viewpoint 1,82,109,11,0xFF00FF;
		viewpoint 1,239,56,12,0xFF00FF;
		viewpoint 1,240,161,13,0xFF00FF;
		next;
		mes "[Grout'he]";
		mes "Alright, now if";
		mes "I connect and interesect";
		mes "all the lines, there's";
		mes "a point in the middle.";
		mes "Why don't you check";
		mes "this middle point, eh?";
		viewpoint 1,159,130,14,0xFF00FF;		
		next;
		mes "[Grout'he]";
		mes "Now, this location";
		mes "is a house, and I know";
		mes "it's pretty random, but";
		mes "it's all we got. Heck,";
		mes "all these clues make";
		mes "less sense than this!";
		set HELLIONQ,15;
		close;
	break;

	case 15:
		mes "[Grout'he]";
		mes "Hey, how's it goin'";
		mes "looking for that one";
		mes "piece of the tablet?";
		mes "It's a lot of trouble,";
		mes "but I guess that's the";
		mes "case with all treasures.";
		viewpoint 1,159,130,14,0xFF00FF;
		close;
	break;

	case 16:
		mes "[Grout'he]";
		mes "Oh, so all of those";
		mes "items came in handy?";
		mes "I don't believe it! So";
		mes "this puzzle actually";
		mes "makes sense?! So";
		mes "what'd the slab say?";
		next;
		mes "[Grout'he]";
		mes "\"Compassionate one?\"";
		mes "Oh hey, there's a giant";
		mes "stone statue over in the";
		mes "Archer Village that fits";
		mes "the description perfectly!";
		mes "You should check it out.";
		set HELLIONQ,17;
		close;
	break;

	case 17:
		mes "[Grout'he]";
		mes "Hey, you really ought";
		mes "to check out the huge";
		mes "stone statue over in the";
		mes "Archer Village. Now that";
		mes "I think about it, it's the";
		mes "perfect hiding place!";
		close;
	break;

	}

}

payon.gat,101,191,1	script	#HellionStepAct	139,1,1,{
	if(HELLIONQ != 10)end;
	mes "[" + strcharinfo(0) + "]";
	mes "Well, this is where";
	mes "Grout'he told me to look.";
	mes "Ooh, there's something";
	mes "written on the ceiling. Um,";
	mes "let's see... \"This garment";
	mes "is one size fits all.\"";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "That's it...?";
	mes "Hopefully this will";
	mes "make more sense once";
	mes "I find more clues. I hope.";
	set HELLIONQ,11;
	close;

}

payon.gat,82,109,1	script	Pile of Stones#HellionStones	111,{
	if(HELLIONQ != 11)end;
	mes "[" + strcharinfo(0) + "]";
	mes "Well, this is the place";
	mes "that Grout'he told me about.";
	mes "Let's see, there's an engraving";
	mes "here that says, \"I used to";
	mes "pray for peaceful days";
	mes "here.\" Okay.";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "Man...";
	mes "This better not be";
	mes "one of those puzzles";
	mes "that looks easy once";
	mes "I get the answer. Well,";
	mes "if I ever get it, that is.";
	set HELLIONQ,12;
	close;

}

payon.gat,239,56,1	script	Dried Fish#HellionFish	111,{
	if(HELLIONQ != 12)end;
	mes "[" + strcharinfo(0) + "]";
	mes "So... Dried fish all";
	mes "around me. This is getting";
	mes "to be nonsense. Let's see,";
	mes "this message says, \"Green";
	mes "Herbs are very useful for";
	mes "getting rid of fish smells.\"";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "I got it...!";
	mes "Whoever made up";
	mes "these clues must be";
	mes "some sort of crazy man!";
	mes "It's the only explanation!";
	set HELLIONQ,13;
	close;

}

payon.gat,240,161,1	script	Vat#HellionVat	111,{
	if(HELLIONQ != 13)end;
	mes "[" + strcharinfo(0) + "]";
	mes "Alright, the last";
	mes "place I have to check.";
	mes "It's a big old vat with a";
	mes "message here too. No";
	mes "Let me see, there should";
	mes "be a message here too. Ah--!";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "This says, \"What will it be?";
	mes "Wine or Grape Juice? Oh,";
	mes "but I much prefer wine.\" Okay,";
	mes "what does this have to do with";
	mes "that Hellion's gem? Weird...";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "Am I missing something?";
	mes "I think I really need help in";
	mes "figuring this out. Hmm...";
	set HELLIONQ,14;
	close;

}

payon.gat,159,130,1	script	Wooden Floor#HellionFloor	111,{
	if(HELLIONQ > 15)goto s_Slab;
	if(HELLIONQ != 15)end;
	mes "[" + strcharinfo(0) + "]";
	mes "Hey, the floor around";
	mes "here doesn't seem very";
	mes "solid. Maybe there's";
	mes "something underneath?";
	next;
	menu "Just check the floor.",-,"Dig through the dust.",s_Dig;

	mes "^3151FFYou examine the floor,";
	mes "but are unable to find";
	mes "anything that resembles";
	mes "a clue to the location";
	mes "of the Hellion's gem";
	mes "or a tablet piece.";
	close;

s_Dig:
	mes "[" + strcharinfo(0) + "]";
	mes "Oh man, there's";
	mes "so much dust! What";
	mes "can I do about all of";
	mes "this nasty dirt in the air?";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "Well, there are all these";
	mes "clues Gout'he found. I sucks";
	mes "but I'll use this Grape Juice";
	mes "to sort of keep this dust from";
	mes "kicking up. And if I put my";
	mes "morals on hold, I'll cover";
	mes "my face...";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "...With this Skirt of Virgin.";
	mes "Oh, and I can use this Stone";
	mes "Heart to prop any floor boards";
	mes "I tilt while I look undernearth";
	mes "this floor. Oh hey! I found it!";
	mes "It's... It's another clue!";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "Wait, wait...";
	mes "I can't read the";
	mes "engraving on this";
	mes "stone slab, it's way";
	mes "too old. Let's see...";
	next;
	mes "^3151FFYou cover the surface";
	mes "of the slab and begin";
	mes "to rub a Green Herb over";
	mes "it. Fortunately, the juice from";
	mes "the Green Herb makes the";
	mes "engraving appear more clearly.";
	next;
	mes "[Stone Engraving]";
	mes "^7151FF\"This has been entrusted to";
	mes "the care of the compassionate";
	mes "one so that my friends may";
	mes "find peace. To he who finds";
	mes "this, remember that avarice";
	mes "knows no bounds. --Tyus.\"";
	set HELLIONQ,16;
	close;

s_Slab:
	mes "[Stone Engraving]";
	mes "^7151FF\"This has been entrusted to";
	mes "the care of the compassionate";
	mes "one so that my friends may";
	mes "find peace. To he who finds";
	mes "this, remember that avarice";
	mes "knows no bounds. --Tyus.\"";
	close;

}

pay_arche.gat,141,29,1	script	Buddha Statue#HellionStat	111,3,3,{
	if(HELLIONQ != 17)end;
	mes "[" + strcharinfo(0) + "]";
	mes "Hey, there's a huge";
	mes "stone statue. This";
	mes "must be what Gout'he";
	mes "was telling me about.";
	next;
	mes "[Echoing Voice]";
	mes "^7151FFYou must...";
	mes "You must be...";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "What the--?";
	mes "There's a voice";
	mes "inside my head!";
	mes "and it's not even mine!";
	next;
	mes "[Echoing Voice]";
	mes "You who have come";
	mes "for the Tablet Piece,";
	mes "I shall judge whether";
	mes "or not you are worthy.";
	mes "Answer this one question.";
	next;
	mes "[Echoing Voice]";
	mes "You are in a situation";
	mes "in which you will die,";
	mes "but if you cause the death";
	mes "of another person, you will";
	mes "surely save yourself. So...";
	mes "What do you do?";
	next;
	menu "I will kill to survive",s_Kill,"I have no choice, but to die.",s_Die,"I won't kill, but I'll find a way to live!",-,"I'll ask that person if it's okay to kill him.",s_Ask;

	mes "[Echoing Voice]";
	mes "Yes. Love for all life,";
	mes "including your own, is";
	mes "a trait all true heroes";
	mes "must have. You have chosen...";
	mes "Wisely. Please, take this into";
	mes "your capable hands, adventurer.";
	next;
	mes "^3151FFA stone slab at the foot";
	mes "of the statue slides open,";
	mes "revealing a piece of the";
	mes "tablet that will lead you";
	mes "to the Hellion's gem.";
	getitem 7334,1; //Payon Tablet
	set HELLIONQ,18;
	close;

s_Kill:
	mes "[Echoing Voice]";
	mes "there is a primal truth";
	mes "to your answer. However...";
	mes "You have chosen poorly.";
	close2;
	percentheal -100,0;
	end;

s_Die:
	mes "[Echoing Voice]";
	mes "There is a kindness and";
	mes "compassion in your answer";
	mes "that is indeed rare. However,";
	mes "where is the respect for your";
	mes "own life? If you are that";
	mes "willing to throw it away, you";
	mes "are no hero.";
	close2;
	percentheal -100,0;
	end;

s_Ask:
	mes "[Echoing Voice]";
	mes "The veneer of honesty in";
	mes "your answer is surpassed by";
	mes "your own cowardice. You have";
	mes "chosen extremely poorly...";
	close2;
	percentheal -100,0;
	end;

OnTouch:
	if(HELLIONQ != 17)end;
	specialeffect 313;
	specialeffect2 313;
	mes "^3151FFThe piece of tablet";
	mes "that you have is shining";
	mes "with light as if in repsonse";
	mes "to something in the area.";
	close;

}

morocc_in.gat,116,101,2	script	Old Scholar Tyus	735,2,2,{

	if(HELLIONQ == 27)goto s_Last;
	if(countitem(7332))goto s_Tablet;
	if(HELLIONQ == 25)goto s_Completion;
	if(HELLIONQ == 24)goto s_Four;
	if(HELLIONQ > 18)goto s_Welshyun;
	if(HELLIONQ == 18)goto s_Morroc;
	if(HELLIONQ > 8)goto s_Grout;
	if(HELLIONQ == 8)goto s_Payon;
	if(HELLIONQ == 4)goto s_Veggie;
	if(HELLIONQ > 0)goto s_Seek;
	if(hellion_consideration)goto s_Consider;
	mes "[Sir Chilias'Tyus]";
	mes "Greetings...";
	mes "My name is Sir Chilias'Tyus.";
	mes "I've lived a long time here in";
	mes "Rune-Midgard and I've come";
	mes "to see and know a lot of things.";
	mes "Power, jealousy, hardship...";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "Sp what exactly";
	mes "brings you here to";
	mes "the middle of Morroc?";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "This land has grown corrupt";
	mes "with the disease of greed";
	mes "and selfishness. Everywhere";
	mes "you go, people are heartless,";
	mes "but I still believe that I'll find";
	mes "the one worth enough to help";
	mes "me...";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "There is no shortage of";
	mes "brave and strong warriors";
	mes "in these dangerous times.";
	mes "But for the thing I seek,";
	mes "I must have the help of one";
	mes "who is truly pure of heart...";
	next;
	menu "What are you looking for?",s_Looking,"Pure of heart? Hah! Good luck!",-;

	mes "[Sir Chilias'Tyus]";
	mes "Times are bad when";
	mes "even the youth have";
	mes "been jaded. But I refuse";
	mes "to believe that hope is";
	mes "truly lost in this age...";
	close;

s_Glimmer:
	mes "[Sir Chilias'Tyus]";
	mes "Heh heh~ I see you eyes";
	mes "glimmer with enthusiasm,";
	mes "but it seems this task might";
	mes "be a little too much for you.";
	mes "I'm sorry, but that's the";
	mes "reality I can't ignore...";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "Go out in to the world,";
	mes "and grow in strength.";
	mes "Perhaps after you become";
	mes "more capable, I'll find that";
	mes "I can rely on your help.";
	close;

s_Looking:
	if(BaseLevel < 75)goto s_Glimmer;
	mes "[Sir Chilias'Tyus]";
	mes "I suppose I should tell you";
	mes "first about my grandfather,";
	mes "who was once a young and";
	mes "fearless adventurer, much";
	mes "like yourself. Yes, he";
	mes "traveled the world with his";
	mes "three friends...";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "The four of them went on";
	mes "many expeditions together";
	mes "and earned themselves a";
	mes "reputation as a courageous";
	mes "team that worked especially";
	mes "well together after many years.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "Then, on what was supposed";
	mes "to be a typical journey, they found";
	mes "an uncharted cave. Curious, and";
	mes "in need of rest, the four ventured";
	mes "inside. There, they encountered";
	mes "that most horrible creature...";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "It was a ferocious beast";
	mes "with horns as large and as";
	mes "sharp as their weapons, with";
	mes "eyes that blazed with hellfire.";
	mes "My grandfather could tell that";
	mes "it was thirsty for blood.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "They ran from the beast";
	mes "as quickly as they could,";
	mes "but the four were separated";
	mes "in the cave's darkness. It was";
	mes "all they could do to hide in";
	mes "the darkness of the cave...";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "From his hiding place, my";
	mes "grandfather heard the screams";
	mes "of his friends as the monster";
	mes "slaughtered them, one by one.";
	mes "The screams and the monster's";
	mes "growls were getting closer...";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "Unable to endure the";
	mes "suffering of his trusted";
	mes "comrades, my grandfather";
	mes "jumped out hiding and tried";
	mes "to save his friends. The beast";
	mes "found him and they battled.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "It was no use. The beast";
	mes "was too powerful and my";
	mes "grandfather was knocked out.";
	mes "When he came to, his friends";
	mes "were all dead and a shining";
	mes "gem lay in a pool of blood.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "My grandfather buried";
	mes "his friends that day. He";
	mes "took that gem as a memento";
	mes "of their final expedition, but";
	mes "wondered why the beast";
	mes "had decided to spare him.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "It wasn't long before he";
	mes "experienced the gem's curse";
	mes "firsthand. The gem inexplicably";
	mes "drew people to it, taking the";
	mes "greed in their hearts and";
	mes "twisting their minds...";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "Grandfather believed the";
	mes "beast let him live so that";
	mes "the gem would be set loose";
	mes "upon the outside world, free";
	mes "to pollute it with its evil.";
	mes "He had to do something...";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "However, the gem proved";
	mes "to be formed out of pure evil";
	mes "and could not be destroyed";
	mes "by human means. In the end,";
	mes "my grandfather hid the gem";
	mes "someplace safe...";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "However, the threat of the";
	mes "gem still exists. Grandfather";
	mes "and my father worked for";
	mes "years to find a way to seal";
	mes "its darkness. Only now have I";
	mes "been able to create a bracelet to";
	mes "seal its evil power.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "For my grandfather and his";
	mes "friends to truly rest in peace,";
	mes "I must find an adventurer of";
	mes "pure heart who can find the";
	mes "gem and bring it to me so that";
	mes "I can finally seal its power.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "I think... I think you";
	mes "might be the hero that";
	mes "I've been waiting for. Will";
	mes "you help an old man for the";
	mes "sake of all that is good?";
	next;
	menu "Of course, I will.",s_Will,"I'm sorry, but I can't.",-;
s_AskMuch:
	mes "[Sir Chilias'Tyus]";
	mes "I understand...";
	mes "I know I am asking much";
	mes "of you, and this task is not";
	mes "one to take lightly. However,";
	mes "I believe that you are wholly";
	mes "capable of accomplishing this.";
	set hellion_consideration,1;
	close;

s_Consider:
	mes "[Sir Chilias'Tyus]";
	mes "So have you considered";
	mes "my proposal? I believe that";
	mes "you may be the one who will";
	mes "help me in sealing away the";
	mes "Hellion gem's evil forever.";
	next;
	menu "I will help you.",-,"...Sorry about that.",s_AskMuch;

	set hellion_consideration,0;
s_Will: 
	mes "[Sir Chilias'Tyus]";
	mes "Good good, but first";
	mes "I must test to see if you";
	mes "are worthy of holding the";
	mes "Hellion's gem. I can't tell";
	mes "you exacrlt where it is, but";
	mes "I will give you some clues.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "First, speak to Clanux";
	mes "Heffron in Prontera. He";
	mes "has offered to help me find";
	mes "the gem, but I do not know if";
	mes "I can trust him. Please help";
	mes "me protect this world from the gem...";
	set HELLIONQ,1;
	close;

s_Seek:
	mes "[Sir Chilias'Tyus]";
	mes "Please seek out";
	mes "Clanux Heffron in";
	mes "Prontera. He may have";
	mes "information regarding a";
	mes "clue leading to the Hellion";
	mes "gem. Good luck to you.";
	close;

s_Veggie:
	mes "^3151FFAs you told Chilias about";
	mes "the strange message you";
	mes "found inside the training";
	mes "dummy he starts to mumble";
	mes "something nobody could";
	mes "possibly understand.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "Ok, I think I know what";
	mes "this clue means. Go find";
	mes "this Veggie Lady, wherever";
	mes "she might be. Then take";
	mes "9 steps North and then";
	mes "3 steps to the west.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "I'm still clueless";
	mes "about the \"BINGO\" part.";
	mes "I'm sorry but I can't help";
	mes "you with that, you'll have";
	mes "to figure it out on your own.";
	close;

s_Payon:
	mes "[Sir Chilias'Tyus]";
	mes "Ah, yes! This is one piece";
	mes "of the table that will lead";
	mes "you to the Hellion's gem!";
	mes "This engraving was definitely";
	mes "made by my grandfather, and";
	mes "Christopher was one of his friends.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "I suppose he hid these pieces";
	mes "in the places that reminded him";
	mes "of his friends. Now according";
	mes "to the tablet's message, you";
	mes "should find the next piece";
	mes "in \"the city of thickest forest\"";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "I'm sure that the";
	mes "next tablet piece is";
	mes "in Payon, so go there";
	mes "and see if you can find";
	mes "it. Good luck to you,";
	mes "kind adventurer.";
	set HELLIONQ,9;
	close;

s_Grout:
	mes "[Sir Chilias'Tyus]";
	mes "Now that I think about";
	mes "it, there's a guy in Payon";
	mes "that I know named Grout'the";
	mes "Tuccok who knew my grandfather.";
	mes "He might know something, but";
	mes "he's a little, well... Hmm...";
	close;

s_Morroc:
	mes "[Sir Chilias'Tyus]";
	mes "While you were gone,";
	mes "I felt a little bad that you";
	mes "were searching for the";
	mes "tablet pieces on your own,";
	mes "so I managed to find this";
	mes "piece here in Morroc. But...";
	next;
	mes "[Sir Chilias'Tyus]";
	specialeffect 313;
	specialeffect2 313;
	mes "Why are they glowing like";
	mes "this? In any case, we have";
	mes "this piece I found here in";
	mes "Morroc, and the pieces you";
	mes "found in Prontera and Payon.";
	mes "There's one more left in Geffen.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "Anyway, on the last tablet";
	mes "piece that I found, it";
	mes "says \"Hakim loved magic,";
	mes "and always enjoyed its";
	mes "wondrous city\", so I'm sure";
	mes "the last piece is in Geffen.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "Please take this third";
	mes "tablet piece and find the";
	mes "final piece so that we can";
	mes "fulfill my dear grandfather's";
	mes "greatest wish and forever";
	mes "seal away the Hellion's gem.";
	getitem 7335,1; //Morroc Tablet
	set HELLIONQ,19;
	next;
	mes "[Sir Chilias'Tyus]";
	mes "When you get back to Geffen,";
	mes "please speak to Welshyun,";
	mes "who's been helping me in";
	mes "creating a device to seal the";
	mes "gem's darkness. He is";
	mes "worthy of trust and";
	mes "will surely help us.";
	close;

s_Welshyun:
	mes "[Sir Chilias'Tyus]";
	mes "Please visit the";
	mes "sage named Welshyun";
	mes "in Geffen. We are good";
	mes "friends, so I am sure";
	mes "that you can trust him.";
	close;

s_Four:
	mes "[Sir Chilias'Tyus]";
	mes "You have all four";
	mes "pieces of the tablet?";
	mes "That's great news! Ah,";
	mes "and the gem is embedded";
	mes "in each of the tablet pieces.";
	mes "We're so close to finishing!";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "Ah, would you go back";
	mes "to Welshyun? I know it's";
	mes "a hassle, but he is probably";
	mes "the only one who can combine";
	mes "the tablet pieces into their";
	mes "complete form. Thank you...";
	set HELLIONQ,25;
	close;

s_Completion:
	mes "[Sir Chilias'Tyus]";
	mes "Ah, would you go back";
	mes "to Welshyun? I know it's";
	mes "a hassle, but he is probably";
	mes "the only one who can combine";
	mes "the tablet pieces into their";
	mes "complete form. Thank you...";
	close;

s_Tablet:
	mes "[Sir Chilias'Tyus]";
	mes "At long last. We have";
	mes "everything. The Tablet";
	mes "and the Hellion's gem.";
	mes "Now I can finally use";
	mes "this bracelet to seal";
	mes "its power forever...";
	next;
	if(countitem(7337))goto s_HellionEye;
	specialeffect 12;
	mes "[Sir Chilias'Tyus]";
	mes "Darkness that writhes,";
	mes "souls lost in the inferno,";
	mes "I offer you comfort, I offer";
	mes "you peace. To the despairing";
	mes "ones, to the shameless ones,";
	mes "I give guidance to heaven...";
	next;
	specialeffect 58;
	mes "[Sir Chilias'Tyus]";
	mes "Instead of sadness,";
	mes "let there be joy. Instead";
	mes "of anger, let there be";
	mes "love. Souls that are";
	mes "lost will now find";
	mes "their way...";
	next;
	specialeffect 83;
	mes "[Sir Chilias'Tyus]";
	mes "Light and hope...";
	mes "Heaven and earth...";
	mes "Cast away the darkness.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "I did it.";
	mes "After all these";
	mes "long years I finally did";
	mes "it. Thanks to you help.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "Please take this";
	mes "Nile Rose, which will";
	mes "keep the power of the gem";
	mes "in check. I trust that you will";
	mes "keep its secret and protect it";
	mes "from those motivated by greed.";
	delitem 7332,1; //Complete Tablet
	getitem 2658,1; //Nile Rose
	set BaseExp,BaseExp+1000000;
	set HELLIONQ,27;
	next;
	mes "[Sir Chilias'Tyus]";
	mes "Thank you, kind";
	mes "adventurer, for bringing";
	mes "peace to my grandfather's";
	mes "soul and for working to";
	mes "protect peace in our world.";
	mes "You are the truest of heroes.";
	close;

s_HellionEye:
	mes "[Sir Chilias'Tyus]";
	mes "But your eyes...";
	mes "They seem so tired";
	mes "and I can sense some";
	mes "sort of pain from them.";
	mes "Did something happen?";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "I learned the secret of";
	mes "the Hellion's gem. It...";
	mes "It turns people into";
	mes "Hellion Revenants.";
	mes "it's what happened";
	mes "to your grandfather...";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "What...";
	mes "What did you just say?";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "The tablet had a map that";
	mes "let me to the chamber where";
	mes "your grandfather locked himself";
	mes "up before he completed turning";
	mes "into the Hellion Revenant.";
	mes "It was horrible...";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "At the entrance, he";
	mes "left a message that said";
	mes "that he wanted to be killed.";
	mes "So that he could finally join";
	mes "his friends instead of living";
	mes "as a monster. So I... So I...";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "It's okay. I know you";
	mes "did the right thing. It's";
	mes "what my grandfather";
	mes "would have wanted most.";
	mes "Thank you for finally freeing";
	mes "his soul and giving him peace.";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "Here, I think you";
	mes "should have this Eye";
	mes "of Hellion, in case you";
	mes "wanted a memento of";
	mes "your dear grandfather.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "I'd appreciate that.";
	mes "Grandfather's eye...";
	mes "It's full of the painful";
	mes "experiences of the people";
	mes "who were turned into Hellion";
	mes "Revenants against their will.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "But... Now is not the";
	mes "time for sentiment. For";
	mes "sake of my grandfather,";
	mes "I must seal the power of";
	mes "the Hellion's gem now!";
	next;
	specialeffect 12;
	mes "[Sir Chilias'Tyus]";
	mes "Darkness that writhes,";
	mes "souls lost in the inferno,";
	mes "I offer you comfort, I offer";
	mes "you peace. To the despairing";
	mes "ones, to the shameless ones,";
	mes "I give guidance to heaven...";
	next;
	specialeffect 58;
	mes "[Sir Chilias'Tyus]";
	mes "Instead of sadness,";
	mes "let there be joy. Instead";
	mes "of anger, let there be";
	mes "love. Souls that are";
	mes "lost will now find";
	mes "their way...";
	next;
	specialeffect 83;
	mes "[Sir Chilias'Tyus]";
	mes "Light and hope...";
	mes "Heaven and earth...";
	mes "Cast away the darkness.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "I did it.";
	mes "After all these";
	mes "long years I finally did";
	mes "it. Thanks to you help.";
	next;
	mes "[Sir Chilias'Tyus]";
	mes "Please take this";
	mes "Nile Rose, which will";
	mes "keep the power of the gem";
	mes "in check. I trust that you will";
	mes "keep its secret and protect it";
	mes "from those motivated by greed.";
	delitem 7332,1; //Complete Tablet
	delitem 7337,1; //Eye of Hellion
	getitem 2658,1; //Nile Rose
	getitem 603,1; //Old Blue Box
	set BaseExp,BaseExp+1200000;
	set HELLIONQ,27;
	next;
	mes "[Sir Chilias'Tyus]";
	mes "Thank you, kind";
	mes "adventurer, for bringing";
	mes "peace to my grandfather's";
	mes "soul and for working to";
	mes "protect peace in our world.";
	mes "You are the truest of heroes.";
	next;
	mes "^3151FFYou have received the";
	mes "Nile Rose in which the";
	mes "Hellion's gem is sealed.";
	mes "The Eye of the Hellion has";
	mes "granted you some experience";
	mes "through its strange powers.";
	close;

s_Last:
	mes "[Sir Chilias'Tyus]";
	mes "Long time no see. So, are you doing";
	mes "well to keep the promise with me?";
	mes "Please handle it with care";
	mes "to prevent the evil power within";
	mes "from being released.";
	close;

OnTouch:
	if(HELLIONQ != 18)end;
	specialeffect 313;
	specialeffect2 313;
	mes "^3151FFOne of the Table Pieces";
	mes "that you have is beginning to";
	mes "shine with light, as if it were";
	mes "responding to something...";
	close;

}

gef_fild09.gat,296,59,1	script	Hidden Cave#HellionCave	111,{

	if(!countitem(7332))goto s_NoTablet;
	mes "^3151FFAmongst the wild bushes";
	mes "and overgrown grass, you";
	mes "see a large rock slab that";
	mes "resembles a door. As you";
	mes "come closer, you can see a";
	mes "groove on the rock's surface.";
	next;
	menu "Insert the Tablet.",s_Insert,"Ignore",-;

	mes "^3151FFYou do nothing.";
	mes "And nothing happens.";
	close;

s_Insert:
	mes "^3151FFYou insert the tablet into";
	mes "the rock's groove and the";
	mes "Hellion's gem begins to hum";
	mes "and glow. The rock slides open,";
	mes "revealing an engraved message";
	mes "on the ground for you to read.";
	next;
	mes "^7151FF\"To you who have found this";
	mes "place, I reveal the truth about";
	mes "the Hellion Revenant. It was";
	mes "never a devil, like we";
	mes "believed, but a human being";
	mes "slowly corrupted by the";
	mes "darkness of the Hellion's";
	mes "gem.\"";
	next;
	mes "^7151FF\"I learned this horrible";
	mes "truth too late. Already,";
	mes "I can feel the darkness";
	mes "welling up within me.";
	mes "It is all I can do to trap";
	mes "myself in this chamber";
	mes "before I lose all reason.\"";
	next;
	mes "^7151FF\"I failed an it's too";
	mes "late for me, but I hope";
	mes "someone in the future";
	mes "can seal the Hellion gem's";
	mes "dark power. And I hope that";
	mes "someone will grant me the";
	mes "sweet release I crave...\"";
	next;
	mes "^7151FF\"Brave hero, I beg of";
	mes "you. Please kill me and";
	mes "bring salvation to my soul.";
	mes "Please release me so that";
	mes "I can finally join my friends.\"";
	mes " ";
	mes "                       -Tyus";
	close2;
	warp "gef_dun03.gat",140,119;
	end;

s_NoTablet:
	mes "^3151FFAmongst the wild bushes";
	mes "and overgrown grass, you";
	mes "see a large rock slab that";
	mes "resembles a door. But it";
	mes "seems it is sealed by a";
	mes "strong force so you're";
	mes "unable to open it.";
	close;

}