summaryrefslogtreecommitdiff
path: root/npc/quests/seals/sleipnir_seal.txt
blob: 4450c1778856c67936d6b570492adc6d1580d968 (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
//================= Hercules Script =======================================
//=       _   _                     _
//=      | | | |                   | |
//=      | |_| | ___ _ __ ___ _   _| | ___  ___
//=      |  _  |/ _ \ '__/ __| | | | |/ _ \/ __|
//=      | | | |  __/ | | (__| |_| | |  __/\__ \
//=      \_| |_/\___|_|  \___|\__,_|_|\___||___/
//================= License ===============================================
//= This file is part of Hercules.
//= http://herc.ws - http://github.com/HerculesWS/Hercules
//=
//= Copyright (C) 2012-2015  Hercules Dev Team
//= Copyright (C)  Euphy
//= Copyright (C)  L0ne_W0lf
//= Copyright (C)  MasterOfMuppets
//=
//= Hercules is free software: you can redistribute it and/or modify
//= it under the terms of the GNU General Public License as published by
//= the Free Software Foundation, either version 3 of the License, or
//= (at your option) any later version.
//=
//= This program is distributed in the hope that it will be useful,
//= but WITHOUT ANY WARRANTY; without even the implied warranty of
//= MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//= GNU General Public License for more details.
//=
//= You should have received a copy of the GNU General Public License
//= along with this program.  If not, see <http://www.gnu.org/licenses/>.
//=========================================================================
//= God Item Quest - Sleipnir Seal
//================= Description ===========================================
//= Quest for breaking the seal of Sleipnir.
//================= Current Version =======================================
//= 1.4
//=========================================================================

yuno,164,200,4	script	Noyee#G	4W_F_01,{
	if (BaseLevel < 70) {
		mes "[Noyee]";
		mes "Did you know that there's a difference between the armor you can buy from NPC shops and the kinds you obtain from hunting monsters?";
		next;
		mes "[Noyee]";
		mes "The difference, my friend, is in the number of ^3355FFslots^000000 in your armor.";
		next;
		mes "[Noyee]";
		mes "The same kind of Armor will have the same Defense. However, if an Armor has a slot, you can insert a Monster Card which will add an enhancement to that armor.";
		next;
		mes "[Noyee]";
		mes "Both Monster Cards and Slotted Armors are rarely dropped by monsters, and are thus valuable commodies.";
		close;
	}
	else {
		if ($God1 >= $@god_check2) {
			mes "[Noyee]";
			mes "Did you know that there's a difference between the armor you can buy from NPC shops and the kinds you obtain from hunting monsters?";
			next;
			mes "[Noyee]";
			mes "The difference, my friend, is in the number of ^3355FFslots^000000 in your armor.";
			next;
			mes "[Noyee]";
			mes "The same kind of Armor will have the same Defense. However, if an Armor has a slot, you can insert a Monster Card which will add an enhancement to that armor.";
			next;
			mes "[Noyee]";
			mes "Both Monster Cards and Slotted Armors are rarely dropped by monsters, and are thus valuable commodies.";
			close;
		}
		else {
			mes "[Noyee]";
			mes "You know, there's a very interesting place that looks";
			mes "sort of like a laboratory in Juno.";
			next;
			mes "[Noyee]";
			mes "Anyway, no one is really sure if it is or not. Recently, it's been the focus of many rumors. I have no idea if any of them are true though.";
			close2;
			if (god_sl_1 == 0) {
				god_sl_1 = 1;
			}
		}
	}
}

que_god01,98,98,4	script	Manager#G	1_F_04,{
	if (checkweight(Spawn,500) == 0) {
		mes "^3355FFWait a second! Right now, you're carrying too many items with you. Please come back after putting some of your things into Kafra Storage.^000000";
		close;
	}
	if (BaseLevel < 70) {
		mes "[Cukure]";
		mes "I can't believe how busy I am at work nowadays. I don't even have time to see any of my friends or go shopping.";
		next;
		mes "[Cukure]";
		mes "Wait...!";
		mes "I can't even remember the last";
		mes "time I went out with a guy! At this rate, I might retire before I can find a boyfriend. Noooo, I'm still in my prime~!";
		emotion e_swt2;
		close;
	}
	if ($God1 < $@god_check2) {
		if (god_sl_1 == 0) {
			mes "[Cukure]";
			mes "I can't believe how busy I am at work nowadays. I don't even have time to see any of my friends or go shopping.";
			next;
			mes "[Cukure]";
			mes "Wait...!";
			mes "I can't even remember the last";
			mes "time I went out with a guy! At this rate, I might retire before I can find a boyfriend. Noooo, I'm still in my prime~!";
			emotion e_swt2;
			close;
		}
		else if (god_sl_1 == 1) {
			mes "[Cukure]";
			mes "We conduct research on godly artifacts that were left behind by the gods long ago. More specifically, we're interested in the tools the gods used.";
			next;
			mes "[Cukure]";
			mes "Recently, many of the members of our research group, aside from the leaders, have left so now we're short on manpower.";
			next;
			mes "[Cukure]";
			mes "Since we're understaffed, we can't continue most of our research projects that are currently in progress. Speaking of which...";
			next;
			mes "[Cukure]";
			mes "Do you mind if I ask";
			mes "an adventurer like yourself";
			mes "to help us in our research?";
			next;
			mes "[Cukure]";
			mes "We won't experiment on you or anything, we just need you to run some simple errands. And of course, you will be rewarded.";
			next;
			switch(select("I'm kind of busy...", "Sure, why not?")) {
			case 1:
				mes "[Cukure]";
				mes "Oh, I see.";
				mes "Well, if you happen to find anyone that might work well as a temporary research assistant, would you recommend them to us?";
				next;
				mes "[Cukure]";
				mes "I'm so sorry to ask this of you, but I hope you understand that we're seriously lacking in terms";
				mes "of human resources.";
				close;
			case 2:
				cutin "god_kukur02",2;
				mes "[Cukure]";
				mes "Really~?!";
				mes "That's great!";
				mes "Hahahahaha! I'm so";
				mes "glad to hear that!";
				next;
				mes "[Cukure]";
				mes "Go inside and speak to the investigators there. They're all kind of swamped, so I'm sure they'll need your assistance.";
				next;
				mes "[Cukure]";
				mes "Oh, wait...";
				mes "Let me give you a temporary admission pass. Thank you";
				mes "so much for your help~";
				next;
				mes "^3355FFYou've received";
				mes "a temporary";
				mes "admission pass.^000000";
				god_sl_1 = 2;
				close2;
				break;
			}
		}
		else if (god_sl_1 < 10) {
			cutin "god_kukur03",2;
			mes "[Cukure]";
			mes "It's really difficult to managing a laboratory. Rival labs always try to entice our staff away or interrupt our progress.";
			next;
			mes "[Cukure]";
			mes "And because of this job, it's really hard for me to enjoy";
			mes "having a personal life...";
			next;
			cutin "god_kukur02",2;
			mes "[Cukure]";
			mes "Hahahaha...";
			mes "What am I doing?";
			mes "Please just ignore what I just said. It's really not that big of a deal. ^333333*Sigh...*^000000";
			close2;
		}
		else if (god_sl_1 < 50) {
			mes "[Cukure]";
			mes "Ah, thank you";
			mes "for helping us out.";
			mes "I hope you'll continue";
			mes "to lend us your assistance.";
			next;
			mes "[Cukure]";
			mes "Although our researchers are kind of strange, they're all pretty nice and they mean well.";
			next;
			mes "[Cukure]";
			mes "So I hope you understand if a few of them treat you in a way that seems kind of rude.";
			close2;
		}
		else if (god_sl_1 == 50) {
			cutin "god_kukur02",2;
			mes "[Cukure]";
			mes "Ah...";
			mes "You really helped us out a lot. Thank you for all you have done.";
			next;
			mes "[Cukure]";
			mes "As you already know, we're trying to find out whether or not we can reproduce 'Sleipnir,' one of the tools used by the gods.";
			next;
			mes "[Cukure]";
			mes "However....";
			mes "So far it seems impossible, at least with the technology that we currently have. Hmm...";
			next;
			mes "[Cukure]";
			mes "Anyways, we will continue to research and hope that we'll be able to accomplish our goal of recreating Sleipnir someday.";
			next;
			mes "[Cukure]";
			mes "Thanks to you, we were able to complete a rudimentary study of Sleipnir. Now we can plan out a more advanced study of Sleipnir.";
			next;
			mes "[Cukure]";
			mes "Before I forget, let me give you your reward for assisting in our research projects. Please give";
			mes "me a minute...";
			next;
			mes "[Cukure]";
			mes "Ah, there it is.";
			mes "It might not be much, but I hope you accept it as a token of my gratitude. Good luck on your travels!";
			if ($God1 < $@god_check2)
				$God1 += 1;
			if ($God1 == $@god_check1)
				announce "The 1st seal of [Sleipnir] has appeared.",bc_all;
			else if ($God1 == $@god_check2) {
				if ($God1 == $@god_check2 && $God2 == $@god_check2 && $God3 == $@god_check2 && $God4 == $@god_check2)
					announce "our seals have been released at the same time with the seal of [Sleipnir].",bc_all;
				else
					announce "The 1st seal of [Sleipnir] has been released.",bc_all;
			}
			god_sl_1 = 51;
			.@god_treasure = rand(1,900);
			.@god_treasure1 = rand(1,1000);
			if (RENEWAL) {
				if (.@god_treasure < 101) {
					     if (.@god_treasure1 < 210) getitem Guard_,1;
					else if (.@god_treasure1 < 420) getitem Buckler_,1;
					else if (.@god_treasure1 < 630) getitem Shield_,1;
					else if (.@god_treasure1 < 840) getitem Mirror_Shield_,1;
					else getitem Memorize_Book,1;
				}
				else if (.@god_treasure < 201) {
					     if (.@god_treasure1 < 48) getitem Fancy_Flower,1;
					else if (.@god_treasure1 < 96) getitem Hair_Band,1;
					else if (.@god_treasure1 < 150) getitem Cat_Hairband,1;
					else if (.@god_treasure1 < 190) getitem Flower_Hairband,1;
					else if (.@god_treasure1 < 238) getitem Biretta_,1;
					else if (.@god_treasure1 < 290) getitem Turban_,1;
					else if (.@god_treasure1 < 340) getitem Cap_,1;
					else if (.@god_treasure1 < 348) getitem Helm_,1;
					else if (.@god_treasure1 < 400) getitem Gemmed_Sallet_,1;
					else if (.@god_treasure1 < 448) getitem Circlet_,1;
					else if (.@god_treasure1 < 496) getitem Santas_Hat,1;
					else if (.@god_treasure1 < 544) getitem Big_Sis_Ribbon,1;
					else if (.@god_treasure1 < 592) getitem Sweet_Gents,1;
					else if (.@god_treasure1 < 640) getitem Oldmans_Romance,1;
					else if (.@god_treasure1 < 688) getitem Western_Grace,1;
					else if (.@god_treasure1 < 736) getitem Fillet,1;
					else if (.@god_treasure1 < 784) getitem Holy_Bonnet,1;
					else if (.@god_treasure1 < 832) getitem Star_Sparkling,1;
					else if (.@god_treasure1 < 880) getitem Sunflower,1;
					else if (.@god_treasure1 < 940) getitem Snowy_Horn,1;
					else getitem Mini_Propeller,1;
				}
				else if (.@god_treasure < 301) {
					     if (.@god_treasure1 < 160) getitem Cigar,1;
					else if (.@god_treasure1 < 320) getitem Pierrot_Nose,1;
					else if (.@god_treasure1 < 480) getitem Gangster_Patch,1;
					else if (.@god_treasure1 < 540) getitem Ganster_Mask,1;
					else if (.@god_treasure1 < 700) getitem Iron_Cane,1;
					else if (.@god_treasure1 < 800) getitem Mini_Glasses,1;
					else if (.@god_treasure1 < 900) getitem Centimental_Flower,1;
					else getitem Centimental_Leaf,1;
				}
				else if (.@god_treasure < 401) {
					     if (.@god_treasure1 < 70) getitem Green_Feeler,1;
					else if (.@god_treasure1 < 140) getitem Red_Bandana,1;
					else if (.@god_treasure1 < 210) getitem Eagle_Eyes,1;
					else if (.@god_treasure1 < 280) getitem Nurse_Cap,1;
					else if (.@god_treasure1 < 350) getitem Bomb_Wick,1;
					else if (.@god_treasure1 < 420) getitem Spirit_Chain,1;
					else if (.@god_treasure1 < 490) getitem Viking_Helm,1;
					else if (.@god_treasure1 < 560) getitem Pirate_Bandana,1;
					else if (.@god_treasure1 < 630) getitem Poo_Poo_Hat,1;
					else if (.@god_treasure1 < 700) getitem Funeral_Costume,1;
					else if (.@god_treasure1 < 770) getitem Masquerade,1;
					else if (.@god_treasure1 < 840) getitem Star_Dust,1;
					else if (.@god_treasure1 < 900) getitem Blinker,1;
					else if (.@god_treasure1 < 950) getitem Jack_A_Dandy,1;
					else getitem Apple_Of_Archer,1;
				}
				else if (.@god_treasure < 501) {
					     if (.@god_treasure1 < 80) getitem Adventureres_Suit_,1;
					else if (.@god_treasure1 < 160) getitem Mantle_,1;
					else if (.@god_treasure1 < 240) getitem Coat_,1;
					else if (.@god_treasure1 < 320) getitem Mink_Coat,1;
					else if (.@god_treasure1 < 400) getitem Padded_Armor_,1;
					else if (.@god_treasure1 < 480) getitem Chain_Mail_,1;
					else if (.@god_treasure1 < 560) getitem Wooden_Mail_,1;
					else if (.@god_treasure1 < 630) getitem Formal_Suit,1;
					else if (.@god_treasure1 < 700) getitem Silk_Robe_,1;
					else if (.@god_treasure1 < 760) getitem Scapulare_,1;
					else if (.@god_treasure1 < 810) getitem Saint_Robe_,1;
					else if (.@god_treasure1 < 850) getitem Full_Plate_Armor_,1;
					else if (.@god_treasure1 < 900) getitem Tights_,1;
					else if (.@god_treasure1 < 950) getitem Silver_Robe_,1;
					else getitem Thief_Clothes_,1;
				}
				else if (.@god_treasure < 601) {
					     if (.@god_treasure1 < 200) getitem Sandals_,1;
					else if (.@god_treasure1 < 400) getitem Shoes_,1;
					else if (.@god_treasure1 < 600) getitem Boots_,1;
					else if (.@god_treasure1 < 800) getitem Chrystal_Pumps,1;
					else getitem Spiky_Heel,1;
				}
				else if (.@god_treasure < 701) {
					     if (.@god_treasure1 < 300) getitem Hood_,1;
					else if (.@god_treasure1 < 550) getitem Muffler_,1;
					else if (.@god_treasure1 < 750) getitem Manteau_,1;
					else getitem Ragamuffin_Cape,1;
				}
				else if (.@god_treasure < 801) {
					     if (.@god_treasure1 < 110) getitem Ring,1;
					else if (.@god_treasure1 < 220) getitem Earring,1;
					else if (.@god_treasure1 < 330) getitem Necklace,1;
					else if (.@god_treasure1 < 440) getitem Glove,1;
					else if (.@god_treasure1 < 550) getitem Brooch,1;
					else if (.@god_treasure1 < 660) getitem Clip,1;
					else if (.@god_treasure1 < 770) getitem Rosary,1;
					else if (.@god_treasure1 < 880) getitem Mitten_Of_Presbyter,1;
					else getitem Matyrs_Flea_Guard,1;
				}
				else {
					     if (.@god_treasure1 < 150) getitem Mr_Scream,1;
					else if (.@god_treasure1 < 260) getitem Goblini_Mask,1;
					else if (.@god_treasure1 < 370) getitem Goblin_Mask_01,1;
					else if (.@god_treasure1 < 480) getitem Goblin_Mask_02,1;
					else if (.@god_treasure1 < 590) getitem Goblin_Mask_03,1;
					else if (.@god_treasure1 < 700) getitem Goblin_Mask_04,1;
					else if (.@god_treasure1 < 810) getitem Bongun_Hat,1;
					else if (.@god_treasure1 < 920) getitem Munak_Turban,1;
					else getitem Goggle_,1;
				}
			} else {
				if (.@god_treasure < 101) {
					     if (.@god_treasure1 < 210) getitem Guard_,1;
					else if (.@god_treasure1 < 420) getitem Buckler_,1;
					else if (.@god_treasure1 < 630) getitem Shield_,1;
					else if (.@god_treasure1 < 840) getitem Mirror_Shield_,1;
					else getitem Memorize_Book,1;
				}
				else if (.@god_treasure < 201) {
					     if (.@god_treasure1 < 48) getitem Angelic_Chain,1;
					else if (.@god_treasure1 < 96) getitem Hair_Band,1;
					else if (.@god_treasure1 < 150) getitem Cat_Hairband,1;
					else if (.@god_treasure1 < 190) getitem Satanic_Chain,1;
					else if (.@god_treasure1 < 238) getitem Biretta_,1;
					else if (.@god_treasure1 < 290) getitem Turban_,1;
					else if (.@god_treasure1 < 340) getitem Cap_,1;
					else if (.@god_treasure1 < 348) getitem Helm_,1;
					else if (.@god_treasure1 < 400) getitem Gemmed_Sallet_,1;
					else if (.@god_treasure1 < 448) getitem Circlet_,1;
					else if (.@god_treasure1 < 496) getitem Spinx_Helm,1;
					else if (.@god_treasure1 < 544) getitem Corsair,1;
					else if (.@god_treasure1 < 592) getitem Sweet_Gents,1;
					else if (.@god_treasure1 < 640) getitem Oldmans_Romance,1;
					else if (.@god_treasure1 < 688) getitem Western_Grace,1;
					else if (.@god_treasure1 < 736) getitem Spinx_Helm_,1;
					else if (.@god_treasure1 < 784) getitem Holy_Bonnet_,1;
					else if (.@god_treasure1 < 832) getitem Coronet,1;
					else if (.@god_treasure1 < 880) getitem Viking_Helm_,1;
					else if (.@god_treasure1 < 940) getitem Apple_Of_Archer,1;
					else getitem Blue_Coif_,1;
				}
				else if (.@god_treasure < 301) {
					     if (.@god_treasure1 < 160) getitem Fin_Helm,1;
					else if (.@god_treasure1 < 320) getitem Gas_Mask,1;
					else if (.@god_treasure1 < 480) getitem Assasin_Mask,1;
					else if (.@god_treasure1 < 540) getitem Ganster_Mask,1;
					else if (.@god_treasure1 < 700) getitem Iron_Cane,1;
					else if (.@god_treasure1 < 800) getitem Mini_Glasses,1;
					else if (.@god_treasure1 < 900) getitem Angry_Mouth,1;
					else {
						// Pirate Dagger is iRO only, and requires extra files in client.
						//getitem 5305,1 //Pirate_Dagger
						getitem Centimental_Leaf,1;
					}
				}
				else if (.@god_treasure < 401) {
					     if (.@god_treasure1 < 70) getitem Elven_Ears,1;
					else if (.@god_treasure1 < 140) getitem Gemmed_Crown,1;
					else if (.@god_treasure1 < 210) getitem Baseball_Cap,1;
					else if (.@god_treasure1 < 280) getitem Biretta_,1;
					else if (.@god_treasure1 < 350) getitem Fedora_,1;
					else if (.@god_treasure1 < 420) getitem Prontera_Army_Cap,1;
					else if (.@god_treasure1 < 490) getitem Bone_Helm_,1;
					else if (.@god_treasure1 < 560) getitem Panda_Cap,1;
					else if (.@god_treasure1 < 630) getitem Red_Bonnet,1;
					else if (.@god_treasure1 < 700) getitem Lazy_Raccoon,1;
					else if (.@god_treasure1 < 770) getitem Bongun_Hat_,1;
					else if (.@god_treasure1 < 840) getitem Bunny_Band,1;
					else if (.@god_treasure1 < 900) getitem Blinker,1;
					else if (.@god_treasure1 < 950) getitem Munak_Turban_,1;
					else getitem Feather_Bonnet,1;
				} else if (.@god_treasure < 501) {
					     if (.@god_treasure1 < 85) getitem Coat_,1;
					else if (.@god_treasure1 < 170) getitem Mink_Coat,1;
					else if (.@god_treasure1 < 255) getitem Padded_Armor_,1;
					else if (.@god_treasure1 < 340) getitem Plate_Armor_,1;
					else if (.@god_treasure1 < 425) getitem Glittering_Clothes,1;
					else if (.@god_treasure1 < 510) getitem Formal_Suit,1;
					else if (.@god_treasure1 < 595) getitem Silk_Robe_,1;
					else if (.@god_treasure1 < 680) getitem Ninja_Suit_,1;
					else if (.@god_treasure1 < 765) getitem Saint_Robe_,1;
					else if (.@god_treasure1 < 850) getitem Full_Plate_Armor_,1;
					else if (.@god_treasure1 < 935) getitem Tights_,1;
					else getitem Thief_Clothes_,1;
				}
				else if (.@god_treasure < 601) {
					     if (.@god_treasure1 < 200) getitem High_Fashion_Sandals,1;
					else if (.@god_treasure1 < 400) getitem Shoes_,1;
					else if (.@god_treasure1 < 600) getitem Boots_,1;
					else if (.@god_treasure1 < 800) getitem Chrystal_Pumps,1;
					else getitem Grave_,1;
				}
				else if (.@god_treasure < 701) {
					     if (.@god_treasure1 < 200) getitem Celestial_Robe,1;
					else if (.@god_treasure1 < 400) getitem Muffler_,1;
					else if (.@god_treasure1 < 600) getitem Manteau_,1;
					else if (.@god_treasure1 < 800) getitem Pauldron,1;
					else getitem Ragamuffin_Cape,1;
				}
				else if (.@god_treasure < 801) {
					     if (.@god_treasure1 < 110) getitem Ring_Pommel_Saber,1; //Ring_
					else if (.@god_treasure1 < 220) getitem Earring_,1;
					else if (.@god_treasure1 < 330) getitem Necklace_,1;
					else if (.@god_treasure1 < 440) getitem Glove_,1;
					else if (.@god_treasure1 < 550) getitem Brooch_,1;
					else if (.@god_treasure1 < 660) getitem Clip,1;
					else if (.@god_treasure1 < 770) getitem Rosary_,1;
					else if (.@god_treasure1 < 880) getitem Mitten_Of_Presbyter,1;
					else getitem Thimble_Of_Archer_,1;
				}
				else {
					     if (.@god_treasure1 < 150) getitem Phantom_Of_Opera,1;
					else if (.@god_treasure1 < 260) getitem Goblini_Mask,1;
					else if (.@god_treasure1 < 370) getitem Goblin_Mask_01,1;
					else if (.@god_treasure1 < 480) getitem Goblin_Mask_02,1;
					else if (.@god_treasure1 < 590) getitem Goblin_Mask_03,1;
					else if (.@god_treasure1 < 700) getitem Goblin_Mask_04,1;
					else if (.@god_treasure1 < 810) getitem Alarm_Mask,1;
					else if (.@god_treasure1 < 920) getitem Welding_Mask,1;
					else getitem Machoman_Glasses,1;
				}
			}
			next;
			mes "[Cukure]";
			mes "Ah, I'll also need to take back that temporary pass I gave to you. I'm sorry, but it's protocol we have to follow...";
			next;
			mes "[Cukure]";
			mes "Once again,";
			mes "thank you for";
			mes "all your help~";
			close2;
		}
		else {
			cutin "god_kukur02",2;
			mes "[Cukure]";
			mes "With your assistance, we successfully completed our rudimentary study.";
			next;
			mes "[Cukure]";
			mes "From now on, we'll plan out our more advanced studies based on the information we now have on the godly artifacts.";
			next;
			mes "[Cukure]";
			mes "Now that things";
			mes "have slowed down";
			mes "a little...";
			next;
			mes "[Cukure]";
			mes "I can finally";
			mes "go on a date!";
			mes "Hahahahahaha~!";
			close2;
		}
	}
	else {
		if (god_sl_1 == 0) {
			cutin "god_kukur03",2;
			mes "[Cukure]";
			mes "I can't believe how busy I am at work nowadays. I don't even have time to see any of my friends or go shopping.";
			next;
			mes "[Cukure]";
			mes "Wait...!";
			mes "I can't even remember the last";
			mes "time I went out with a guy! At this rate, I might retire before I can find a boyfriend. Noooo, I'm still in my prime~!";
			emotion e_swt2;
			close2;
		}
		else if (god_sl_1 < 51) {
			mes "[Cukure]";
			mes "Ah, you've come back.";
			mes "I know you were going to help us, but someone already applied for the assistant position.";
			next;
			mes "[Cukure]";
			mes "Anyway, we've already finished our current research projects. Now, we're in the planning stages for the next projects we'll be conducting...";
			next;
			mes "[Cukure]";
			mes "Thank you anyway, though. I hope you will come and help us the next time we need assistance on our projects.";
			close2;
		}
		else {
			mes "[Cukure]";
			mes "Now that we've completed our rudimentary studies, we'll simply plan out our future research projects.";
			next;
			mes "[Cukure]";
			mes "Now that things";
			mes "have slowed down";
			mes "a little...";
			next;
			mes "[Cukure]";
			mes "I can finally";
			mes "go on a date!";
			mes "Hahahahahaha~!";
			close2;
		}
	}
	cutin "god_kukur01",255;
	end;
}

que_god01,66,125,6	script	Researcher#G1	4_M_ORIENT02,{
	if ($God1 < $@god_check2) {
		if (god_sl_1 == 2) {
			god_sl_1 = 11;
		}
		if ((god_sl_1 == 11) || (god_sl_1 == 22) || (god_sl_1 == 33) || (god_sl_1 == 44)) {
			if (god_sl_2 == 0) {
				mes "[Hallandaute]";
				mes "Ah, are you the one whom Ms. Kirin referred? Yes, she said you were going to help me in my research.";
				next;
				mes "[Hallandaute]";
				mes "Frankly, we don't really need anyone who doesn't specialize";
				mes "in our field of study.";
				next;
				mes "[Hallandaute]";
				mes "But if you don't mind helping us out by doing little, menial tasks, then it'd probably bring some relief to our workload.";
				next;
				mes "[Hallandaute]";
				mes "Now...";
				mes "What would be";
				mes "a good job for you?";
				mes "Let me think...";
				next;
				mes "[Hallandaute]";
				mes "I got it!";
				mes "Why don't you go and visit ^FF0000Metto^000000 for me? Please bring me any news that he'd like to report.";
				next;
				mes "[Hallandaute]";
				mes "Since he's working on a project similar to mine, he might be in a position to help me. Metto lives in Juno, so you can easily find me.";
				god_sl_2 = 1;
				close;
			}
			else if (god_sl_2 == 1) {
				if (metto_q == 0) {
					mes "[Hallandaute]";
					mes "I guess you haven't found Metto yet. Although he might be a little over enthusiastic at times, he's not a bad guy at all.";
					next;
					mes "[Hallandaute]";
					mes "We've been friends for a long time after working in the same field for so long. I wonder how he's doing?";
					next;
					mes "[Hallandaute]";
					mes "Anyway, just ask him about any progress on his research. And if he happens to ask you for help, please lend him your assistance.";
					close;
				}
				else if (metto_q < 9) {
					mes "[Hallandaute]";
					mes "Hmmm...";
					mes "So how's Metto?";
					mes "Hmm? It seems like";
					mes "he has changed...";
					close;
				}
				else {
					mes "[Hallandaute]";
					mes "Hmmm...";
					mes "So how's Metto?";
					next;
					mes "[Hallandaute]";
					mes "A mad scientist?";
					mes "That doesn't sound right. In my wildest dreams, I never would have suspected Metto of turning out that way...";
					emotion e_hmm;
					next;
					mes "[Hallandaute]";
					mes "Huh. That's...";
					mes "That's too bad. I don't know what to say. We used to go watch movies and celebrate our birthdays together. P-please give me a moment...";
					emotion e_dots;
					god_sl_2 = 2;
					close;
				}
			}
			else if (god_sl_2 == 2) {
				if (rand(1,10) == 7) {
					mes "[Hallandaute]";
					mes "Ah...";
					mes "You came back.";
					mes "Alright, let me give you the gist of what I'm researching.";
					next;
					mes "[Hallandaute]";
					mes "I'm trying to learn more about the '^FF0000Wheel of the Unknown^000000,' which was discovered to be a piece of the artifact known as ^FF0000Sleipnir^000000.";
					next;
					mes "[Hallandaute]";
					mes "It looks like";
					mes "a normal cogwheel...";
					mes "But I can't figure out how it's supposed to work.";
					next;
					mes "[Hallandaute]";
					mes "The most peculiar thing of all about this cogwheel is the metal";
					mes "of which it is composed.";
					next;
					mes "[Hallandaute]";
					mes "It looks and feels like steel,but extreme heat and cold don't affect it. It also cannot be dented by any kind of impact or force I can apply to it.";
					next;
					mes "[Hallandaute]";
					mes "Sometimes, I find that the Wheel of the Unknown resonates with certain objects, but I haven't got it to occur all of the time.";
					next;
					mes "[Hallandaute]";
					mes "I'm guessing that I'm missing some sort of special condition that will make the Wheel of the Unknown resonate with specific materials.";
					next;
					mes "[Hallandaute]";
					mes "Anyway, I thank you for helping me out earlier. That's basically all I needed, so please talk to the other researchers and see if they need any assistance.";
					god_sl_2 = 0;
					if (god_sl_1 == 11) {
						god_sl_1 = 12;
					}
					if (god_sl_1 == 22) {
						god_sl_1 = 23;
					}
					if (god_sl_1 == 33) {
						god_sl_1 = 34;
					}
					if (god_sl_1 == 44) {
						god_sl_1 = 50;
					}
					close;
				}
				else {
					mes "[Hallandaute]";
					mes "Oh, sorry.";
					mes "I'm quite busy compiling all of this information at the moment.";
					next;
					mes "[Hallandaute]";
					mes "Let's see...";
					mes "Now how would I...";
					mes "^333333*Mumble mumble*^000000";
					close;
				}
			}
			else {
				mes "[Hallandaute]";
				mes "Hmmm...";
				mes "How does this work?";
				mes "There's still too much we don't know about the godly artifacts. ^333333*Sigh*^000000";
				close;
			}
		}
		else {
			mes "[Hallandaute]";
			mes "It's not easy, working on this alone. Having an extra pair of hands is always good.";
			next;
			mes "[Hallandaute]";
			mes "Right now, I just need someone with whom I can share the workload. Still, different assistants might be better depending on the project.";
			next;
			mes "[Hallandaute]";
			mes "Basically, if an assistant is especially trained in the field related to my current research project, he'll probably be more useful than someone who's not.";
			next;
			mes "[Hallandaute]";
			mes "Of course, there are people who are good at everything. But since those are rare, I try to choose just the right assistant for each of my projects.";
			close;
		}
	}
	else {
		mes "[Hallandaute]";
		mes "It's not easy, working on this alone. Having an extra pair of hands is always good.";
		next;
		mes "[Hallandaute]";
		mes "Right now, I just need someone with whom I can share the workload. Still, different assistants might be better depending on the project.";
		next;
		mes "[Hallandaute]";
		mes "Basically, if an assistant is especially trained in the field related to my current research project, he'll probably be more useful than someone who's not.";
		next;
		mes "[Hallandaute]";
		mes "Of course, there are people who are good at everything. But since those are rare, I try to choose just the right assistant for each of my projects.";
		close;
	}
}

que_god01,11,136,6	script	Researcher#G2	2_M_SAGE_B,{
	if ($God1 < $@god_check2) {
		if (god_sl_1 == 2) {
			god_sl_1 = 21;
		}
		if ((god_sl_1 == 21) || (god_sl_1 == 32) || (god_sl_1 == 43) || (god_sl_1 == 14)) {
			if (god_sl_2 == 0) {
				mes "[Aadin]";
				mes "^333333*Yawn~*^000000";
				mes "Hmmmmm?";
				mes "Ah...";
				next;
				mes "[Aadin]";
				mes "Nice to meet you.";
				mes "You're the temporary assistant, right? That's great, all of us are having a hard time working";
				mes "without much help.";
				next;
				mes "[Aadin]";
				mes "Okay...";
				mes "Let me explain";
				mes "to you the project";
				mes "that I'm working on.";
				next;
				mes "[Aadin]";
				mes "I'm trying to find out everything I can about the '^FF0000Feather of Angel Wing^000000.' Supposedly, it's one of";
				mes "the parts of 'Sleipnir.'";
				next;
				mes "[Aadin]";
				mes "Right now, I'm";
				mes "focusing on studying";
				mes "the background story of this feather, as well as how it came";
				mes "to be a material for a godly artifact.";
				next;
				mes "[Aadin]";
				mes "I was recently told that there is a person in Payon who actually knows this story. Very few people in the world are privy to having such knowledge.";
				next;
				mes "[Aadin]";
				mes "Now, we don't have enough";
				mes "staff for me to send someone to Payon. Also, I don't feel safe taking this feather around with me.";
				next;
				mes "[Aadin]";
				mes "It shouldn't be that difficult to find the person who knows about Sleipnir's origin. However, you must memorize every single";
				mes "word of the story.";
				next;
				mes "[Aadin]";
				mes "The results of this research could be affected by the words you deliver to me.";
				next;
				mes "[Aadin]";
				mes "Thank you for the trouble.";
				mes "There's no real time limit for this task, but the sooner you complete it, the better.";
				next;
				mes "[Aadin]";
				mes "Have a safe trip~";
				god_sl_2 = 1;
				close;
			}
			else if (god_sl_2 == 1) {
				mes "[Aadin]";
				mes "Mmm...?";
				mes "You haven't left for Payon yet to find the man who knows of Sleipnir's origin?";
				next;
				mes "[Aadin]";
				mes "Please leave for";
				mes "Payon as soon as";
				mes "possible so that I can get the information that I need for my research. Thank you, and have";
				mes "a safe trip.";
				close;
			}
			else if (god_sl_2 == 2) {
				mes "[Aadin]";
				mes "Ah, you're back. So have you memorized the story?";
				next;
				mes "[Aadin]";
				mes "I know it'd be much easier if this tale was already written, but you must understand that many stories regarding the gods are only orally transmitted.";
				next;
				mes "[Aadin]";
				mes "Alright,";
				mes "I'm listening.";
				mes "Please let me";
				mes "know what you've learned.";
				next;
				mes "[Aadin]";
				mes "...";
				mes "......";
				next;
				mes "[Aadin]";
				mes "...";
				mes "......";
				mes ".........";
				next;
				mes "[Aadin]";
				mes "...";
				mes "......";
				mes ".........";
				mes "............";
				next;
				mes "[Aadin]";
				mes "Hmm, I see.";
				mes "Fascinating.";
				mes "However, I'm sure";
				mes "you've missed some";
				mes "important detail.";
				next;
				mes "[Aadin]";
				mes "Are you sure you've listened to the tale in its entirety? I'm sorry to ask this of you, but would you go to Payon and listen to this story once more?";
				god_sl_2 = 3;
				close;
			}
			else if (god_sl_2 == 3) {
				mes "[Aadin]";
				mes "Mm...?";
				mes "You haven't left";
				mes "for Payon yet...?";
				mes "I hope you can";
				mes "tell me the rest";
				mes "of the story soon.";
				next;
				mes "[Aadin]";
				mes "In the meantime, I will try to complete as much of my research";
				mes "as I can with the story details that you've already brought.";
				close;
			}
			else if (god_sl_2 == 4) {
				mes "[Aadin]";
				mes "Ah, you're back.";
				mes "So have you";
				mes "memorized the story?";
				next;
				mes "[Aadin]";
				mes "I know it'd be much easier if this tale was already written, but you must understand that many stories regarding the gods are only orally transmitted.";
				next;
				mes "[Aadin]";
				mes "Alright,";
				mes "I'm listening.";
				mes "Please let me";
				mes "know what you've learned.";
				next;
				mes "[Aadin]";
				mes "...";
				mes "......";
				next;
				mes "[Aadin]";
				mes "...";
				mes "......";
				mes ".........";
				next;
				mes "[Aadin]";
				mes "...";
				mes "......";
				mes ".........";
				mes "............";
				next;
				mes "[Aadin]";
				mes "Hmm, I see.";
				mes "Fascinating.";
				mes "you've missed some";
				mes "important detail.";
				next;
				switch(select("Well, um...", "Impossible!")) {
				case 1:
					mes "[Aadin]";
					mes "Hmm.";
					mes "No, wait...";
					mes "That was the";
					mes "complete story.";
					mes "My apologies~";
					break;
				case 2:
					mes "[Aadin]";
					mes "Ah~";
					mes "I stand corrected.";
					mes "Thank you for pointing";
					mes "out my error in judgment.";
					break;
				}
				next;
				mes "[Aadin]";
				mes "Yes, it seems that the story you've just told me should be authentic. Of course, it's understandable if little changes are made, depending on the storyteller.";
				next;
				mes "[Aadin]";
				mes "Surely, I'll be able to answer some of my most important questions with the information you've brought to me, though it still won't be easy.";
				next;
				mes "[Aadin]";
				mes "After all, finding answers tends to cause new questions to arise. Nonetheless, I thank you for your help.";
				god_sl_2 = 0;
				if (god_sl_1 == 21) {
					god_sl_1 = 22;
				}
				if (god_sl_1 == 32) {
					god_sl_1 = 33;
				}
				if (god_sl_1 == 43) {
					god_sl_1 = 44;
				}
				if (god_sl_1 == 14) {
					god_sl_1 = 50;
				}
				close;
			}
		}
		else {
			mes "[Aadin]";
			mes "Sometimes, different versions of the same myth or legend arise.";
			next;
			mes "[Aadin]";
			mes "Although myths, as they change with time, may conflict with each other, the fundamental basis of these stories is what makes them timeless.";
			close;
		}
	}
	else {
		mes "[Aadin]";
		mes "Sometimes, different versions of the same myth or legend arise.";
		next;
		mes "[Aadin]";
		mes "Although myths, as they change with time, may conflict with each other, the fundamental basis of these stories is what makes them timeless.";
		close;
	}
}

que_god01,55,47,3	script	Researcher#G3	1_F_SIGNZISK,{
	if ($God1 < $@god_check2) {
		if (god_sl_1 == 2) {
			god_sl_1 = 31;
		}
		if ((god_sl_1 == 31) || (god_sl_1 == 42) || (god_sl_1 == 13) || (god_sl_1 == 24)) {
			if (god_sl_2 == 0) {
				mes "[Kurdt]";
				mes "Ah, you must be";
				mes "the new assistant.";
				mes "Pleased to meet you.";
				next;
				mes "[Kurdt]";
				mes "In all honesty, I was expecting someone with a bit more experience in the field of research, but it's understandable.";
				next;
				mes "[Kurdt]";
				mes "After all, we're not in the position to expect professional assistance. In any case, I believe you'll bring a new perspective to our work.";
				next;
				mes "[Kurdt]";
				mes "I've almost completed my project and don't need too much in the way of manpower. However, the last task I need finished is difficult.";
				next;
				mes "[Kurdt]";
				mes "I was thinking of using my own funds to hire an outside agency, but there's no need to do that now that you're here~";
				next;
				mes "[Kurdt]";
				mes "What I'd like to ask you to do is to gather materials so that I can create the 'Spirit of Fish.'";
				next;
				mes "[Kurdt]";
				mes "I'm not sure if I can actually produce it or not, but we can at least give this experiment a try.";
				next;
				mes "[Kurdt]";
				mes "Basically, you and collect things like 'Fish Scales' or Fish Tails,' basically anything you can obtain from marine life.";
				next;
				mes "[Kurdt]";
				mes "I don't need a";
				mes "ridiculous amount of one";
				mes "kind of material, I'd say about 10 of one kind of each item should work. Give or take 5...";
				next;
				mes "[Kurdt]";
				mes "I should mention that I also require a good variety of marine related materials. You can't conduct an experiment without different objects to test, right?";
				next;
				mes "[Kurdt]";
				mes "Anyway, I hope you don't run into too much trouble finding what I need for this experiment. Good luck~";
				god_sl_2 = 1;
				close;
			}
			else if (god_sl_2 == 1) {
				mes "[Kurdt]";
				mes "Ah, you've returned.";
				mes "Okay, let me check";
				mes "what you brought to me. Hmm...";
				next;
				mes "[Kurdt]";
				mes "Ooh...";
				mes "I could use these.";
				mes "And these too. Oh!";
				mes "You adventurers carry";
				mes "a lot of things, don't you?";
				if (countitem(Sticky_Webfoot) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Heart_Of_Mermaid) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Fin) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Gill) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Rotten_Scale) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Nipper) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Conch) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Tentacle) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Sharp_Scale) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Crap_Shell) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Clam_Shell) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Flesh_Of_Clam) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Coral_Reef) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Lip_Of_Ancient_Fish) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Tooth_Of_Ancient_Fish) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Single_Cell) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Detonator) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Tendon) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Chinese_Ink) > 8) {
					++.@count_sl_1;
				}
				if (countitem(Fish_Tail) > 8) {
					++.@count_sl_1;
				}
				next;
				if (.@count_sl_1 > 14) {
					mes "[Kurdt]";
					mes "Ah....!";
					mes "The materials you have should be enough for me to conduct my experiment. Thank you so much.";
					next;
					mes "[Kurdt]";
					mes "With these, I can continue my research without any problem. I'm pleasantly surprised with the job you've done.";
					next;
					mes "[Kurdt]";
					mes "You really were";
					mes "such a great help.";
					mes "Thank you so much!";
					mes "Hahaha....!";
					next;
					mes "[Kurdt]";
					mes "Now, there may be";
					mes "other researchers";
					mes "who might need your help in completing their projects. Why don't you ask around to see if";
					mes "they need anything?";
					if (countitem(Sticky_Webfoot) > 8) {
						delitem Sticky_Webfoot,9;
					}
					if (countitem(Heart_Of_Mermaid) > 8) {
						delitem Heart_Of_Mermaid,9;
					}
					if (countitem(Fin) > 8) {
						delitem Fin,9;
					}
					if (countitem(Gill) > 8) {
						delitem Gill,9;
					}
					if (countitem(Rotten_Scale) > 8) {
						delitem Rotten_Scale,9;
					}
					if (countitem(Nipper) > 8) {
						delitem Nipper,9;
					}
					if (countitem(Conch) > 8) {
						delitem Conch,9;
					}
					if (countitem(Tentacle) > 8) {
						delitem Tentacle,9;
					}
					if (countitem(Sharp_Scale) > 8) {
						delitem Sharp_Scale,9;
					}
					if (countitem(Crap_Shell) > 8) {
						delitem Crap_Shell,9;
					}
					if (countitem(Clam_Shell) > 8) {
						delitem Clam_Shell,9;
					}
					if (countitem(Flesh_Of_Clam) > 8) {
						delitem Flesh_Of_Clam,9;
					}
					if (countitem(Fish_Tail) > 8) {
						delitem Fish_Tail,9;
					}
					if (countitem(Chinese_Ink) > 8) {
						delitem Chinese_Ink,9;
					}
					if (countitem(Tendon) > 8) {
						delitem Tendon,9;
					}
					if (countitem(Detonator) > 8) {
						delitem Detonator,9;
					}
					if (countitem(Single_Cell) > 8) {
						delitem Single_Cell,9;
					}
					if (countitem(Tooth_Of_Ancient_Fish) > 8) {
						delitem Tooth_Of_Ancient_Fish,9;
					}
					if (countitem(Lip_Of_Ancient_Fish) > 8) {
						delitem Lip_Of_Ancient_Fish,9;
					}
					if (countitem(Coral_Reef) > 8) {
						delitem Coral_Reef,9;
					}
					god_sl_2 = 0;
					if (god_sl_1 ==31) {
						god_sl_1 = 32;
					}
					if (god_sl_1 == 42) {
						god_sl_1 = 43;
					}
					if (god_sl_1 == 13) {
						god_sl_1 = 14;
					}
					if (god_sl_1 == 24) {
						god_sl_1 = 50;
					}
					close;
				}
				else {
					mes "[Kurdt]";
					mes "Still, you don't seem to have enough materials for me to";
					mes "complete my research";
					mes "Remember, I need";
					mes "a huge variety.";
					next;
					mes "[Kurdt]";
					mes "I'm sorry for the hassle, but do you think you could go out and collect things so that I can attempt to recreate the";
					mes "'Spirit of Fish?'";
					close;
				}
			}
		}
		else {
			mes "[Kurdt]";
			mes "Hmmm....";
			mes "Funds and";
			mes "manpower are";
			mes "important for";
			mes "research to progress.";
			next;
			mes "[Kurdt]";
			mes "But no amount of financing or staffing can replace the value of enthusiasm and passion in conducting research.";
			next;
			mes "[Kurdt]";
			mes "Some financiers are so ignorant that they think that if they throw more money and people into a project, the secrets of science will be unlocked that much faster.";
			next;
			mes "[Kurdt]";
			mes "But if the people doing your research are unmotivated and uninspired, you'll never get anywhere.";
			close;
		}
	}
	else {
		mes "[Kurdt]";
		mes "Hmmm....";
		mes "Funds and";
		mes "manpower are";
		mes "important for";
		mes "research to progress.";
		next;
		mes "[Kurdt]";
		mes "But no amount of financing or staffing can replace the value of enthusiasm and passion in conducting research.";
		next;
		mes "[Kurdt]";
		mes "Some financiers are so ignorant that they think that if they throw more money and people into a project, the secrets of science will be unlocked that much faster.";
		next;
		mes "[Kurdt]";
		mes "But if the people doing your research are unmotivated and uninspired, you'll never get anywhere.";
		close;
	}
}

que_god01,14,47,3	script	Researcher#G4	4_M_06,{
	if ($God1 < $@god_check2) {
		if (god_sl_1 == 2) {
			god_sl_1 = 41;
		}
		if ((god_sl_1 == 41) || (god_sl_1 == 12) || (god_sl_1 == 23) || (god_sl_1 == 34)) {
			if (god_sl_2 == 0) {
				mes "[Pavel]";
				mes "^333333*Sniff sniff*...";
				mes "*Achoo!*^000000 Huh?";
				mes "Who are you?";
				next;
				mes "[Pavel]";
				mes "Oh, sorry.";
				mes "You must be the new assistan--^333333*Aaachoo!^000000 Ehhm, ^333333*Sniff sniff*^000000 I'm sorry. As you can see, I'm feeling a little bit under the weather.";
				next;
				mes "[Pavel]";
				mes "It's good to know that you're help to help me. But ^333333*Achoooo! Sniff Sniff*^000000";
				next;
				mes "[Pavel]";
				mes "Anyway, go look at --^333333*Aaachooo!*^000000 that ^333333*Achoooo!*^000000 thing... ^333333*Sniff sniff*^000000";
				god_sl_2 = 1;
				close;
			}
			else if (god_sl_2 == 1) {
				mes "[Pavel]";
				mes "I told you to go look at-- ^333333*Aaachhoooo!*^000000 that ^333333*Aaachoooo! Achoo! glhk glhk*^000000";
				close;
			}
			else if (god_sl_2 == 2) {
				mes "[Pavel]";
				mes "^333333*Cough cough*";
				mes "*Sniff sniff...*^000000";
				mes "So did you take a look at it? Yeah, I don't think you'd understand, even if you saw it. ^333333*glhk glhk*^000000";
				next;
				mes "[Pavel]";
				mes "^333333*AAAAACHHHOOO!*^000000";
				mes "That slab of stone, no wait, ^333333*Achoo!*^000000 the letters engraved on that thing are ancien--^333333*Achoo!*^000000 language is no longer used nowadays.";
				next;
				mes "[Pavel]";
				mes "I can't ^333333*glhk glhk*^000000 tell what ancient languag-- ^333333*Achoo!*^000000 it is, so... Hmm...";
				next;
				mes "[Pavel]";
				mes "Considering ^333333*Achoo! Sniff sniff*^000000 the material used for the slab isn't ^333333*Sniff*^000000 ordinary stone, there must be some kind of device installed in it? ^333333*Cough*^000000";
				next;
				mes "[Pavel]";
				mes "Not only that ^333333*Sniff sniff* letters are not just engraved. ^333333*AAAACHOO!*^000000 Something covers the ^333333*Cough*^000000 surface.";
				next;
				mes "[Pavel]";
				mes "I must ^333333*Cough cough*^000000 remove the device for so that I can ^333333*Cough cough*^000000 investigate this further ^333333*Sniff*^000000 Butjust look at me. I'm a wreck. I can't even ^333333*AAAACHOO!*^000000 ...talk.";
				next;
				mes "[Pavel]";
				mes "^333333*Sniff sniff*^000000";
				mes "So I hope you don't mind ^333333*Achoo!*^000000 helping me remove ^333333*Cough*^000000 the device. Thank you so much. ^333333*Sniff*^000000";
				god_sl_2 = 3;
				close;
			}
			else if (god_sl_2 == 3) {
				mes "[Pavel]";
				mes "^333333Aaaaaccccchhhhoooo...!*^000000";
				mes "Um, what I meant to say w--^333333AAAACHOOO!*^000000";
				mes "^333333*Sniff sniff...*^000000";
				close;
			}
			else if (god_sl_2 == 4) {
				mes "[Pavel]";
				mes "^333333*Cough*^000000";
				mes "Oh... ^333333*Sniff*^000000";
				mes "Now I see...";
				mes "^333333*glhk glhk*^000000";
				next;
				mes "[Pavel]";
				mes "I was~ ^333333*Achoo!*^000000 right, ^333333*Achoo!*^000000 Something was installed in the sl-^333333*Cough*^000000 slab. I couldn't look at it myself because of this damn ^333333*Cooooough c-c-cough*^000000 flu.";
				next;
				mes "[Pavel]";
				mes "Great job~";
				mes "You did some ^333333*Sniff*^000000 good work. Thank you so much for helping me. ^333333*Achoo! Achoo!*^000000";
				god_sl_2 = 0;
				if (god_sl_1 == 41) {
					god_sl_1 = 42;
				}
				if (god_sl_1 == 12) {
					god_sl_1 = 13;
				}
				if (god_sl_1 == 23) {
					god_sl_1 = 24;
				}
				if (god_sl_1 == 34) {
					god_sl_1 = 50;
				}
				close;
			}
		}
		else {
			mes "[Pavel]";
			mes "Whether or not we can actually detect or sense spirits isn't as important as first proving their existence.";
			close2;
		}
	}
	else {
		mes "[Pavel]";
		mes "Whether or not we can actually detect or sense spirits isn't as important as first proving their existence.";
		close2;
	}
}

que_god01,20,48,0	script	Slab#G	HIDDEN_NPC,{
	if ($God1 < $@god_check2) {
		if ((god_sl_1 == 41) || (god_sl_1 == 12) || (god_sl_1 == 23) || (god_sl_1 == 34)) {
			if ((god_sl_2 == 1) || (god_sl_2 == 2)) {
				mes "....whgks ^ff00ffdirdnl^000000sjs wkrdjswhgks whdtnfb";
				mes "............djswhgks wkdusdnlrnlfn";
				mes ".......whsjs rhf tk dmqsjs rj ehddjfn";
				mes "wkdusgks ^ff00fftkaryf^000000dnl durjfflrhsjs wkrdjswhgks ......";
				mes "wkrdjswhgks shfh wkrdjswhgks wkdus wkr...";
				mes "^ff00ffghswka^000000gks ........fusjs tmld.........";
				god_sl_2 = 2;
				next;
				mes "^3355FFThere is some writing engraved on this slab of stone. Since you can't read it and the stone looks weathered with time, it seems to be written in an ancient language.^000000";
				next;
				mes "^3355FFUpon touching the slab's surface, you feel that it is surprisingly warm. Perhaps there is more to this slab than meets the eye.^000000";
				close;
			}
			else if (god_sl_2 == 3) {
				mes "....whgks ^ff00ffdirdnl^000000sjs wkrdjswhgks whdtnfn";
				mes "............djswhgks wkdusdnlrnlfn";
				mes ".......whsjs rhf tk dmqsjs rj ehddjfn";
				mes "wkdusgks ^ff00fftkaryf^000000dnl durjfflrhsjs wkrdjswhgks ......";
				mes "wkrdjswhgks shfh wkrdjswhgks wkdus wkr...";
				mes "^ff00ffghswka^000000gks.........fusjs tmld.........";
				next;
				mes "^3355FFUpon taking a closer look at the stone slab, you see that there are small devices in the crevices of each engraved letter in one of the words.";
				next;
				mes "....whgks ^ff00ffdirdnl^000000sjs wkrdjswhgks whdtnfb";
				mes "............djswhgks wkdusdnlrnlfn";
				mes ".......whsjs rhf tk dmqsjs rj ehddjfn";
				mes "wkdusgks ^ff00fftkaryf^000000dnl durjfflrhsjs wkrdjswhgks ......";
				mes "wkrdjswhgks shfh wkrdjswhgks wkdus wkr...";
				mes "^ff00ffghswka^000000gks ........fusjs tmld.........";
				next;
				input(.@input$);
				if (.@input$ == "dirdnl") {
					mes "Zap~";
					mes "^3355FFAs you press the word '^ff0000dirdnl^3355FF,' the slab emitted a strange beeping noise but nothing else happened. Perhaps you must press some of the other words.^000000";
					next;
					mes "....whgks ^ff00ffdirdnl^000000sjs wkrdjswhgks whdtnfb";
					mes "............djswhgks wkdusdnlrnlfn";
					mes ".......whsjs rhf tk dmqsjs rj ehddjfn";
					mes "wkdusgks ^ff00fftkaryf^000000dnl durjfflrhsjs wkrdjswhgks ......";
					mes "wkrdjswhgks shfh wkrdjswhgks wkdus wkr...";
					mes "^ff00ffghswka^000000gks ........fusjs tmld.........";
					next;
				}
				else {
					mes "^3355FFNothing happened.";
					mes "Perhaps that word";
					mes "is not on the slab.^000000";
					close;
				}
				input(.@input$);
				if (.@input$ == "tkaryf") {
					mes "^3355FFYou press the word '^ff0000tkaryf^3355FF,' and another beep was emitted from";
					mes "the slab.^000000";
					next;
					mes "....whgks ^ff00ffdirdnl^000000sjs wkrdjswhgks whdtnfb";
					mes "............djswhgks wkdusdnlrnlfn";
					mes ".......whsjs rhf tk dmqsjs rj ehddjfn";
					mes "wkdusgks ^ff00fftkaryf^000000dnl durjfflrhsjs wkrdjswhgks ......";
					mes "wkrdjswhgks shfh wkrdjswhgks wkdus wkr...";
					mes "^ff00ffghswka^000000gks ........fusjs tmld.........";
					next;
				}
				else {
					mes "^3355FFNothing happened.";
					mes "Perhaps that word";
					mes "is not on the slab.^000000";
					close;
				}
				input(.@input$);
				if (.@input$ == "ghswka") {
					mes "^3355FFYou press on the word '^ff0000ghswka^3355FF,' resulting in an affirmative beep. Nothing has still happened, so perhaps you must press another word.^000000";
					next;
					mes "....whgks ^ff00ffdirdnl^000000sjs wkrdjswhgks whdtnfb";
					mes "............djswhgks wkdusdnlrnlfn";
					mes ".......whsjs rhf tk dmqsjs rj ehddjfn";
					mes "wkdusgks ^ff00fftkaryf^000000dnl durjfflrhsjs wkrdjswhgks ......";
					mes "wkrdjswhgks shfh wkrdjswhgks wkdus wkr...";
					mes "^ff00ffghswka^000000gks ........fusjs tmld.........";
					next;
				}
				else {
					mes "You touched a word ^ff0000"+.@input+"^000000, nothing happened.";
					mes "You decided to think up something different.";
					close;
				}
				mes "^666666*Eeeeeeeeee~*^000000";
				next;
				mes "^3355FFThe slab began";
				mes "to vibrate and the";
				mes "engraved letters slowly";
				mes "disappeared, revealing";
				mes "a new set of words underneath.^000000";
				next;
				mes "wkrdjswhgks dirdnlsjs wkrdjswhgks whdtnfh";
				mes "wkrdjswhgks dldgnsdjs wkrdjswhgks wkdusdnlrnlfn";
				mes "thfdh duTsjswhsjs rhf tk dmqsjs rj ehddjfn";
				mes "wkdusgks tkaryfdnl durjfflrhsjs wkrdjswhgks tkatnfu";
				mes "wkrdjswhgks shfh wkrdjswhgks wkdus wkrdjswhgks dldgns";
				mes "ghswkagks tkatnfusjs tmldaldgks akrnl";
				next;
				mes "^3355FFYou still don't";
				mes "understand what is";
				mes "written on the slab.^000000";
				god_sl_2 = 4;
				next;
				mes "After a while, the original engraving on the slab re-appeared, once again concealing the writing underneath. It seems you can only reveal the hidden letters temporarily.";
				close;
			}
			else {
				mes "....whgks dirdnlsjs wkrdjswhgks whdtnfn";
				mes "............djswhgks wkdusdnlrnlfn";
				mes ".......whsjs rhf tk dmqsjs rj ehddjfn";
				mes "wkdusgks tkaryfdnl durjfflrhsjs wkrdjswhgks ......";
				mes "wkrdjswhgks shfh wkrdjswhgks wkdus wkr...";
				mes "ghswkagks .........fusjs tmld.........";
				next;
				mes "^3355FFThis slab of stone has been weathered with time, and its surface is engraved with writing from a strange language.^000000";
				next;
				mes "^3355FFStrangely enough, the surface of the stone is emitting heat.^000000";
				close;
			}
		}
		else {
			mes "....whgks dirdnlsjs wkrdjswhgks whdtnfn";
			mes "............djswhgks wkdusdnlrnlfn";
			mes ".......whsjs rhf tk dmqsjs rj ehddjfn";
			mes "wkdusgks tkaryfdnl durjfflrhsjs wkrdjswhgks ......";
			mes "wkrdjswhgks shfh wkrdjswhgks wkdus wkr...";
			mes "ghswkagks .........fusjs tmld.........";
			next;
			mes "^3355FFThere is some writing engraved on this slab of stone. Since you can't read it and the stone looks weathered with time, it seems to be written in an ancient language.^000000";
			next;
			mes "^3355FFUpon touching the slab's surface, you feel that it is surprisingly warm. Perhaps there is more to this slab than meets the eye.^000000";
			close;
		}
	}
	else {
		mes "^3355FFThere is some writing engraved on this slab of stone. Since you can't read it and the stone looks weathered with time, it seems to be written in an ancient language.^000000";
		close;
	}
}

payon,79,171,4	script	Friar#G5	4_F_SISTER,{
	if ($God1 < $@god_check2) {
		if ((god_sl_1 == 21) || (god_sl_1 == 32) || (god_sl_1 == 43) || (god_sl_1 == 14)) {
			if ((god_sl_2 == 1) || (god_sl_2 == 3)) {
				mes "[Lania]";
				mes "No matter how old the stories are, you can always find good advice in folk tales and legends.";
				next;
				mes "[Lania]";
				mes "Despite the passing of time and mankind's progression, certain fundamentals of life are timeless and will never change.";
				next;
				switch(select("Umm...", "I see.")) {
				case 1:
					mes "[Lania]";
					mes "Hmm...?";
					mes "Do you need";
					mes "anything from me?";
					mes "I will try to help";
					mes "you as much as I can.";
					next;
					mes "[Lania]";
					mes "I believe that it's no use having ability or power unless you use that power for the right purposes.";
					next;
					switch(select("Oh no, that's okay.", "Sleipnir's story.")) {
					case 1:
						mes "[Lania]";
						mes "I must have";
						mes "misunderstood me.";
						mes "However, feel free";
						mes "to ask me for help";
						mes "if you ever need it.";
						next;
						mes "[Lania]";
						mes "I consider helping others as special training for my spiritual improvement. I hope that you will act with kindness and generosity towards others as well.";
						close;
					case 2:
						mes "[Lania]";
						mes "Ah, I see.";
						mes "I can tell you what I know about Sleipnir. Let's see now if I can remember everything about it.";
						next;
						mes "[Lania]";
						mes "Ah yes.";
						mes "I remember it now.";
						mes "Yes, Sleipnir was the";
						mes "name of Odin's stallion.";
						next;
						mes "[Lania]";
						mes "In the world of";
						mes "gods, there were";
						mes "three legendary stallions: Sleipnir, Svadilfari and Gullfaxi.";
						next;
						mes "[Lania]";
						mes "Gullfaxi was owned by Hrungnir, the king of the giants. Svadilfari, the stallion that sired Sleipnir, was also owned by a giant.";
						next;
						mes "[Lania]";
						mes "Okay, now let's talk about how 'Sleipnir' was born. This story gives us a glimpse of the fallibility of gods and giants.";
						next;
						mes "[Lania]";
						mes "In Asgard, the realm of the gods, there was a huge protective rampart that was almost completely destroyed in a recent war.";
						next;
						mes "[Lania]";
						mes "However...";
						mes "Gods being gods,";
						mes "they were not eager";
						mes "to rebuild the walls";
						mes "themselves.";
						next;
						mes "[Lania]";
						mes "One day, a very";
						mes "skinny man rode on";
						mes "a dark horse and offered to rebuild, and even improve, the rampart protecting Asgard.";
						next;
						mes "[Lania]";
						mes "His offer was tempting to the gods, who needed every protection from their enemies.";
						next;
						mes "[Lania]";
						mes "This man promised to rebuild";
						mes "the Asgardian rampart in only 18 months, but in return he wanted the goddess Freya as his wife, as well as ownership of the sun and the moon.";
						next;
						mes "[Lania]";
						mes "Now, this price was unreasonable for the gods to pay. The Asgardians were all insulted and angered by the stranger's demands. Still, they did want their rampart to be rebuilt.";
						next;
						mes "[Lania]";
						mes ".....";
						mes "Are you bored?";
						mes "If you are, we can";
						mes "finish this";
						mes "story later.";
						next;
						switch(select("Yeah, let's finish this later.", "No, please go ahead.")) {
						case 1:
							mes "[Lania]";
							mes "I understand that my story was not that interesting. But I will try my best to entertain you next time. Please travel in safety.";
							close;
						case 2:
							mes "[Lania]";
							mes "Oh alright.";
							mes "Then let me continue.";
							next;
							break;
						}
						mes "[Lania]";
						mes "The gods were furious with the stranger's ridiculous demands. However, Loki proposed to Odin";
						mes "that they should let the stranger rebuild their defensive walls.";
						next;
						mes "[Lania]";
						mes "Loki suggested that if the stranger could complete most of the rampart renovation, but later than as agreed, the gods would not be obligated to pay the stranger any price.";
						next;
						mes "[Lania]";
						mes "Odin decided to follow Loki's advice, and told the stranger that the wall must be repaired in 6 months, instead of 18 months as the stranger had proposed. He could receive help from no man.";
						next;
						mes "[Lania]";
						mes "In return, the stranger would be paid as he had asked if he could fulfill those conditions. Since he was just a man, it seemed impossible.";
						next;
						mes "[Lania]";
						mes "Hmmm...";
						mes "I know this story is quite long. Did you want to listen some more, or did you need a break?";
						next;
						switch(select("Let me take down some notes first.", "I need a break!", "No, please go ahead.")) {
						case 1:
							mes "[Lania]";
							mes "Ah....";
							mes "I understand this story is quite long. My apologies. Alright, I'll wait for you to finish writing your notes.";
							next;
							mes "...";
							mes "......";
							mes ".........";
							next;
							mes "...";
							mes "......";
							mes ".........";
							mes "............";
							next;
							mes "...";
							mes "......";
							mes ".........";
							mes "............";
							mes "...............";
							next;
							mes "...";
							mes "......";
							mes ".........";
							mes "............";
							mes "...............";
							mes "..................";
							next;
							mes "[Lania]";
							mes "May I continue the story now?";
							next;
							select("Yes, please.");
							mes "[Lania]";
							mes "Okay, now";
							mes "where was I?";
							next;
							break;
						case 2:
							mes "[Lania]";
							mes "I understand that the tale of Sleipnir is pretty long. But if you have the patience, I will try to relate this story to you another time. Farewell~";
							close;
						case 3:
							mes "[Lania]";
							mes "Oh good.";
							mes "Then please let me continue.";
							next;
							break;
						}
						mes "[Lania]";
						mes "Now, the stranger insisted that he be able to use his horse to help him do this reconstruction work. Since the horse was rather plain and simple looking, Odin agreed.";
						next;
						mes "[Lania]";
						mes "Odin didn't think";
						mes "twice about his";
						mes "request, and regretted this decision upon observing the stranger's first day of rebuilding the rampart.";
						next;
						mes "[Lania]";
						mes "Strangely enough, the stranger, using his horse to carry the materials, rebuilt the rampart at a speed that was inhuman.";
						next;
						mes "[Lania]";
						mes "This upset the gods, since the stranger was actually a mighty giant in disguise. However, this did not violate their agreement,";
						mes "so the gods could do nothing.";
						next;
						mes "[Lania]";
						mes "Although the stranger's skills were great, his horse greatly sped up the rampart reconstruction. This was the legendary magical horse, Svadilfari.";
						next;
						mes "[Lania]";
						mes "The gods grew more anxious as the wall would soon be completed before the alloted six months were up. The Asgardians soon grew very angry with Loki.";
						next;
						mes "[Lania]";
						mes "Despite this, Loki remained calm and assured the gods that he had a plan. The gods distrusted his craftiness, and grew desperate as the stranger's work speedily progressed.";
						next;
						mes "[Lania]";
						mes "Then, the reconstruction of the rampart suddenly halted. Both the gods and the stranger were equally surprised, as the horse Svadilfari was now missing.";
						next;
						mes "[Lania]";
						mes "The stranger would";
						mes "now need to continue";
						mes "his work by himself.";
						next;
						mes "[Lania]";
						mes "Hmmm...";
						mes "Are you still listening? If you're tired, I understand and we can";
						mes "stop for now.";
						next;
						switch(select("I'm so exhausted!", "No, please go ahead.")) {
						case 1:
							mes "[Lania]";
							mes "I know that this story might seem too long. But if you ever want to sit down and hear it again, I'll be glad to go over it again. Thank you for listening, adventurer.";
							close;
						case 2:
							mes "[Lania]";
							mes "Oh alright,";
							mes "I'll go on then.";
							next;
							break;
						}
						mes "[Lania]";
						mes "In their curiosity, the gods decided to investigate Savdilfari's disappearance. ";
						next;
						mes "[Lania]";
						mes "Surprisingly,";
						mes "they found that";
						mes "Svadilfari fell in love with a beautiful mare, which was why";
						mes "it did not work on the rampart.";
						next;
						mes "[Lania]";
						mes "So when the 6 months passed, the stranger almost finished rebuilding the Asgardian walls. Only the castle gate was left untouched.";
						next;
						mes "[Lania]";
						mes "The gods were happy to tell the stranger that they could not pay him what he requested, since he did not complete the rampart as originally agreed.";
						next;
						mes "[Lania]";
						mes "In his rage, the stranger accused the gods of tricking him so that they would not have to pay him with the sun, the moon and the beautiful goddess Freya. Then, he revealed his true identity.";
						next;
						mes "[Lania]";
						mes "He was a";
						mes "terrible frost giant,";
						mes "or Hrimthurs as they say.";
						next;
						mes "[Lania]";
						mes ".....";
						mes "Are you bored?";
						mes "If you are, we can";
						mes "talk about this";
						mes "later you know.";
						next;
						switch(select("I'm so bored~", "No, please go ahead.")) {
						case 1:
							mes "[Lania]";
							mes "I see. Well, stories are meant to be enjoyed and I suppose you're not in the mood to sit and listen.";
							next;
							mes "[Lania]";
							mes "But if you ever do want to hear about Sleipnir, feel free to visit me once again. Have a good day~";
							close;
						case 2:
							mes "[Lania]";
							mes "Oh, I'm glad~";
							mes "Some people would";
							mes "actually be sleeping";
							mes "after listening so long~";
							next;
							break;
						}
						mes "[Lania]";
						mes "Anyway...";
						mes "The stranger turned out";
						mes "to be a giant training in";
						mes "stone masonry. Although he was invading Asgard, the gods didn't worry.";
						next;
						mes "[Lania]";
						mes "Thor quickly killed the giant with his mighty hammer, Mjolnir, by hurling it at the giant's head, which exploded into a thousand pieces.";
						next;
						mes "[Lania]";
						mes "As for the horse, Svadilfari, it was nowhere to be found for";
						mes "a long, long time.";
						next;
						mes "[Lania]";
						mes ".....";
						mes "Are you bored?";
						mes "If you are, let's talk";
						mes "about this later.";
						next;
						switch(select("Let me take down some notes.", "See you later.", "No, please go ahead.")) {
						case 1:
							mes "[Lania]";
							mes "Ah....";
							mes "I see that you really want to keep track of every important detail!";
							next;
							mes "[Lania]";
							mes "My apologies, I'll wait for you to complete your notes then.";
							next;
							mes "...";
							mes "......";
							mes ".........";
							next;
							mes "...";
							mes "......";
							mes ".........";
							mes "............";
							next;
							mes "...";
							mes "......";
							mes ".........";
							mes "............";
							mes "...............";
							next;
							mes "...";
							mes "......";
							mes ".........";
							mes "............";
							mes "...............";
							mes "..................";
							next;
							mes "[Lania]";
							mes "May I continue the story now?";
							next;
							select("Yes, please.");
							mes "[Lania]";
							mes "Okay. Hmm...";
							mes "Now where was I?";
							next;
							break;
						case 2:
							mes "[Lania]";
							mes "Oh, I guess my story wasn't really that interesting. But if you want to listen to this story again, please come visit me again.";
							next;
							mes "[Lania]";
							mes "Okay then,";
							mes "travel safely~";
							close;
						case 3:
							mes "[Lania]";
							mes "Okay. Hmm...";
							mes "Now where was I?";
							next;
							break;
						}
						mes "[Lania]";
						mes "After a while, Loki, who looked tattered and worn out, brought a strange looking pony with eight legs to Asgard.";
						next;
						mes "[Lania]";
						mes "Loki introduced the pony as 'Sleipnir' and presented it to";
						mes "Odin as a present.";
						next;
						mes "[Lania]";
						mes "In actuality, Loki transformed into the mare that seduced Svadilfari so that it would no longer work on the rampart.";
						next;
						mes "[Lania]";
						mes "So 'Sleipnir' was born from the legendary mare Svadilfari, and the god Loki who transformed himself into a horse.";
						next;
						mes "[Lania]";
						mes "Now, stories that are spread through word of mouth might have differences in the small details, depending on who's telling the story.";
						next;
						mes "[Lania]";
						mes "Still, the fundamental story line should not be different.";
						next;
						mes "[Lania]";
						mes "I don't usually get to practice storytelling, and I'm not too confident of the authenticity of my version of Sleipnir's tale.";
						next;
						mes "[Lania]";
						mes "But I hope you will understand that I did my best. It was the most that I could do to help you.";
						next;
						mes "[Lania]";
						mes "If you wish to listen to this story again, you're always welcome.";
						mes "Be safe on your adventures~";
						if (god_sl_2 == 1) {
							god_sl_2 = 2;
						} else if (god_sl_2 == 3) {
							god_sl_2 = 4;
						}
						close;
					}
				case 2:
					mes "[Lania]";
					mes "In times of agony, please reflect on your past to help you find a solution.";
					next;
					mes "[Lania]";
					mes "Like the old myths and legends, your experiences are stories from which you can learn valuable lessons.";
					close;
				}
			}
			else {
				mes "[Lania]";
				mes "I told you everything I know. Hopefully, I was of some help to you. Please treat others with the same generosity and kindness.";
				close;
			}
		}
		else {
			mes "[Lania]";
			mes "Training isn't limited to just physical and mental conditioning.";
			next;
			mes "[Lania]";
			mes "The way you lead your life and interact with other people can also be considered part of your training.";
			next;
			mes "[Lania]";
			mes "Everyone will learn and benefit differently, depending on how they live their day to day lives.";
			close;
		}
	}
	else {
		mes "[Lania]";
		mes "Training isn't limited to just physical and mental conditioning.";
		next;
		mes "[Lania]";
		mes "The way you lead your life and interact with other people can also be considered part of your training.";
		next;
		mes "[Lania]";
		mes "Everyone will learn and benefit differently, depending on how they live their day to day lives.";
		close;
	}
}

que_god01,84,95,0	script	Switch#God0	HIDDEN_NPC,{
	if ((god_sl_1 > 1) && (god_sl_1 < 51)) {
		mes "^3355FFThe door is locked. You slide your temporary pass on the security device on the right side of the door, and the door unlocks.^000000";
		next;
		warp "que_god01",60,88;
		end;
	}
	else {
		mes "^3355FFThe door is locked.";
		mes "There is some";
		mes "sort of security device on the right side. It seems the device needs to detect some kind of";
		mes "pass before you can enter.^000000";
		close;
	}
}

que_god01,84,92,0	script	god_sl_w0	WARPNPC,1,1,{
OnTouch:
	if ((god_sl_1 > 1) && (god_sl_1 < 51)) {
		mes "^3355FFThe door is locked. You slide your temporary pass on the security device on the right side of the door, and the door unlocks.^000000";
		next;
		warp "que_god01",60,88;
		end;
	}
	else {
		mes "^3355FFThe door is locked. There is some sort of security device on the right side. It seems the device needs to detect some kind of pass before you can enter.^000000";
		close;
	}
}

que_god01,49,97,0	script	Switch#God1	HIDDEN_NPC,{
	if ((god_sl_1 > 1) && (god_sl_1 < 51)) {
		mes "^3355FFThe door is locked. You slide your temporary pass on the security device on the right side of the door, and the door unlocks.^000000";
		next;
		warp "que_god01",62,119;
		end;
	}
	else {
		mes "^3355FFThe door is locked. There is some sort of security device on the right side. It seems the device needs to detect some kind of pass before you can enter.^000000";
		close;
	}
}

que_god01,46,97,0	script	god_sl_w1	WARPNPC,1,1,{
OnTouch:
	if ((god_sl_1 > 1) && (god_sl_1 < 51)) {
		mes "^3355FFThe door is locked. You slide your temporary pass on the security device on the right side of the door, and the door unlocks.^000000";
		next;
		warp "que_god01",62,119;
		end;
	}
	else {
		mes "^3355FFThe door is locked. There is some sort of security device on the right side. It seems the device needs to detect some kind of pass before you can enter.^000000";
		close;
	}
}

que_god01,19,97,0	script	Switch#God2	HIDDEN_NPC,{
	if ((god_sl_1 > 1) && (god_sl_1 < 51)) {
		mes "^3355FFThe door is locked. You slide your temporary pass on the security device on the right side of the door, and the door unlocks.^000000";
		next;
		warp "que_god01",12,119;
		end;
	}
	else {
		mes "^3355FFThe door is locked. There is some sort of security device on the right side. It seems the device needs to detect some kind of pass before you can enter.^000000";
		close;
	}
}

que_god01,16,97,0	script	god_sl_w2	WARPNPC,1,1,{
OnTouch:
	if ((god_sl_1 > 1) && (god_sl_1 < 51)) {
		mes "^3355FFThe door is locked. You slide your temporary pass on the security device on the right side of the door, and the door unlocks.^000000";
		next;
		warp "que_god01",12,119;
		end;
	}
	else {
		mes "^3355FFThe door is locked. There is some sort of security device on the right side. It seems the device needs to detect some kind of pass before you can enter.^000000";
		close;
	}
}

que_god01,14,80,0	script	Switch#God3	HIDDEN_NPC,{
	if ((god_sl_1 > 1) && (god_sl_1 < 51)) {
		mes "^3355FFThe door is locked. You slide your temporary pass on the security device on the right side of the door, and the door unlocks.^000000";
		next;
		warp "que_god01",12,52;
		end;
	}
	else {
		mes "^3355FFThe door is locked. There is some sort of security device on the right side. It seems the device needs to detect some kind of pass before you can enter.^000000";
		close;
	}
}

que_god01,17,80,0	script	god_sl_w3	WARPNPC,1,1,{
OnTouch:
	if ((god_sl_1 > 1) && (god_sl_1 < 51)) {
		mes "^3355FFThe door is locked. You slide your temporary pass on the security device on the right side of the door, and the door unlocks.^000000";
		next;
		warp "que_god01",12,52;
		end;
	}
	else {
		mes "^3355FFThe door is locked. There is some sort of security device on the right side. It seems the device needs to detect some kind of pass before you can enter.^000000";
		close;
	}
}

que_god01,44,80,0	script	Switch#God4	HIDDEN_NPC,{
	if ((god_sl_1 > 1) && (god_sl_1 < 51)) {
		mes "^3355FFThe door is locked. You slide your temporary pass on the security device on the right side of the door, and the door unlocks.^000000";
		next;
		warp "que_god01",50,52;
		end;
	}
	else {
		mes "^3355FFThe door is locked. There is some sort of security device on the right side. It seems the device needs to detect some kind of pass before you can enter.^000000";
		close;
	}
}

que_god01,47,80,0	script	god_sl_w4	WARPNPC,1,1,{
OnTouch:
	if ((god_sl_1 > 1) && (god_sl_1 < 51)) {
		mes "^3355FFThe door is locked. You slide your temporary pass on the security device on the right side of the door, and the door unlocks.^000000";
		next;
		warp "que_god01",50,52;
		end;
	}
	else {
		mes "^3355FFThe door is locked. There is some sort of security device on the right side. It seems the device needs to detect some kind of pass before you can enter.^000000";
		close;
	}
}