-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQUEST_UNUSED.txt
More file actions
3272 lines (3272 loc) · 282 KB
/
QUEST_UNUSED.txt
File metadata and controls
3272 lines (3272 loc) · 282 KB
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
A ha, you're on your way to see Master Pardoner. I wish you luck.
Note the long way Hashipusho.
So. Korezo. Pardoner does not allow you to introductory. Sound fall that silver was Like this donation was bought {nl} indulgences leads to our salvation. {nl} wealth also, that it be noted that it is a great blessing of goddess.
Pardoner be viewed back to your master Te. {nl} if had the fire pot looking for a very long time.
Gatekeeper Owl Sculpture
Or Tesla-like has created us by cutting the tree. {nl} So, we owl, you always say want to return the favor. {nl}
So I what is. You may ask. Would you like Tesla electrolysis collected sculpture of marble from {nl} Cathedral?
If marble of the cathedral, but it likes Tesla-like?
If it were a gift of owl image {nl} the babe, but evidence for my life. {nl}
Anyway .. What seemed happy visitor comes something today, I will Hey drawing.
When I saw the first time in your Klaipeda, it was thought to be whether the delicate arm sword Ya can shake. {nl} But, now I became a hero in the hero that many people praise. {nl}
However, I want to make sure your courage directly. banshee {nl} covers the evil aura the dark forest. You are not a proper challenge harder ones.
Isolation. Just merely hunting. In {nl}, Itogetone waiting on the Klaipeda.
Have been. Was waiting. {nl} would be given a reward worthy of your container if this degree.
Hehe, I'm really enthusiastic. {nl} I remembered when you were still convergence wizard. Then also you were really enthusiastic. {nl}
Now I want to know you grew how. If {nl} banshee et al defile the forest, do not you to the appropriate challenge?
Rather than test, it is considered to be a good thing. In {nl}, and later also met at the Klaipeda.
Yes, brilliantly Hatchiu~otone. and {nl} is a what kind of figure is when the next meet, further anxious?
Plate when you saw the first time, I wonder not die immediately parser too stand up. I thought. {nl} now I think that it has become more famous than me. {nl}
You will really try to the will bet described meets applied to its reputation. {nl} it is to exterminate all the nasty banshee covering this forest. How is it?
What so I'm going important that actually bet. I met me is, it is not more important. In {nl}, waiting on the Klaipeda.
Have been. You really've got to impress me. {nl} Do you accept now expect a more grown-up appearance?
I think it 's assume is filled with the grace of the goddess than when you first came to the Klaipeda. {nl} I want to know your faith is how deep. {nl}
Of course, it is not the same thing Let again in an abstract standard. {nl} and I drive off the banshee that bring the evil aura in this forest in the name of the goddess.
Goddess less our enemy and we do not have differences. In {nl}, I will see you on the Klaipeda.
I'm was Mashi Oh. You showed great faith. {nl} and I gave me also my great inspiration. {nl} This is do my little castle. By all means, please write in the correct thing.
Previous quiet here there is no time temporarily or quiet now monsters.
If you leave only my monster, it is to find and attack the soul that gather here.
People are now better Denis mood decreased even a little.
People has decided to let buried the remains of family here. {nl} now it has been left on the land for uncovering monster all.
Here is time that that was heard little by little sad cries of bereaved family was... the best of times.
Although relics you have not met yet is large, even look but I think that was good.
Image of other owl has come back soul must be India. {nl} that a problem has occurred in the vicinity of the barrier is clear.
What might, but I feel that we are only in something
It 's was Demon still. {nl} Here people the tranquility in had defiled.
Soul fled to the north might know the information about the person.
Lost Spirit
I you're alive. {nl} However, is never safe you.
Demon does not know what sniff, but ... my barrier, you need to open always.
I went to find an image of the owl at all of deeper. {nl} or we will help me be able to escape from here?
Monster we will chase it tries to absorb the soul. {nl} to do would steeped in evil forces getting caught caught in them.
Thank you very much! {nl} I can leave aiming this gap.
Regret many souls
I know. Soul went north before {nl} will not be able to get there. {nl} However, the length can go to the image of the other owl in the upper. {nl} for Sakmori our top of the hill, I do not Yes can go.
Monster Why chase us. {nl} It is painful. Also died ..
The word is it true? Nante clogged length of {nl}.
It is not ginger. {nl} once I let you know that the soul is where the opposite. {nl} There is one Proceeding north owl image. And try to go there.
I want to leave before that gather people again.
Sacred Owl Sculpture
I have been attacked following the de scan all vinegar was mutated from the other day. {nl} also my body that was made of wood If you leave this, you will be broken soon!
Yes not to want to create to wander me deposited obtained remains and soul again ...
It is unscrupulous people while small.
sad, but our image does not allow you to carry out the mission given now sculptor like. {nl} to be able to protect myself. {nl}
Soul responsible too many.
It is great!
Please proceed to the south. {nl} there will be a statue to go crack like me.
Gloomy Owl Sculpture
It is strange that living people come here. Do not look at the soul of {nl}, seems a few years have passed.
Thanks to you, the last few years you will be able to hold out.
monster you've witnessed is unreasonable of hollow vendor that drove into a corner us. {nl} in order to prevent the monsters, you will need to delete the empty owl. {nl} ne because herd of hollow vendor is using the trap. {nl} you need to make sure the image of the valley deep in the empty owl.
Soul will find the the owl. {nl} will cause bite into the empty owl. {nl} people soul knows very well the fact that get lost to find us
To that utilize a large number of image.
The soul who have been said, it was the place where the soul has been found our owl. The {nl} now, it would be filled with traps of hollow vendor unreasonable is installed. {nl} pitfalls of herd of hollow vendor will be the threat to anyone.
If soul you have lost the way, we will look for another soul. {nl} bright trap, I'm tempted so the soul.
I I have had a lot of pitfalls.
Hollow Venter is to such should be in the neighborhood of Yorusu~euru. {nl} It is strange.
Peripheral hollow vendors need to defeat a swarm of ants seems to display. {nl} If you do not come out, will must be drag.
Or Will the monster Where appeared?
If this does not come out. {nl} There is a idea.
Even this Nante does not come out a hollow Venter of key, there will be in the place where it was told to me always {nl}.
You will clearly represent the figure and you arrive.
This is the key .. barrier.
I open the front door with a key. {nl} there will be a soul of assistant who will lead the soul to the other side of the barrier. {nl} the soul might be able to help you.
Sometimes in the soul, there are those who serve and left to than receive India. The soul is such a category.
Guiding Spirit
Hello! {nl} Oh, I Are You to be folded alive.
I've already passed the time to receive India. However, I was not acquired absolutely. {nl} before you come, I is where you had to give up without a soul if unless assistance. {nl} Now go and please open the barrier. Please tell sure {nl} and toward the owl image here now and safety of!
Me? To my story, is often too circumstances ...
When getting rid of Demon, had its load is thought lost. {nl} I it was not. Thank you for opening the door.
Please listen to the advice in the soul of the assistant. {nl} get lost and need help to soul.
I troubled. The force is, also let's do if the Demon?
Oh, but I you say the soul. {nl} It has been lost in the place a high hill.
If visible, I will inform the direction of the machine. {nl} There dark slime a lot on the road in the visible. {nl} will clearly be a major threat to you.
Thing is for sure, it is never that it is not until the group. {nl} However, I looks very confusing.
Unknown Spirit
We owl was waiting for you. {nl} welcome.
So has around there or black. {nl} sculptor like is looking at this forest, How sad conviction.
It is also is a sore chest look only remains that are scattered in front of it.
Red Puragiga are threatening us. Please see that you walk around there {nl}.
And between which there is a black Sakmori .. you will not be able to pass through. {nl} is full of black Sakmori on top of the hill.
How to protect I was thinking. And but's ear {nl} Fisherman swallowed soul, DP will be felt. {nl} If Fisherman visited swallowed DP.
I wait for the owl image
The Silent Forest (1)
I'll get rid of the Black Zigri
The Silent Forest (2)
The remains of the Notice / soul I told weak owl image.
The Silent Forest (3)
We propose is to confirm the barrier
The Silent Forest (4)
To provide that the try to find the soul
Spiritual Poison (1)
I'll get rid of the Puragi
Spiritual Poison (2)
I'll get rid of the Black Sakamoli
Spiritual Poison (3)
To provide as try to check the owl image
Spiritual Poison (4)
Checking /MAKING/2.5/TRACK_BEFORE/None
Relief request of owl image
I'll get rid of the Desmodus
Demon soaked in the Woods (1)
We propose to give help
Demon soaked in the Woods (2)
We propose that the visit the owl image
Soul Hunter (1)
We propose is to confirm the owl image
Soul Hunter (2)
We propose that you want to remove the trap
Soul Hunter (3)
I'll get rid of the Hallowventers
Soul Hunter (4)
I'll get rid of the Hallowventer
Opening the Barrier (1)
Opening the Barrier (2)
I willing to talk of soul in owl image
The Wandering Soul (1)
The Wandering Soul (2)
I'll get rid of the Dark Slime
The Wandering Soul (3)
Attack of Biteregina
Attack of Werewolf
Notice /! / Please defeat Werewolf!
Ma was occupied the tower of wizard monarch
Grace of Wealth [Pardoner Advancement] (4)
Behind closed doors of secret
I'll take the bet
I accept the test
Positive of curiosity
I'll do it
I interact with weak owl image
Enter Top Grip Peak
Move to the Top Grip Peak
Defeat Black Zigri
I'll defeat the Black Zigri
The recovered the remains
Collect the urn boxes scattered throughout the entrance of Top Grip Peak
Check the soul of the barrier
Come back to make sure the soul of the barrier
Lost souls and conversation
To talk to the lost souls to climb along the north of the road
I will talk to the lost souls
Red plastic machine treatment
I do red plastic machine treatment
Regret many souls and conversation
I will talk to regret many souls
Defeat Black Sakmoli
I'll defeat the Black Sakmoli
Defeat Black Sakmoli
Check the Owl Sculpture
I'll check the Owl Sculpture
Defeat the surging monsters
I'll defeat the surging monsters
Talk with the Sacred Owl Sculpture
I'll talk to the Sacred Owl Sculpture
Defeat Desmodus
I'll defeat the Desmodus
Fisherman, and part recovery of DP
Fisherman, it has regained part of DP
Defeat Red Fisherman
Conversation with gloomy owl image
I interact with gloomy owl image
Check the empty owl image
I check the empty owl image
Pitfalls Delete soul
You want to delete by searching the pitfalls of soul
Load treatment of Necroventer
I will exterminate the load of Necroventer
Load treatment of soul of Hunter
Treatment of key keeper Hello vendor
I get the key to defeat key keeper Hello Venter
Key keeper
Load of hollow vendor
Soul and conversation of Assistant
I talk to the soul of the Assistant
I beat the monster to interfere
I have defeated the monster that interfere
Remnants extermination of Necroventer
Black slime extermination
I will defeat the black slime
Check the suspicious location
I confirm the suspected location
During the time limit, the defense of the region
I survive from between the time limit pounce monster attacks
Soul a conversation with unknown name
I will talk to the soul of unknown name
Monster extermination to block the road
Please defeat Biteregina
Defeat Biteregina
Werewolf appeared
Werewolf extermination that appeared suddenly
Werewolf extermination
Hamin treatment
Ma monarch search that occupied the tower of the wizard
Please find between monarch Helgasercle occupied the tower of the wizard.
Meet with the Item Merchant of Fedimian
Suddenly appeared Swordsman master and conversation
Somehow, Swordsman master noticed in front of you. Please try to divide the conversation.
Hidden Quest occurrence
A hidden quest has occurred. Defeat Banshee behind closed doors of Katyn.
The test of Swordsman master I was successfully completed. Please go find a Klaipeda of Swordsman master.
Banshee treatment
Suddenly appeared wizard master and conversation
Somehow, wizard master noticed in front of you. And try the conversation {nl}
Find Wizard Master
The test of the wizard master I was successfully completed. Please go find a Klaipeda of wizard master.
Archer Master and conversation that appeared suddenly
Somehow, I noticed bow master in front of you. Please try to divide the conversation.
A hidden quest has occurred. Defeat Banshee behind closed doors of Katyn
The master of the test of Archer I was successfully completed. Please go to find a Klaipeda of Archer of master.
Cleric master and conversation that appeared suddenly
Somehow, Cleric master noticed in front of you. Please try to divide the conversation.
The test of Cleric master I was successfully completed. Please go find a Klaipeda of Cleric master.
Gatekeeper owl is good to examine you. Please try to talk to the gatekeeper owl.
Available from the Cathedral of marble sculpture
Words owl image of gatekeeper owl, and you want to give back to the sculptor Tesla. Please obtain a sculpture of marble from the Cathedral of monsters.
Marble sculpture transferred to the sculptor Tesla
You have collected enough marble parts. Deliver them to sculptor Tesla in Rhombuspaving Dale.
Enter Kule Peak
Move to Kule Peak
Collect the Remains' boxes that are scattered across Kule Peak
It seems that you've collected enough marble pieces. Take the marble pieces to the sculptor Tesla at Vieta Valley.
Please get rid of the monsters around here.{nl}I've heard that the monsters turned violent at Rodoma, 1st historic site.
Anyways, good.{nl}I need the essences of the spirits which the dead spirits that are roaming around the grave of the unknown soldier have.{nl}You can take whatever means to obtain them.
But, what I want is the pure spirit.{nl}I want you to put the two soul stones into the sacred box and purify them.
The gold plate which you found for me just a while ago.. I think there are more parts besides it.{nl}They are all the gold plates that I've found so I don't have any other plates.{nl}
Ah, there is one other place that we haven't searched yet. Folsas Highway.{nl}Can you go there for me?
Is everything going alright?{nl}Maybe, I haven't thought deeply enough.
These are reseach materials. Tell Cryomancer Master that you are handing over these on behalf of Gitis.
There is a gigantic monster that controls those wood goblins.
You may encounter the Giant Wood Goblin at Laukyme Swampy Place.{nl}If so, please defeat it.
It is very strong. Be careful.
If you face it, I hope you are with other people.
I didn't expect that you would defeat it..{nl}You are much stronger than I expected. I am surprised.{nl}If I am with you, regaining the control of the monastery won't be that hard.
Placing handouts
Lighting up
Notice/Delivered the soul remains to the Weak Owl Sculpture
Setting up the key
Putting the bait
Using the herbicide
Notice/Destroy the supplies box and chase the runaway Vubbe!#10
Notice/Chase the runaway Vubbes!#8
Notice/Move to the next region#5
Notice/!/Defeat the Lepus that's blocking the way!#8
Notice/!/You defeated the the Lepus that was blocking the way!#8
Burning
I can't read it if I can't see it.
Discarding Blind Shells (1)
What do I need to do?
You do it yourself.
Discarding Blind Shells (2)
I'll take care of the blind shells.
Until the last one
I will try my best
He is too much for me
Discarding Blind Shells (3)
You've found a blind shell while roaming around the outpost area. Ask Sapper Master what you can do to get rid of blind shells.
The Sapper Master is trying to explain how you can get rid of the blind shells. Talk with Sapper Master.
Disable the Blind Shells
Retrieve the blind shells using the bomb eliminating tools as instructed by the Sapper Master.
Deliver the blind shells to the Sapper Master.
It seems that Jeffrey still has some matters to resolve. Talk to him.
Defeat Giant Wood Goblin
Jeffrey has asked you to defeat the giant wood goblin that is commanding other wood goblins.
You've succeeded defeating the giant wood goblin. Tell this to Jeffrey.
Kupole Meile
Svitrigaila
Avoid the Petrifying Frost
What is in the box...?
The seal which the monster possesses
I'll get it for you.
I'm not really interested in it.
Look at the Petrification Detector
Have a look at the Petrification Detector at the entrance to the Coastal Fortress.
Avoid the Petrifying Frost
On your way to have a look at the detector, something suddenly appeared from behind! It looks like the Petrifying Frost! Avoid the Petrifying Frost and escape to a safe place!
Open the Treasure Chest
The treasure chest at Coastal Fortress looks suspicious. Get near it and open it.
Avoid the Petrifying Frost and defeat the monsters
Upon opening the chest, fainted Petrifying Frost appeared and nearby monsters started to attack! Avoid the frost and defeat all the monsters.
Talk to Wilhelmina Carriot
Obtain Ruklys' Army Seals and Parchments
Collect any useful information at the Fortress of the Land.
That was close. My name is Kupole Meile.{nl}I came to guide the petrified souls in this place.{nl}But I'm afraid more Petrifying Frost like the one from before will suddenly appear, so I haven't been able to move much.
{nl}There are Petrification Detectors, but it seems some of them aren't working...{nl}Will you inspect the detectors for me?
A long time ago demons and goddesses kept their powers to themselves.{nl}They kept from interfering in each other's areas.{nl}Then one day the demons casted this petrification curse.
Petrification detectors were installed throughout the area.{nl}The first one you saw earlier seems to be working, but you should have a look at the others.
If only all the detectors were working...
Oh, I see.{nl}So two of them aren't working.
Problems with the detectors are best reported to the Royal Army.{nl}They're the ones who installed them.{nl}Royal Army Officer Retia should be able to help, I think.
After the demons cast the petrification curse on this land... the goddesses did try to save us.{nl}But the demons were furious about them interfering with their work and left for another region...
{nl}The disaster they caused was unimaginable...{nl}It was so bad it forced the goddesses to give up on saving this petrified land...
Retia is at Verkti Square.{nl}Hm? You already knew?
The Petrification Detectors at the Coastal Fortress aren't working.{nl}I'm aware of that. They were broken.
Isn't someone there, though? I sent some backup to fix the broken detectors.{nl}It's been a while since they left, too... I wonder what happened...
{nl}Will you look for them?
Seeing how there's no news of them, though... Something could have happened.{nl}I know it isn't easy, but if you find their bodies... will you look through them?{nl}They should be carrying useful parts. If not, try the monsters nearby...
The Petrifying Frost at the entrance to Coastal Fortress is being reported on quite often, so you should be careful of monster attacks and Petrifying Frost.
The backup forces are all gone... It's a shame...{nl}Their spirits will need to be guided too...
Okay. Anyways, please take those parts and fix the broken detector.{nl}We should do it, but please understand that we can't leave here.
Those are the parts.{nl}You should go and fix the detectors now.{nl}Beware of Petrifying Frost.
After all the detectors are back to normal I want to guide the spirits to their rest place.
Please, do me this favor.
Oh, all of them are working now.{nl}Thank you.{nl}I can finally start guiding the spirits now.
I'm worried there's so many spirits...{nl}But I still plan to guide them one by one.{nl}May your path be blessed by the goddesses.
Who're you? Stay back.{nl}Or... Maybe if you can help me...
Priest Juta
Wow. I never thought I'd meet someone at this cemetery.{nl}I'm a Bokor serving Goddess Zemyna. After she went missing I followed Her trace all the way here.{nl}
I heard Goddess Zemyna was hiding and that she had blessed the Order of the Tree of Truth,{nl}but now that I'm here all I see are dead bodies.{nl}I can't control them with my power, either. I might have to get rid of them, they're interfering with my prayers...
Really? Thank you for your words.{nl}Prayers were hard to do alone.{nl}
Please take care of the bodies around here, then.{nl}Meanwhile I'll be preparing and praying to the goddess.
I thought I'd find something here, but these corpses don't respond to my Bokor powers...{nl}I never saw something like this. I need to find the goddess...
Oh, you're back. Thanks to you I was able to pray properly.{nl}I mean... There's no answer like before but...
I'll inspect them.
Signal
Cutting the Tail (1)
Cutting the Tail (2)
Cutting the Tail (3)
A Dead End (1)
A Dead End (2)
A Dead End (3)
Archive Shelter
Elegant Demon Lord
The Journey to Find Myself (1)
The Journey to Find Myself (2)
The Journey to Find Myself (3)
The Journey to Find Myself (4)
The Journey to Find Myself (5)
The Journey to Find Myself (6)
An Endless Deal (1)
An Endless Deal (2)
An Endless Deal (3)
An Endless Deal (4)
The Legwyn Family's Tragedy (1)
The Legwyn Family's Tragedy (2)
The Legwyn Family's Tragedy (3)
Progress
Repairing/HAMMERING/5/TRACK_AFTER/None
Notice/The detector was activated!#5
Repairing/HAMMERING/3/TRACK_BEFORE/None
Talk with Member Irmantas
Go meet Member Grazina
You can hear someone calling somebody
Talk with Member Grazina
Hand over the goods to Member Irmantas
Go meet with Member Alina
Talk with Member Alina
Talk with Member Allin
To get near the Royal Mausoleum, you should pass all the ordeals of the Great King Zachariel. {nl}To get the next token for the next ordeal, talk with Historian Rexipher.
Getting rid of it
There aren't any traces of the storage left
Defeat the monster that is blocking the way!
Completed defeating the monster that is blocking the way!
You've passed the box of the spirits to the owl sculpture.
Defeat Werewolf!
Defeat the Muscharia that suddenly appeared!
Praying for the dead
Praying for the dead
You've prayed for the dead soldier!
Looking through it
Digging it
Destroy the treasure chest and defeat the runaway Vubbe!
Chase the runaway Vubbes!
Move to another region
The monsters appeared near the broken owl sculpture!
As you tried to light it up, the monsters suddenly appeared!{nl}Defeat them first and light up the fire again!
You've burnt the owl sculpture well!
Lighting it up
Defeat all the monsters while protecting the fire around the pile of sculptures
Defeat the Lepus that's blocking the way!
You have defeated the Lepus that was blocking the way!
Siaulambs are coming to stop you!
Did the Archer Master send you here?{nl}Klaipeda is becoming stable, but Fedimian is still like this.
I want you to get rid of the boss monsters at Mage Tower.{nl}We don't have enough workforce to reconstruct Fedimian and the monsters are also coming out from the tower.
According to the report of the scout who succeeded in infiltrating into the tower, it was Minotaurus at the 3rd floor of Mage Tower.{nl}If we could defeat that monster, it will be an enough warning.
Well Done. The monsters' force has reduced a bit as a result. {nl}Please pass my appreciation to Archer Master.
Thanks. {nl}As a Cleric Master, I will help you to fulfill bigger mission.
There are nests of monsters at the right side of this four way.{nl}There may be some of our colleagues who are still alive.
Of course, I should repay you first as a Squire Master.
The Collection of the collectors
Defeat the monsters that are blocking the way!
You've defeated all the monsters that are blocking the way!
Talk with the collector
Obtained the collections
So you are the Revelator who dreamt of the dream of the goddesses.{nl}I am Uska, the Knight Commander in charge of both Siauliai and Klaipeda.
The kingdom lost all hope.{nl}Without the will to stand up again.. calling at the name of the goddesses.{nl}
To tell you the truth, I can't just see you Revelators positively.{nl}Since I am in charge of one city..{nl}
We should not experience the depression again.
Anyways, the bishop also dreamt of the revelation.{nl}He told me that when the Revelator comes, he should go to Crystal Mine.{nl}
But, since the mine village is fighting against Vubbes, we are restricting the entrance.{nl}The knight, Aras at the east forest is in charge so meet him.
The reason why the number of monsters increased in this forest was due to Vubbe fighters.{nl}Please find out how many Vubbes are here.{nl}
Hey. You're that famous Revelator, aren't ya?{nl}Seems like you're interested in the Fortress of the Land.{nl}
This is, the place is full of soldiers from the Royal Army, you can't just walk in.{nl}Now. Whose side are you on?{nl}If you want to enter the Fortress of the Land, you better tell me.{nl}
Be careful not to get detected by kingdom soldiers.{nl}Even if you get caught, just laugh and pretend there's nothing.
You've seen Gargoyle Sculpture at the gathering place right?{nl}That's the Gargoyle.{nl}
Strangely, whenever I tried to enter the fortress, it suddenly moves and blocks the way.{nl}Without making a mess, it will be impossible to suppress them with our force.
Poata at the east forest of Siauliai are threatening the villagers.{nl}If you could eliminate them in the name of the goddesses, I will teach you my magic.
When I saw you for the first time, you looked too awkward.. but.{nl}Now, you became more famous than me.{nl}
Well done.{nl}When you gain some experiences and learn swordsmanship from me, you will become a good knight.
You've come here to learn the teaching of Rogue from me?{nl}It's good.{nl}There is a task that I can verify your skills as a Rogue and resolve my problem.{nl}
Scout Master and I used to be very good friends, but our relationship is somewhat awkward now.{nl}I want to restore the relationship by giving him a gift, but if I go, I am going to get spotted.{nl}Can you go there secretly and leave him a gift?
Good. But this also includes your test.{nl}Give him a gift, but you have to put it secretly so Scout Master doesn't notice you.{nl}To give you an advice, you do it from his back.
So you've come.{nl}He will be surprised when he checks it later.{nl}
It is now time to complete my work with you.{nl}I can see that you are more than average since you were able to put it secretly without Scout Master noticing it. You will learn fast.
So you've come here to learn the skills of Fletcher.{nl}Remember, it would also cost you a lot.{nl}
I've been looking for the arrows that were created by the first Fletcher Master from long time ago.{nl}Those arrows were to be given to Lydia Schaffen so I am sure the expertise that was put into those arrows are not normal.{nl}I've found the whereabouts of those arrows recently so someone who would be able to recognize the true value of those arrows should go there.
According to the information I've obtained, it looks like I would be able to find it from 36_1 of the valley region.{nl}It was used to hunt for some violent monster so you better be careful.
I can tell it's great by just looking at its appearances.{nl}I want to research on this arrow immediately, but my promise with you come first.{nl}I will show you my skill so pay attention.
As a Falconer Master, I am looking for the ways to make Falconers stronger with diverse methods.{nl}One of the ideas that came to me was to use the aerial monsters instead of eagles.{nl}
Of course, I am satisfied with my partner, Rith, but I think these tries would help Falconer.
Like when you are taming an eagle, how about feed it?{nl}I don't have high expectations so you better go there and try it first.{nl}I've put enough food so at least try on three different kinds of monsters.
Did we fail. It's so bad, but I've expected it.{nl}Regardless of the outcomes, I will pay for your efforts.{nl}Good. I will teach you myself.
You want to learn more advanced skills?{nl}If you want to learn advanced skills of Schwaze Reiter, your should possess competent skills.{nl}The most important thing is to shoot enemies accurately.
I like your confidence.{nl}But, I should check whether youa re really competent enough.{nl}I will acknowledge you if you succeed landing hits on enemies 200 times consecutively without any mistake.
So you were not a bluff.{nl}I would be pleasant to teach you if your skills are like those.
You've come here to learn the skills of Monk?{nl}That's good. I can trust you.{nl}There's something I need to request to you.{nl}
I still regret for what I did in the past.{nl}I am helping some peolpe as a result, but if it becomes known to other people, I will be in a trouble.{nl}You have to send them a gift, if you do it well, I will teach you some skills.
There are lots of people who blame me.{nl}But, I am not doing this task for those people.{nl}I am just taking my responsibility for my mistake.
Have you passed it well?{nl}Then, you just have to learn from me.
You've come here to get acknowledged by me?{nl}But, I have some matter to take care of now so it's little hard at the moment.{nl}The book of transactions has been ripped off due to the monsters.{nl}{nl}Because of this, I can't concentrate on other works.{nl}If you are in a hurry, then I will tell you the location so please get me the preliminary book.{nl}This is a secret, but I am telling you because of our relationship and I trust you.
The preliminary book is at 35_3 at the monastery.{nl}In order to prevent other people from finding it, I've hid it inside a book and there are some fake books as well so find it well.
You've found it well.{nl}Now, since we've taken care of urgent matter, I will acknowledge you with this.
In order to control the abilities of Druid well, you should know well about the plants you control.{nl}I am actually researching on the occurence which the over grown plants turned into monsters so you may learn something from it.{nl}If you help me with this, I will acknowledge it as your training.
Defeat the plants that turned into monsters and obtain some samples from them.{nl}You will be able to obtain more samples as the monsters get stronger.
It seems that you are competent enough.{nl}As I promised to you, I will help you.
It seems that you have some business with me, but there is more important thing to do at the moment.{nl}The demonic power which was created from a far place is becoming stronger and begins to influence the power of Oracle.{nl}As a result, what we see through Clairvoyance is getting vague.{nl}
We have to get rid of that demonic energy first.{nl}Why don't you try it first?{nl}Maybe, resolving this issue would verify your competence and can also be a test for you.
The problem is occuring at Canyon Region 36_1.{nl}You just have to put the Romuva of Purification where the demonic energy is strong.
It seems that you've done well.{nl}It was a good decision for me to give the task to you.{nl}Okay then, I will help you from now on.
Good. Take this object and go to Mochia Forest.{nl}When you find someone, talk naturally and you have to tell him the passwords.
Demon Svitrigaila
Finally... You have come.{nl}Someone else besides miss Giltine...{nl}
I have a request to you.{nl}Lead me to a death.
Writings on the Pillar
[Cleros' background]
{nl}Cleros was born the eldest son to a noble family, but saw his succession rights stolen by his stepmother's children, who expelled him from their land. This can be said to be his first recorded misfortune.
{nl}He left to find work near the border under an acquaintance's suggestion. The job turned out to be a scam; he was imprisoned and forced to work to exhaustion.
{nl}With the help of Ruklys, he escaped his life of near-slavery, after which he took up martial arts and lived a period of peace. Ruklys was persecuted, however, and soon Cleros was back to misery.
[The death of Cleros]
{nl}{nl}After a long string of misfortunes living as a runaway with no achievements to be told of, he was finally arrested and taken to Kalejimas.
{nl}I wish I could say there was hope for him at that infamous prison, but his life there was nothing but hardship until the end.
[After the death of Cleros]
{nl}{nl}One may think, while his life may have been plagued with misfortune, it certainly wasn't particularly arduous. But, according to what is said, even in death his spirit is being tormented by demons, unable to escape his sad situation.
{nl}Some believe the fact that he is still suffering at the hands of the demons means there must be a secret about his life we don't know of.
Writings on the Pillar
[Rumpelstiltskin and the Moon]
{nl}{nl}This may not be absolutely true, but this is a story that's been told by legends. What we know is that Rumpelstiltskin made a bet with Lydia Schaffen and rode her arrow headed to the moon for ages and ages.
{nl}His trip to the moon took a very long time and was very difficult. But when he finally reached the moon, Rumpelstiltskin realized his problem. The arrow he had been riding to the moon could hardly be called an arrow anymore, given its state after the trip.
He was surprised by the fact that the arrow he had been riding (he was only sitting on it, it was flying with his own magic) was suddenly completely worn out.
[Rumpelstiltskin and Lydia Schaffen's Arrow]
{nl}{nl}Of course the arrow could have become worn out over such a long trip, but instead it happened all of a sudden after Rumpelstiltskin landed on the moon, which seemed very odd.
{nl}It turns out what happened to the arrow was Rumpelstiltskin's fault. His magic did fly the arrow to the moon and kept it protected, but what he didn't know was that Lydia Schaffen's arrow was made of a material used against demons. And so, while his magic kept the arrow unscathed all the way to the moon, upon letting go of the arrow, which was being held together solely by magic, it immediately crumbled into a lump of rust and fell to the ground.
[Rumpelstiltskin's Whereabouts]
{nl}{nl}Rumpelstiltskin thought long and hard and finally figured it out, but it was too late. Of course no human, goddess or demon can confirmed this story, as it exists only in legends. As far as we know, Rumpelstiltskin may as well still be on his way to the moon.
{nl}Or, he could be wandering about in our world, looking for any other arrows Lydia Schaffen might have left behind.
Leopoldas
A Revelator!{nl}It's nice to meet you. My name is Leopoldas, I manage the new members of the Kedorlaomer Merchants. I'm really glad to meet you here.
{nl}Since we've been introduced, shall we... maybe have a chat?
Our merchants?{nl}Since you are interested, shall I tell you?
{nl}To tell you the truth, the world needs our merchants.{nl}Not sure if you know,{nl}but we kept the Crystal Mine alive by buying minerals off it,{nl}we supplied materials to build the Astral Tower, the Great Cathedral, the Earth Tower and so much more.
{nl}That's right. We're the ones who did all of that.{nl}Surprised?
It'd be great if you could give our merchants a hand here in Manahas, if you have the time.{nl}Over there are our newcomers, and if you go South you can help out Jurathena Margellius.{nl}You'll be proud to call yourself an assistant to the Kedorlaomer Merchants!
Even in our group, though, we did have our rough times.{nl}It's actually a bit rough right now.{nl}That's why we're focusing on this here right now.
See ya next time.
Ah, I think I know what sacred object is there.{nl}Instead of using a tool, first dig it with your hand.{nl}And be careful not to break the object and bring it to me.
It shouldn't be that hard.
Be careful not to break it.
This is the bottle which contains the secret ink which was used to write important recordings or documents.{nl}It's used to hide records and the like.{nl}Thank you.
Antanas
Greetings.{nl}I'm Antanas, from the Rud Order.{nl}In this day and age with the goddesses gone, instead of fighting other orders, we at the Rud Order prefer to quietly wait for the goddesses while we do our work.
{nl}We're building a sanctuary here.{nl}We need to look for materials for it, but we seem to be rather short of hands.{nl}Would you help?
I'm here building the sanctuary, but there are others out there gathering materials to make scriptures, looking for records of ancient sages of the Rud Order or doing other tasks.
There's two things we need.{nl}Listen closely. {nl}Get some lime powder from monsters, and then some flat stones for construction.
{nl}You'll be busy.
Good luck!
Wow, you did great.
That.. is that from the monsters of the Fortress of the Land?{nl}Ruklys army used to have it in the past.{nl}
The object that you've brought will aid us in our research.{nl}Can you get us some more?
I didn't expect the monsters at the Fortress of the Land have this..{nl}This is very interesting.
This is enough. {nl}Thank you for helping our research.
What's up?{nl}Are you giving this to me?{nl}
This is surprising. It's telling all about the lives of past soldiers.{nl}I should send this to the headquarters. Thank you.
No!{nl}Please don't take it away from me..
That's a bomb.. Is that a blind shell?{nl}Can I take a look at it?
This is very old!{nl}These kind of bombs can only be seen in the books.
Soldier Spirit
I wasn't able to send an order to retreat.{nl}I should have blown the horn...
If they don't retreat we're going to be annihilated.{nl}The horn...
Thank you. Where do you belong to?{nl}I should get back to Ruklys now.
Wait! Listen to what he is saying.{nl}He's saying if I want to get our family treasure back, I should give him the blessed crystal.{nl}
He has given us fake crystals at first and took away one's life.{nl}And he is asking to call a dead person and ask him.{nl}
So I asked him how I can call it out and he told me to use the scroll for the dead to him.{nl}So I asked him how much it would cost and he answered that I can pay him by giving him some Blue Paint.
I'm sure this man will attempt to run away whilst I'm searching for Blue Paint!{nl}Can you help me?
Sorry. I guess I was too upset. I will tell you slowly. {nl}I'm a friend of Squire Master, Justina Legwyn.{nl}
The dead person which the Pardoner is talking about is the father of my friend, Gailus Legwyn.{nl}It is ridiculous that missing Gailus Legwyn has passed away, and look at his attitude.{nl}
That old man only wants to satisfy his greed.{nl}Poor Justina...{nl}
You can find Blue Paint from the monsters at Apgaudin Crossroads.{nl}I'm counting on you.
Does she know the value of the Dead Scroll?{nl}Whatever... I don't care anymore.{nl}
I'm experiencing this shame because of him. I can't stand it anymore.{nl}Find Gailus Legwyn with this and ask him yourself!{nl}
Look for the seal of Mires Grave{nl}I hear he died near there.
He doesn't want to back off until he receives the blessed crystal back.{nl}He is so tenacious.
Oh my, goddess!{nl}I didn't expect that I would meet a human here..{nl}
Please help me.{nl}I'm being chased by the chasers and the demons from the tower of the stars.{nl}
Can you stand by me until I notify my other colleagues using a signal flare?{nl}I have to let the other two colleagues who came here know that I am still alive.
Chasers came here..{nl}I might have been in danger if it wasn't for you.
You.. It's like as if the goddesses are beside you.{nl}Okay. I am sure you are better than that Giltine.{nl}
I am the Demon Lord Hauberk.{nl}Maybe you've already met me and my other piece.{nl}But, that piece is a different piece. I don't know who you are..{nl}
I was running away from the demons through a human called Agatas.{nl}But, Agatas is dying due to the paralysis needle of the demon.{nl}
I know that you don't trust me.{nl}But, please save this pilgrim.{nl}If you can find some Dark Blue Herbs, you can save him.
(Seems to be unconscious)
You can save Agatas with this.{nl}There's nothing I can pay for your kindness.{nl}
I just look like a demon that should be eliminated in your eyes right?{nl}But, when Agatas wakes up, he will explain everything to you.
The Knights of Kaliss? Good. {nl}We can't completely trust you just yet but, if you help me with the plan, I can take you with me.{nl}
You know the Fortress of the Land was Ruklys' last battlefield, right?{nl}It was excavated from the ground like a tunnel.{nl}
The Royal Army are all over it now, protecting it.{nl}Isn't it weird?
The revolt occurred 400 years ago and we don't have enough workforce due to Medzio Diena.{nl}This city too.. I know that it's historically meaningful, but I am not sure if we have to protect it that much.{nl}
Maybe some black deals were going back and forth behind the kingdom.{nl}If that's not it, why are they protecting this?{nl}
They must be wondering what's going on since the Knights of Kaliss are here.{nl}They said they'd turn a blind eye on me if only I bring them what they want.{nl}
So, of course I'm getting inside the fortress room that's full of treasures without the army knowing.{nl}I imagine it's loaded with riches, sinceit's the army's funds.{nl}
First, gather the records from Ruklys' era in the assembly area.{nl}We need them to get pass the guarding Gargoyle.
Bokor Juta
I'm looking for Goddess Zemyna.{nl}Everyone knows the goddess is missing.{nl}
I've come here after hearing that the goddesses blessed the Order of the Tree of Truth...{nl}I can only see the deads.{nl}
If you are going to stay in this chamber, can you help me?{nl}I can't do anything with my power and they come at me whenever they hear my prayers.{nl}
I should pray to the goddesses to check whether she is around here.
Really? Thank you for your words.{nl}Prayers were hard to do alone.{nl}
Then I am counting on you for the deads at the casket room.{nl}I will pray to the goddess in the meantime.
I thought I would be able to find the whereabouts of Goddess Zemyna here, but this place is full of the dead..{nl}I've never seen this. We should look for Zemyna fast.
Ah, so you've returned. {nl}Because of you, the deads didn't attack me while I was praying.{nl}
But, even here, the prayer didn't reach the goddess.
Shaman Doll [Bokor Advancement]
The dead body of the mercenary who has fallen
Ask him what you should do
Reject
Lydia Schaffen and the Fletcher's Arrow [Fletcher Advancement]
I will look for the arrow
Quit since you are not confident enough
How can I tame the monster?
That's absurd
Perfect Shot [Schwarzer Reiter Advancement]
I am confident
That's not true
I will pass it
I don't want to do it
I will go get the book
I will come back later
I will resolve it
I need some time to think
Someone's Record (1)
Scraping off dust
Upon seeing the black dust fall off the pilar, the monsters came running!
Brushing off the black powders
After brushing off the black dust, the thing underneath looks like a record!
Someone's Record (2)
The sea sparkles aren't shining, probably because it's daytime.{nl}Get some monster oil from nearby monsters to feed the sea sparkles!
To read the words you need to collect monster oil!
Looking at it again
The sea sparkles are beginning to shine!
Someone's Record (3)
Looking at the pillar
Stand close to the pillar and speak out the numbers!
Reading the writings on the pillar
Carvings on the Pillar (1)
It's too dark to see! Collect some shining moss from nearby!
Reading the writings on the pillar
Due to shining moss, you are able to read what the writings say!
Carvings on the Pillar (2)
The pillar collapsed without even being touched!{nl}Collect some viscous liquid from monsters to repair the pillar!
You need viscous liquid
Repairing the pillar
Carvings on the Pillar (3)
Putting in the pieces
You can read the letters!
Collecting the Sacred Object (4)
I will go excavate it
Excavating the Sacred Object
You've discovered the sacred object!
I will collect them
I won't go in again
The story written about the Ruklys Army
Order to Retreat
The Journey Begins (1)
The Journey Begins (2)
The Journey Begins (3)
The Journey Begins (4)
Orsha (1)
Orsha (2)
Orsha (3)
A Thankful Heart
Something to Give
Lost in the Forest (1)
Lost in the Forest (2)
An Unowned Object
Unsafe Safety Zone
The Settler Without Rest
The Missing Bishop (1)
The Missing Bishop (2)
The Missing Bishop (3)
The Missing Bishop (4)
The Missing Bishop (5)
The Burnt Whereabouts (1)
The Burnt Whereabouts (2)
Search for the Erased Traces (5)
Search for the Erased Traces (6)
Overworked Agent
Removing the Odor
Turning Away
Monster Colony (1)
Monster Colony (2)
Large-Scale Search Operation (1)
Large-Scale Search Operation (2)
Large-Scale Search Operation (3)
Large-Scale Search Operation (4)
Large-Scale Search Operation (5)
Large-Scale Search Operation (6)
Support Activities
The Suspicious Location
Preliminary Investigation (1)
Preliminary Investigation (2)
The Corrupted Monster
Precious Life and Money
Retrieve the capital
The Dangerous Trace (1)
The Dangerous Trace (2)
The Dangerous Trace (3)
Bishop Urbonas' Whereabouts (1)
Bishop Urbonas' Whereabouts (2)
Bishop Urbonas' Whereabouts (3)
Bishop Urbonas' Whereabouts (4)
Bishop Urbonas' Whereabouts (5)
Bishop Urbonas' Whereabouts (6)
Bishop Urbonas' Whereabouts (7)
Do the task properly
A New Enemy
A Pile of Demons (1)
A Pile of Demons (2)
Into the Hands (5)
Into the Hands (6)
What If Again (1)
What If Again (2)
To Expel
Recruiting Prisoners
A Deeper Place (1)
A Deeper Place (2)
A Deeper Place (3)
A Deeper Place (4)
Tell him to wait a bit
Everything Intact (1)
Everything Intact (2)
Eliminate the rust
Precious and Valuable
Change of One's Thinking
Everything Intact (3)
Feeding the aerial monsters
Falconer Master wants to test whether monsters can be used instead of eagles. Feed three kinds of aerial type monsters and try taming them.
Report to Falconer Master
You've failed to tame monsters. Go back to Falconer Master.
Go meet Schwarzer Reiter Master at the Forest of Prayer.
Shoot normal monsters 200 times consecutively
Schwarzer Reiter Master told you that he will see your skills to shoot enemies accurately. Hit normal monsters 200 times accurately.
You've landed all attacks on enemies without any mistask. Go back to Schwarzer Reiter Master.
Find the hidden contact and hand over the object
Monk Master asked you to meet the person who Vail has sent and hand over the object to him which Monk Master has given you. The person you should meet is hidden so go to the place indicated on the memo which Monk Master gave to you and say the passwords. When a person appears after hearing the passwords, give him the object.
Report to Monk Master
You've successfully handed over the object to the person. Go back to Monk Master.
Search the book of Pardoner Master
Pardoner Master told you that his book is ripped off so it can't be used. Go find the premiminary book which Pardoner Master has hidden at 35_3 of the monastery.
You've found the book of Pardoner Master. Go back to Pardoner Master.
Collect the samples of Plant-type monsters
Druid Master is researching on the over grown plants after Medzio Diena. To help him the research, defeat Plant-type monsters and collect the samples. You can get more samples as the monsters become stronger.
Hand them over to Druid Master
You've collected enough Plant-type monsters' samples. Go back to Druid Master.
Set Romuva of Purification at 36_1 of Canyon Region
Oracle Master told you that the demonic energy is becoming stronger lately so his abilities are being disturbed. Set Romuva of Purification on 36_1 of Canyon Region where the demonic energy is strong so there's lots of distubances.
Report to Oracle Master
You've set up all Romuvas of Purification. Return to the Oracle Master.
Open the treasure chest
Defeat the monsters by avoiding the Petrifying Frost
As you opened the box, faint Petrifying Frost came out and the monsters around are rushing in! Avoid the Petrifying Frost and defeat all monsters.
Look at the pillar
As you entered Galeed Plateau, you see a lot of pillars. There is one pillar that looks special, so go take a look at it.
Protect the pillar
The monsters are coming to attack the pillar! Protect it.
Brush off the powders off from the pillar
Does this black dust look like food to the monsters? Is that why they came running? Mow that they're gone we should dust off the rest of the pillar.
There should be more pillars with records around here. Have a look at the others. We could use the light from the sea sparkles to read the writings on the pillars.
Collect Monster Oil
To make the sea sparkles shine during the day, you need some monster oil. Hunt monsters to collect it.
Read the writings on the pillar
You have collected the monster oil. Take it to the pillar and use the light from the sea sparkles to read the writings on it.
Defeat monsters to obtain Monster Oil
It seems that someone's records are present on other pillars. Look at the pillars.
Speak out the numbers
The instructions seem to say that, if you speak out the numbers obtained at the Galeed Plateau, the writings on the pillar will become visible. Stand near the pillar and enter the numbers into the chat window.
The writings on the pillar are beginning to appear! Read them!
A pillar has appeared! Go have a look at it.
Repair the pillar
You seem to need shining moss to read the writings on the summoning pillar. Go and gather some. Note that, if you don't come back within 5 minutes, you'll have to wait until it appears again, so hurry.
Read the writings on the pillar
You should be able to read the pillar now. Go near it and have a look.
It seems that there is another record on the other pillar which continues from this story. Look at the pillar closely.
Obtain Sticky Liquid
The pillar collapsed without even being touched.{nl}Collect some viscous liquid from monsters to repair the pillar.
Repair the pillar
You have collected the sticky liquid. Go back and repair the pillar.
Defeat monsters and collect %s
Obtain the sticky liquid
The rest of the story seems to be written on the pillar. Go there and take a close look at it.
Put the pieces into the pillars
It seems that the pieces would fit well. Try putting them in. But, if you give up on a quest, the piece will disappear. When you go to the pillars when the pieces disappear, you will be able to obtain the pieces.
It seems that the pieces would fit well. Try putting them in.
Continue the talk with Jurate about the sacred object.
Excavate the sacred object
Excavate the sacred object secretly by going to the place where you found with the detector stick.
Report to Jurate
It seems that you've found a sacred object. Take it to Jurate.
Wilhelmina Carriot is looking at what you have closely. Talk with Wilhelmina Carriot.
Obtain Ruklys' Army Seals and Parchments
Wilhelmina Carriot wants more documents. Obtain some things that can be used as information from the Fortress of the Land.
Hand them over to Wilhelmina Carriot
Wilhelmina Carriot will be satisfied with this. Hand them over to Wilhelmina Carriot.
Talk with the Ruklys Army Soldier's Spirit
Talk with the Ruklys Army Soldier's Spirit
Pass the retreat order to the spirits by blowing the horn
Blow the horn and pass the retreat order to the Ruklys Army Soldier's Spirits.
Talk with Priest Irma
Priest Irma is waiting for help in Ashaq Underground Prison 3F.
The Demon Lord Marnox attacked when you entered the hideout!
You've defeated the Demon Lord Marnox. Talk with Priest Irma.
Defeat Demon Lord Marnox
You have collected the stones!
You obtained nothing
So you are the famous Revelator, right?{nl}Hmm... I have something to suggest to you. Why don't you work with me?{nl}
You know that Fortress of the Land was the last place where the Ruklys' army resisted, right?{nl}But, not only that. What I am going to tell you from now on is a secret... I have a question before that.{nl}
Whose side are you on?{nl}The Royal Army or the Knights of Kaliss?{nl}If you don't want to answer, then just do what you are told.
[The Life of Cleros]
{nl}Cleros is the elder son of some landlord.{nl}He lost the right of succession to the child of stepmother and was expelled out of the land.{nl}
His life which is full of failures started like that.{nl}He began to look for another job as a result of his friend's advice.
But, that was the plan to sell Cleros.{nl}He became a slave that has to work till the death while being locked inside.{nl}
While he was locked inside, he received the salvation of Ruklys.{nl}His life as a slave was now over, but the peaceful days weren't going to last long.{nl}
When Ruklys was defeated, his rest turned into a disaster.
{nl}A long escape continued.{nl}He didn't succeed in anything in his life.{nl}
And he was caught and locked inside Kalejimas.{nl}It would've been good if there was any hope in that prison..{nl}
But, he experienced agony there and died.
{nl}If the story ends here, this will be the story of some person who failed his life.{nl}
But, according to some info, he is still being tortured by the demon.{nl}His spirit.{nl}
As a result, there are people who say there's some hidden story behind his life.{nl}But, no one knows what the story is.{nl}
{nl}{nl}Look for the small dot which goes after the night sky.{nl}That's Rumpelstiltskin flying towards the moon.{nl}
As we know, Rumpelstiltskin made a bet with Lydia Schaffen and flew to the moon.{nl}It took him ages and ages.{nl}
About halfway there, Rumpelstiltskin was suddenly surprised beyond belief.{nl}The arrow he had been riding was almost completely destroyed.
{nl}Rumpelstiltskin realized he had been tricked.{nl}Of course, the arrow could have disintegrated from flying for so long.{nl}
However, it was Rumpelstiltskin's own magic that was at fault.{nl}You see, Lydia Schaffen's arrow had been made to possess power against demons.{nl}
That's right. Rumpelstiltskin was a demon.{nl}So when his power and the power of the arrow collided, it started to disintegrate.{nl}
Rumpelstiltskin, who has just realized that, was furious, but it was to no use.
{nl}Rumpelstiltskin, unable to return to earth, is still flying towards the moon.{nl}Or, he could just as well be back already, searching for more of Lydia's arrows.{nl}
This story can't be verified by humans, goddesses, nor demons.{nl}Of course, it would become apparent if we would be able to go to the moon.
What, aren't you the Revelator?{nl}It's so good to see you.{nl}
Of course, I know about you.{nl}We of the Kedora Merchant Alliance know everything.{nl}
We're a distinguished alliance; we worked on the Astral Tower, the Great Cathedral and other major constructions.{nl}Will of the goddesses. I'd say we were a sort of driving force in history.{nl}
Oh, I'm in charge of the new members by the way.{nl}After Medzio Diena we had to use even the newcomers to help with reconstruction.{nl}
How about we help each other out?{nl}He is the helper of our Kedora Merchant Alliance.
Thank you so much.{nl}The newcomers are beside me.{nl}
I was going to be a little strict teaching you, but that's not really me.{nl}I was wondering if you could give us a hand.{nl}
If you go south you can help out Jurathena Margellius.{nl}The monsters around here are tough even for a veteran.
Even in our group, though, we did have our rough times.{nl}It's actually a bit rough right now.{nl}
That's why we're focused here on Manahas right now.
Alright, go then.{nl}It shouldn't be too hard for someone of your fame.
Greetings.{nl}I'm Antanas, from Nestospa. {nl}Have you ever seen Nestospa?{nl}Well, it doesn't matter if you haven't.
{nl}The people of Nestospa here are just quietly doing their work.{nl}Myself, I'm here making tombstones.{nl}The problem is I have no materials.{nl}Would you help me?
Antanas told you to go?{nl}I'm Giedra, from Nestospa.{nl}If you already met Antanas, you probably know what we do by now, so I'll keep it short.
{nl}I'm gathering materials to make scriptures of the goddesses.{nl}Regular paper gets yellow and falls apart too quickly... so I'm looking for a material that won't get wet or change color. {nl}Transparent monster shells are perfect for this, since they last a long time after they're carved.{nl}Will you gather some for me?
You're back faster than I thought.{nl}I'll use these shells to make the scriptures.{nl}Thank you.
Oh, my sign... Without it there's no telling if I'm Nestospa or Anastospa...{nl}I lost everything... The monsters took everything...{nl}I'm done...{nl}I was going to Fasika Plateau after my pilgrimage but...
Oooohh!{nl}Please help me!{nl}My Nestospa sign is gone!
{nl}It's gone, gone, gone!{nl}Please help me find it!{nl}The monsters must have taken it!
How could this happen...{nl}I'm done... How am I going to face my Nestospa mentors...
That's it!{nl}Wow, you found them all!{nl}Thank you!{nl}How can I ever repay you...
It is very surprising. What soldiers did in the past is written here. {nl}I am going to pass this document to the headquarters. {nl}
I will give you a copy of the book as a token of my appreciation.{nl}It is written roughly, but our objective is to find out the truth in the past.
Ruklys Army Soldier's Spirit
If we don't make an order to retreat, they will all be annihilated.{nl}Please blow the horn..
The Knights of Kaliss? Good. {nl}The Fortress of the Land can't be entered since there are too many Royal Army guards.{nl}But, if you help me with the plan, I can take you with me.{nl}
About the secret I told you a while ago...{nl}
I heard some saying that the Fortress of the Land is to protect the treasure which was received from Ruklys.{nl}
Think about it. Isn't it strange?{nl}The Royal Army guards are protecting the hole which is digged like a ant hole.{nl}
The Knights of Kaliss wants to know if something is there.{nl}They told us that if we investigate the Fortress of the Land, they won't say anything regardless of what we do.{nl}
Ah, of course, I am going to go look for the treasure of Ruklys.{nl}The treasure is from the goddesses so it must be something amazing.{nl}
Anyways, you are going to be with me right?{nl}Please first gather the records from Ruklys Era at the gathering place.{nl}In order to break Gargoyle, we need that.
Hey, you.{nl}What are you doing here in this far off forest?{nl}Well, it doesn't matter. Whoever you are, can you give me a hand?
My name is Druid Leja and I live in this forest.{nl}I've reached here by chasing after the ferrets that ran away with the food from the village.{nl}I wasn't able to find the food, but instead was attacked by ferrets.{nl}
I want to cure my wound before I go back to the village..{nl}When we go up there, there is a herb that works well on wounds. Please bring us those herbs.
When we collect the herbs, the ferrets may attack us.{nl}They think everything in this forest belongs to them.
Revelator, have you drank the red water before?{nl}If you had drank it before, I am sure you won't be able to talk to me now.{nl}Even if you are really thirsty, you shouldn't drink the red water. If you drink it, you will suffer from it.{nl}It is so toxic. The fruits that grew by consuming the water got huge and can't be edible.{nl}
I was once lost in a forest and I was really thirsty at then.{nl}I found a container with fruit juice in it which the ferrets had accumulated.{nl}Dying from thirst or dying from the ferrets, dying is the same.{nl}So I drank the juice without the ferrets knowing and nothing happened to me.{nl}
We're almost running out of the water we had collected, we need to find more.{nl}Could you get some fruit juice from the ferrets? Thank you.
The taste of the fruit juice was way better than I expected...
Wow, thanks. We wouldn't have to worry about the drinkable water with this much amount.
Ah.. I didn't expect I would see a human here..! Please help me!{nl}I am called Druid Benes. I am trying to find the reason why the ferrets are coopering with the demons.{nl}Recently, I found out that I will be able to talk to the ferrets using the spell of the Druids.{nl}
The problem is, since I've been around them for so long, they already know my smell.{nl}Even when I turn into a ferret, they recognize me and refuse to talk to me.{nl}Would you turn into a ferret for me and try and find out what they're plotting?{nl}
In order to turn into a Ferret, you should observe the behaviors of ferrets well.{nl}If we do something awkward, we will get discovered by ferrets.{nl}I am going to give you an empty scroll so please observe the behaviors of ferrets and record them here.
From what you observed, I am going to make a Ferret Transformation Scroll.{nl}So please write in details as much as possible. So that even if it transforms, it doesn't look awkward.
You've observed in details.{nl}You won't have a problem if you transform now.{nl}Please wait.
Someone's Record
Something Carved on the Pillar
The crystal emanating the mysterious light is not fully repleted!{nl}Defeat nearby monsters to collect monster oil and make the crystal shine its light!
The crystal emanating the mysterious ray begins to shine brightly!
3 numbers are the secret of the pillar
Carvings on the Pillar
What is the written on the pillar?
The pillar collapsed!{nl}Collect sticky liquid from monsters to repair it!
You have obtained sticky fluid!
Repairing the pillar
Look for the pieces of the pillar
Please tell me what it is
I will ask later
I will go
I have something to do
Please wait
I will go meet
I will come back soon
Lighting it up
I will take a look around
I don't need that
It will come if you wait
It is likely that there are more pillars with someone's records. Look at the pillar. You would be able to read the writings on the pillar even if it's dark if you have the crystals that illuminates a mysterious ray.
The crystal emanating the mysterious light requires monster oil to shine. Hunt monsters and collect monster oil.
You have obtained the monster oil. Go back to the pillar with the crystal and use its light to see the writings on it.
The instructions seem to day that, if you speak out the numbers obtained at the Galeed Plateau, the writings on the pillar will become visible. Stand near the pillar and enter the numbers into the chat window. Obtain hints from colored pillars.
Obtain %s from monsters
The books from the Ruklys Era are scattered around. Look for the books that are readable.
If you bring these books to Wilhelmina Carriot, you would be able to receive some rewars.
You can see the Ruklys Army Soldier's Spirit that can't go back beside the goddess. Talk to him.
It seems that he regrets that he couldn't blow the horn to order for retreat. Blow the horn and let other spirits know about the spirit.
You blew the horn and sent out the retreat order. Tell the Ruklys Army Soldier's Spirit about it.
Talk with Settler Browein
Talk with Settler Browein at Lemprasa Pond
Talk with Settler Brophen
Talk with Settler Brophen
Use a Status Point
Press the F1 key to use a Status Point
Hand over Grass Leaf Ointment
Settler Brophen asked you to hand over Grass Leaf Ointment to Settler Layla
Talk with Mayor Romanas
Mayor Romanas is waiting for you
Talk with Officer Lutas
Talk with Officer Lutas at the entrance of Lemprasa Pond
Talk with Officer Lutas
Defeat the attacking boss monster
Defeat the attacking boss monster
Visit Orsha
Visit Orsha
Talk with Inesa Hamondale
Talk with Orsha's lord, Inesa Hamondale
Talk with Settler Izna
Talk with Settler Izna
Collect light red leaves
Settler Izna has asked you to defeat nearby monsters and collect red leaves.
Obtain light red leaves
Collect Rampar Mucus
Settler Izna has asked you to collect Rampas Mucus.
Guide the settler in the forest
Residents of the northern region have been isolated due to a gigantic monster. Settler Izna has asked you to light up a fire to help them.
Light the Last Fire
Settler Izna has asked you to light a big fire so the residents can see it from far away.
Talk with Settler Ivanayus
Talk with Settler Ivanayus
Collect useful objects
Settler Ivanayus wants you to collect useful objects that can be used by settlers that are left by natives.
Talk with Settler Dallanas
Talk with Settler Dallanas
Worship the Statue of Goddess Zemyna
Settler Dallanas would like to bless your explorations and as asked you to worship the statue of Goddess Zemyna to receive her grace.
Bring the Settlers
Settler Dallanas has asked you to bring the settlers that were spreaded across the area.
Can you hand over the records to Wilhelmina?{nl}She told me that she will help us break Gargoyle so don't forget to get something from her when you return.
Mardas
Ah... a human in this place...{nl}There are demons here. You better run away.{nl}A while ago, demons appeared from up there and are controlling the monsters.
Are you insane?{nl}I don't know how strong you are, but I will stay here so if you want to go, please go alone.{nl}The place where I saw demons was the place where the owl sculpture is located..
I've been chased by demons and ran here from the castle.{nl}I don't want to experience any more troubles.
No demons were there and only other monsters?{nl}That's fortunate I guess.{nl}
You're stronger than you look.{nl}I wasn't expecting that.
Please come back to me when you fix the detector.{nl}I have something to tell you.
I am going to guide each and every one of you with sincerity.{nl}I hope the road ahead of you is full of blessings.
It doesn't matter anymore.{nl}I just want to take a break...
[Ordeal of Cleros]
The sun of gold ray, the moon of silver ray and the land of bronze ray.{nl}What is your number.{nl}
It seems you don't know anything about our merchants.{nl}
Hmm, have you ever seen the Great Cathedral or Mage Tower before?{nl}Or something like the gigantic Goddess Statue of Fedimian?{nl}
Do you think a large construction like that can be completed by one individual?{nl}Of course not. It's hard to supply such materials even if the kingdom comes first.
We are the merchants that supplied materials to the historic construction.{nl}Do you understand now?{nl}
We helped for the completion of it.{nl}The objective of our merchants is the will of the goddesses.{nl}
Ah, I am in charge of newcomers of Kedora Merchant Alliance.{nl}We've received severe damages on Medzio Diena so even the newcomers are trying their best to restore the place.{nl}
We are in a trouble.{nl}We have to put up a notice board, but we're just too busy.{nl}
The Kedora Merchant Alliance act harsh on newcomers.{nl}Especially Leopoldas, he's really scary... He wants me to do this alone.
If that's so, can you place this notice board on Kluibe Road?{nl}Edita, our leader, is excavating this sacred object.{nl}
I am counting on you to do this secretly without being detected by Leopoldas.{nl}I have to go somewhere.
I am counting on you to do this secretly without being detected by Leopoldas.{nl}For sure.
I am helping the Revelators who have just started their journeys from the Kedora Merchant Alliance.{nl}If you don't mind, can you help us?
It's not that difficult.{nl}You just have to pass the blessing which is needed for their journeys.
Thank you.{nl}Then, I will tell you how you can do it.{nl}
Please look for the Revelators who have started their journeys around Orsha or Klaipeda.{nl}When you use this scroll on them, they will receive a helpful blessing for their journeys.
Ah, it won't be effective to ones who have already been blessed, so please keep that in mind.
We can't just rely on the goddess.{nl}We should do it ourselves in order to reduce the burden on the goddesses.
We, Kedora Merchant Alliance helped the goddesses secretly until now.{nl}But, since the world turned into a chaos, we are going to help her actively.
We are in trouble...{nl}There are so many things to retrieve, but I don't know what people are doing.
Ah, so Leopoldas sent you here?{nl}Finally, it seems he has stopped being so stubborn.{nl}
A long time ago, I was sending the sacred objects to Fedimian.{nl}But, I didn't realise it was on Medzio Diena.{nl}
It was such a mess.{nl}They took care of urgent matters in other regions and they now came out to retrieve the sacred objects.{nl}
Okay, let's stop complaining. I want you to retrieve the sacred objects from Goanar Path.{nl}I believe that they are buried deep in the ground.{nl}
Ah, and there are many monsters around that threaten us merchants.{nl}If it's alright with you, I want you to defeat them as well.
Be careful since there are many monsters around there.{nl}If there weren't any monsters, our task would not have been completed this late.
Leopoldas never asks anyone for help.{nl}I never knew that you were this good.
Actually, we received a strange report.{nl}The monsters at Kluibe Road are digging only one spot.
I think what they are looking for is one of our Merchants' object.{nl}And it would take some time until the retrieval group reaches here.
Is it the sacred object?{nl}It's been such a long time so I can't think of anything else.
Those are the records from the merchants.{nl}They are badly torn.{nl}
I am sure the monsters created this mess.{nl}Give it to me.
Let's see.{nl}It is about..{nl}
This is the book about the materials for the arrow.{nl}Long time ago, they were supplied to Lydia Schaffen and the first Fletcher Master.{nl}
I thought it was the sacred object that was lost long ago, it's an unexpected gift.{nl}It is said that the arrow of Lydia Schaffen has some special power in it.{nl}
It is hard to restore it myself.. {nl}I should put it somewhere in the safe place and restore it when I go back to the headquarter.
The remaining spot should be somewhere around Juikas Field.. but, I have no idea where it is exactly.{nl}If it's alright with you, could you help me out with this?
I will give you the detector so please see how it reacts to it.{nl}It will only react on the marks that were put on by merchants so you won't get lost.
Isn't this really a good method?{nl}We put marks on all objects of the Merchants just in case they happened to get lost.
Ahah, you've found the most important object!{nl}This is the mysterious ink.{nl}
This is the secret ink which you use when you have to hide the records.{nl}It is very expensive as a result.{nl}
You've been a great help to me so far.{nl}We will take care of the rest!{nl}
Leopoldas?{nl}Ah, he is our brother. What's the matter?{nl}
He sent you to help me?{nl}I can't believe it.{nl}
Well, anyways, it's good.{nl}That damn monster took away everything.{nl}
Other things are fine, but the problem is the teaching materials for the newcomers.{nl}If we don't have those, we have to work from the beginning.{nl}
You've seen the newcomers who Leopoldas manages right?{nl}These are the documents to educate those newcomers.{nl}
Well, we, merchants support the will of the goddesses, but we moved secretly from behind.{nl}But, we can't stand anymore since the world is like this.
That's why we've decided to hire new people and participate more actively.{nl}But, since the world is like this, we can't just do nothing.{nl}
Anyways, if you are going to help me, please get me those documents again.{nl}If we don't have those, it would become complicated.
It's not going to be over even if we find all those documents.{nl}Get ready since we also have to create the manuscript.
I know the good meaning of it, but I am not sure if we are going to survive.{nl}If so, we are not doing something that we hadn't done before so it doesn't matter.{nl}
Fighting against monsters are not something rare.
Good. Our brother send us a good helper.{nl}Let's make the manuscript now.
I will do the writing anyways so you don't have to worry.{nl}What I need is the ink.{nl}
If there's an ink that is made up the body fluid from the monsters, it would last long.{nl}I will give you the trap so I am counting on you for the monster body fluid.
Put the trap on the way that monsters cross.{nl}When monsters faint out after stepping on the trap, get the body fluid.{nl}
Ah, this is the trick that only works at Droze Empty Lot so you should only put the trap there.
You've already obtained all of them?{nl}
I knew it. We still need more.
This is enough.{nl}You've done well so far.{nl}
If we meet next time, I will treat you a lot from our merchants,.{nl}I will do the rest so go back.
Hello.{nl}Have you ever heard of Nestospa?{nl}
Well, it doesn't really matter even if we didn't hear anything about it.{nl}They only concentrate on their religious belief quietly.{nl}
I am one of those Nestospa.{nl}Prayers are good, but I am making a tombstone to see if that's going to help the goddesses.{nl}
I am trying to get rid of the evil energy and send only sacred energy to the goddess.{nl}But, I am having a problem collecting materials. {nl}
Can you help me?
There are too many materials.{nl}Listen well.{nl}
Get some lime powder from monsters, and then some flat stones for construction.{nl}You'll be busy.
I can't just stand still even if I can't fact demons directly.{nl}Everyone does his/her own task.
Goold. Well done.{nl}Now the materials are all collected.. We need some special tools.
Good. Since you've helped me until now, why don't you make a tombstone yourself?{nl}Your name will be reached to the goddess with the sacred power.{nl}
Just do your best to make a shape.{nl}How about it? Do you want to try it?
Make it beautiful.{nl}I will do the rest so don't worry too much.
It's quite a nice shape, composed but heavy.{nl}Leave the final touches to me.{nl}
I don't know how many tombstones we are going to make..{nl}But, when you see this kind of tombstone from now on, please remember that there are people like us.{nl}
The kingdom hasn't been collapsed by the demons yet.{nl}If we do our best, we would be able to find the peace.{nl}
Ah, up there, We need help from Giedra near Baderam Hill.{nl}If you are okay, I want you to help me.
Do you have any business with me?{nl}
Antanas has asked you to help me?{nl}That's good. I am compiling the scripture of the goddesses here.{nl}
We should have something that we can rely on when we are facing diffculties like nowadays.{nl}
The scripture helped that.{nl}We should calm us down by reading the words of the goddesses.{nl}
We should first collect the materials to compile the scripture.{nl}Normal sheets become yellow and break.. We are trying to compile it with new materials now.{nl}
Transparent shells of monsters are good.{nl}When we engrave letters on them, they last long.{nl}Could you get me those?{nl}{nl}
Those are easy to find.{nl}Okay, then I am counting on you.
Everyone needs something to rely one.{nl}But the goddesses.. {nl}
Yes.{nl}We should be like a big tree that can be relied on.
You've brought them sooner than I expected.{nl}This shell would become the scripture after polising it up. Thank you.{nl}
To make the scripture, sheets are important, but binding is also important.{nl}Especially, the strings. It will be no good if the scripture gets untied.{nl}
The string that is made up of the leather of monster is the best, but the problem is that it is short.{nl}I will give you a Moru so can you make a leather string for the binding?{nl}
We should first obtain leather strings from monsters.{nl}After that, we will use this Moru to make a string for the binding.{nl}
We will connect short ones to make a long string for the binding.
I've learned the binding from Orsha long time ago.{nl}But, the task is too much with my own power.
Ah! What should I do? what should I do..{nl}Without it, I won't know if I am a Nestos or Anastos.{nl}
I am done. done.{nl}Since the pilgrim is over, I am trying to go to Pasaka Canyon, but I've done it again.{nl}Ahah.. I don't want to do this..
Yes? Ah, I didn't know you were there. I am sorry.{nl}I am now. Ah.. too desperate.{nl}
My luggage is gone.{nl}In fact what's inside are potato dumplings, books and etc, but the sign of Nestos.{nl}
Ah.. really. The sign of Nestos is most important.{nl}That is so important to me.. I am sure the monsters have taken it.
What should I do..{nl}How would I see the faces of Nestospa..
That's it!{nl}Wow, you've collected all of them!{nl}
How can I pay for this?{nl}
I was talking gibberish right?{nl}I am so sorry. I was too desperate so I wanted to give up on everything.{nl}
This sign is like a sacred object to us.{nl}This is the symbol that we gained lots of diverse knowledge and passed many ordeals.{nl}
We should go back.{nl}We won't lose it again right?{nl}
Ah...{nl}Antanas and Giedra keeps them well, but I don't undertand why I am losing them so often.{nl}I think I possess some secret power that pulls monsters..{nl}
Anyways, I will go to Pasaka Canyon now where the masters are present!{nl}Thank you so much!