This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
QUEST_UNUSED.tsv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 2605.
3272 lines (3272 loc) · 378 KB
/
QUEST_UNUSED.tsv
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
QUEST_UNUSED_20150317_000001 A ha, you're on your way to see Master Pardoner. I wish you luck.
QUEST_UNUSED_20150317_000002 Note the long way Hashipusho.
QUEST_UNUSED_20150317_000003 So. Korezo. Pardoner does not allow you to introductory. Sound fall that Silber 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.
QUEST_UNUSED_20150317_000004 Pardoner be viewed back to your master Te. {nl} if had the fire pot looking for a very long time.
QUEST_UNUSED_20150317_000005 Gatekeeper Owl Sculpture
QUEST_UNUSED_20150317_000006 Or Tesla-like has created us by cutting the tree. {nl} So, we owl, you always say want to return the favor. {nl}
QUEST_UNUSED_20150317_000007 So I what is. You may ask. Would you like Tesla electrolysis collected sculpture of marble from {nl} Cathedral?
QUEST_UNUSED_20150317_000008 If marble of the cathedral, but it likes Tesla-like?
QUEST_UNUSED_20150317_000009 If it were a gift of owl image {nl} the babe, but evidence for my life. {nl}
QUEST_UNUSED_20150317_000010 Anyway .. What seemed happy visitor comes something today, I will Hey drawing.
QUEST_UNUSED_20150317_000011 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}
QUEST_UNUSED_20150317_000012 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.
QUEST_UNUSED_20150317_000013 Isolation. Just merely hunting. In {nl}, Itogetone waiting on the Klaipeda.
QUEST_UNUSED_20150317_000014 Have been. Was waiting. {nl} would be given a reward worthy of your container if this degree.
QUEST_UNUSED_20150317_000015 Hehe, I'm really enthusiastic. {nl} I remembered when you were still convergence wizard. Then also you were really enthusiastic. {nl}
QUEST_UNUSED_20150317_000016 Now I want to know you grew how. If {nl} banshee et al defile the forest, do not you to the appropriate challenge?
QUEST_UNUSED_20150317_000017 Rather than test, it is considered to be a good thing. In {nl}, and later also met at the Klaipeda.
QUEST_UNUSED_20150317_000018 Yes, brilliantly Hatchiu~otone. and {nl} is a what kind of figure is when the next meet, further anxious?
QUEST_UNUSED_20150317_000019 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}
QUEST_UNUSED_20150317_000020 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?
QUEST_UNUSED_20150317_000021 What so I'm going important that actually bet. I met me is, it is not more important. In {nl}, waiting on the Klaipeda.
QUEST_UNUSED_20150317_000022 Have been. You really've got to impress me. {nl} Do you accept now expect a more grown-up appearance?
QUEST_UNUSED_20150317_000023 I think it 's assume is filled with the grace of goddess than when you first came to the Klaipeda. {nl} I want to know your faith is how deep. {nl}
QUEST_UNUSED_20150317_000024 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.
QUEST_UNUSED_20150317_000025 Goddess less our enemy and we do not have differences. In {nl}, I will see you on the Klaipeda.
QUEST_UNUSED_20150317_000026 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.
QUEST_UNUSED_20150317_000027 Previous quiet here there is no time temporarily or quiet now monsters.
QUEST_UNUSED_20150317_000028 If you leave only my monster, it is to find and attack the soul that gather here.
QUEST_UNUSED_20150317_000029 People are now better Denis mood decreased even a little.
QUEST_UNUSED_20150317_000030 People has decided to let buried the remains of family here. {nl} now it has been left on the land for uncovering monster all.
QUEST_UNUSED_20150317_000031 Here is time that that was heard little by little sad cries of bereaved family was ... the best of times.
QUEST_UNUSED_20150317_000032 Although relics you have not met yet is Groß, even look but I think that was good.
QUEST_UNUSED_20150317_000033 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.
QUEST_UNUSED_20150317_000034 What might, but I feel that we are only in something
QUEST_UNUSED_20150317_000035 It 's was Demon still. {nl} Here people the tranquility in had defiled.
QUEST_UNUSED_20150317_000036 Soul fled to the north might know the information about the person.
QUEST_UNUSED_20150317_000037 Lost Spirit
QUEST_UNUSED_20150317_000038 I you're alive. {nl} However, is never safe you.
QUEST_UNUSED_20150317_000039 Demon does not know what sniff, but ... my barrier, you need to open always.
QUEST_UNUSED_20150317_000040 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?
QUEST_UNUSED_20150317_000041 Monster we will chase it tries to absorb the soul. {nl} to do would steeped in evil forces getting caught caught in them.
QUEST_UNUSED_20150317_000042 Thank you very much! {nl} I can leave aiming this gap.
QUEST_UNUSED_20150317_000043 Regret many souls
QUEST_UNUSED_20150317_000044 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.
QUEST_UNUSED_20150317_000045 Monster Why chase us. {nl} It is painful. Also died ..
QUEST_UNUSED_20150317_000046 The word is it true? Nante clogged length of {nl}.
QUEST_UNUSED_20150317_000047 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.
QUEST_UNUSED_20150317_000048 I want to leave before that gather people again.
QUEST_UNUSED_20150317_000049 Sacred Owl Sculpture
QUEST_UNUSED_20150317_000050 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!
QUEST_UNUSED_20150317_000051 Yes not to want to create to wander me deposited obtained remains and soul again ...
QUEST_UNUSED_20150317_000052 It is unscrupulous people while small.
QUEST_UNUSED_20150317_000053 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}
QUEST_UNUSED_20150317_000054 Soul responsible too many.
QUEST_UNUSED_20150317_000055 It is great!
QUEST_UNUSED_20150317_000056 Please proceed to the south. {nl} there will be a statue to go crack like me.
QUEST_UNUSED_20150317_000057 Gloomy Owl Sculpture
QUEST_UNUSED_20150317_000058 It is strange that living people come here. Do not look at the soul of {nl}, seems a few years have passed.
QUEST_UNUSED_20150317_000059 Thanks to you, the last few years you will be able to hold out.
QUEST_UNUSED_20150317_000060 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.
QUEST_UNUSED_20150317_000061 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
QUEST_UNUSED_20150317_000062 To that utilize a Groß number of image.
QUEST_UNUSED_20150317_000063 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.
QUEST_UNUSED_20150317_000064 If soul you have lost the way, we will look for another soul. {nl} bright trap, I'm tempted so the soul.
QUEST_UNUSED_20150317_000065 I I have had a lot of pitfalls.
QUEST_UNUSED_20150317_000066 Hollow Venter is to such should be in the neighborhood of Yorusu~euru. {nl} It is strange.
QUEST_UNUSED_20150317_000067 Peripheral hollow vendors need to defeat a swarm of ants seems to display. {nl} If you do not come out, will must be drag.
QUEST_UNUSED_20150317_000068 Or Will the monster Where appeared?
QUEST_UNUSED_20150317_000069 If this does not come out. {nl} There is a idea.
QUEST_UNUSED_20150317_000070 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}.
QUEST_UNUSED_20150317_000071 You will clearly represent the figure and you arrive.
QUEST_UNUSED_20150317_000072 This is the key .. barrier.
QUEST_UNUSED_20150317_000073 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.
QUEST_UNUSED_20150317_000074 Sometimes in the soul, there are those who serve and left to than receive India. The soul is such a category.
QUEST_UNUSED_20150317_000075 Guiding Spirit
QUEST_UNUSED_20150317_000076 Hello! {nl} Oh, I Are You to be folded alive.
QUEST_UNUSED_20150317_000077 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!
QUEST_UNUSED_20150317_000078 Me? To my story, is often too circumstances ...
QUEST_UNUSED_20150317_000079 When getting rid of Demon, had its load is thought lost. {nl} I it was not. Thank you for opening the door.
QUEST_UNUSED_20150317_000080 Please listen to the advice in the soul of the assistant. {nl} get lost and need help to soul.
QUEST_UNUSED_20150317_000081 I troubled. The force is, also let's do if the Demon?
QUEST_UNUSED_20150317_000082 Oh, but I you say the soul. {nl} It has been lost in the place a high hill.
QUEST_UNUSED_20150317_000083 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.
QUEST_UNUSED_20150317_000084 Thing is for sure, it is never that it is not until the group. {nl} However, I looks very confusing.
QUEST_UNUSED_20150317_000085 Unknown Spirit
QUEST_UNUSED_20150317_000086 We owl was waiting for you. {nl} welcome.
QUEST_UNUSED_20150317_000087 So has around there or black. {nl} sculptor like is looking at this forest, How sad conviction.
QUEST_UNUSED_20150317_000088 It is also is a sore chest look only remains that are scattered in front of it.
QUEST_UNUSED_20150317_000089 Red Puragiga are threatening us. Please see that you walk around there {nl}.
QUEST_UNUSED_20150317_000090 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.
QUEST_UNUSED_20150317_000091 How to protect I was thinking. And but's ear {nl} Fisherman swallowed soul, DP will be felt. {nl} If Fisherman visited swallowed DP.
QUEST_UNUSED_20150317_000092 I wait for the owl image
QUEST_UNUSED_20150317_000093 The Silent Forest (1)
QUEST_UNUSED_20150317_000094 I'll get rid of the Black Zigri
QUEST_UNUSED_20150317_000095 The Silent Forest (2)
QUEST_UNUSED_20150317_000096 The remains of the Notice / soul I told weak owl image.
QUEST_UNUSED_20150317_000097 The Silent Forest (3)
QUEST_UNUSED_20150317_000098 We propose is to confirm the barrier
QUEST_UNUSED_20150317_000099 The Silent Forest (4)
QUEST_UNUSED_20150317_000100 To provide that the try to find the soul
QUEST_UNUSED_20150317_000101 Spiritual Gift (1)
QUEST_UNUSED_20150317_000102 I'll get rid of the Puragi
QUEST_UNUSED_20150317_000103 Spiritual Gift (2)
QUEST_UNUSED_20150317_000104 I'll get rid of the Black Sakamoli
QUEST_UNUSED_20150317_000105 Spiritual Gift (3)
QUEST_UNUSED_20150317_000106 To provide as try to check the owl image
QUEST_UNUSED_20150317_000107 Spiritual Gift (4)
QUEST_UNUSED_20150317_000108 Checking /MAKING/2.5/TRACK_BEFORE/None
QUEST_UNUSED_20150317_000109 Relief request of owl image
QUEST_UNUSED_20150317_000110 I'll get rid of the Desmodus
QUEST_UNUSED_20150317_000111 Demon soaked in the Woods (1)
QUEST_UNUSED_20150317_000112 We propose to give help
QUEST_UNUSED_20150317_000113 Demon soaked in the Woods (2)
QUEST_UNUSED_20150317_000114 We propose that the visit the owl image
QUEST_UNUSED_20150317_000115 Soul Jäger (1)
QUEST_UNUSED_20150317_000116 We propose is to confirm the owl image
QUEST_UNUSED_20150317_000117 Soul Jäger (2)
QUEST_UNUSED_20150317_000118 We propose that you want to remove the trap
QUEST_UNUSED_20150317_000119 Soul Jäger (3)
QUEST_UNUSED_20150317_000120 I'll get rid of the Hallowventers
QUEST_UNUSED_20150317_000121 Soul Jäger (4)
QUEST_UNUSED_20150317_000122 I'll get rid of the Hallowventer
QUEST_UNUSED_20150317_000123 Opening the Barrier (1)
QUEST_UNUSED_20150317_000124 Opening the Barrier (2)
QUEST_UNUSED_20150317_000125 I willing to talk of soul in owl image
QUEST_UNUSED_20150317_000126 The Wandering Soul (1)
QUEST_UNUSED_20150317_000127 The Wandering Soul (2)
QUEST_UNUSED_20150317_000128 I'll get rid of the Dark Slime
QUEST_UNUSED_20150317_000129 The Wandering Soul (3)
QUEST_UNUSED_20150317_000130 Attack of Biteregina
QUEST_UNUSED_20150317_000131 Attack of Werewolf
QUEST_UNUSED_20150317_000132 Notice /! / Please defeat Werewolf!
QUEST_UNUSED_20150317_000133 Ma was occupied the tower of wizard monarch
QUEST_UNUSED_20150317_000134 Grace of Wealth [Pardoner Advancement] (4)
QUEST_UNUSED_20150317_000135 Behind closed doors of secret
QUEST_UNUSED_20150317_000136 I'll take the bet
QUEST_UNUSED_20150317_000137 I accept the test
QUEST_UNUSED_20150317_000138 Positive of curiosity
QUEST_UNUSED_20150317_000139 I'll do it
QUEST_UNUSED_20150317_000140 I interact with weak owl image
QUEST_UNUSED_20150317_000141 Enter Top Grip Peak
QUEST_UNUSED_20150317_000142 Move to the Top Grip Peak
QUEST_UNUSED_20150317_000143 Besiege Black Zigri
QUEST_UNUSED_20150317_000144 I'll defeat the Black Zigri
QUEST_UNUSED_20150317_000145 The recovered the remains
QUEST_UNUSED_20150317_000146 Collect the urn boxes scattered throughout the entrance of Top Grip Peak
QUEST_UNUSED_20150317_000147 Check the soul of the barrier
QUEST_UNUSED_20150317_000148 Come back to make sure the soul of the barrier
QUEST_UNUSED_20150317_000149 Lost souls and conversation
QUEST_UNUSED_20150317_000150 To talk to the lost souls to climb along the north of the road
QUEST_UNUSED_20150317_000151 I will talk to the lost souls
QUEST_UNUSED_20150317_000152 Red plastic machine treatment
QUEST_UNUSED_20150317_000153 I do red plastic machine treatment
QUEST_UNUSED_20150317_000154 Regret many souls and conversation
QUEST_UNUSED_20150317_000155 I will talk to regret many souls
QUEST_UNUSED_20150317_000156 Besiege Black Sakmoli
QUEST_UNUSED_20150317_000157 I'll defeat the Black Sakmoli
QUEST_UNUSED_20150317_000158 Besiege Black Sakmoli
QUEST_UNUSED_20150317_000159 Check the Owl Sculpture
QUEST_UNUSED_20150317_000160 I'll check the Owl Sculpture
QUEST_UNUSED_20150317_000161 Besiege the surging monsters
QUEST_UNUSED_20150317_000162 I'll defeat the surging monsters
QUEST_UNUSED_20150317_000163 Sprich mit dem Sacred Owl Sculpture
QUEST_UNUSED_20150317_000164 I'll talk to the Sacred Owl Sculpture
QUEST_UNUSED_20150317_000165 Besiege Desmodus
QUEST_UNUSED_20150317_000166 I'll defeat the Desmodus
QUEST_UNUSED_20150317_000167 Fisherman, and part recovery of DP
QUEST_UNUSED_20150317_000168 Fisherman, it has regained part of DP
QUEST_UNUSED_20150317_000169 Besiege Red Fisherman
QUEST_UNUSED_20150317_000170 Conversation with gloomy owl image
QUEST_UNUSED_20150317_000171 I interact with gloomy owl image
QUEST_UNUSED_20150317_000172 Check the empty owl image
QUEST_UNUSED_20150317_000173 I check the empty owl image
QUEST_UNUSED_20150317_000174 Pitfalls Delete soul
QUEST_UNUSED_20150317_000175 You want to delete by searching the pitfalls of soul
QUEST_UNUSED_20150317_000176 Load treatment of Necroventer
QUEST_UNUSED_20150317_000177 I will exterminate the load of Necroventer
QUEST_UNUSED_20150317_000178 Load treatment of soul of Jäger
QUEST_UNUSED_20150317_000179 Treatment of key keeper Hello vendor
QUEST_UNUSED_20150317_000180 I get the key to defeat key keeper Hello Venter
QUEST_UNUSED_20150317_000181 Key keeper
QUEST_UNUSED_20150317_000182 Load of hollow vendor
QUEST_UNUSED_20150317_000183 Soul and conversation of Assistant
QUEST_UNUSED_20150317_000184 I talk to the soul of the Assistant
QUEST_UNUSED_20150317_000185 I beat the monster to interfere
QUEST_UNUSED_20150317_000186 I have defeated the monster that interfere
QUEST_UNUSED_20150317_000187 Remnants extermination of Necroventer
QUEST_UNUSED_20150317_000188 Black slime extermination
QUEST_UNUSED_20150317_000189 I will defeat the black slime
QUEST_UNUSED_20150317_000190 Check the suspicious location
QUEST_UNUSED_20150317_000191 I confirm the suspected location
QUEST_UNUSED_20150317_000192 During the time limit, the defense of the region
QUEST_UNUSED_20150317_000193 I survive from between the time limit pounce monster attacks
QUEST_UNUSED_20150317_000194 Soul a conversation with unknown name
QUEST_UNUSED_20150317_000195 I will talk to the soul of unknown name
QUEST_UNUSED_20150317_000196 Monster extermination to block the road
QUEST_UNUSED_20150317_000197 Please defeat Biteregina
QUEST_UNUSED_20150317_000198 Besiege Biteregina
QUEST_UNUSED_20150317_000199 Werewolf appeared
QUEST_UNUSED_20150317_000200 Werewolf extermination that appeared suddenly
QUEST_UNUSED_20150317_000201 Werewolf extermination
QUEST_UNUSED_20150317_000202 Hamin treatment
QUEST_UNUSED_20150317_000203 Ma monarch search that occupied the tower of the wizard
QUEST_UNUSED_20150317_000204 Please find between monarch Helgasercle occupied the tower of the wizard.
QUEST_UNUSED_20150317_000205 Meet with the Schaden Merchant of Fedimian
QUEST_UNUSED_20150317_000206 Suddenly appeared Swordsman master and conversation
QUEST_UNUSED_20150317_000207 Somehow, Swordsman master noticed in front of you. Please try to divide the conversation.
QUEST_UNUSED_20150317_000208 Hidden Quest occurrence
QUEST_UNUSED_20150317_000209 Hidden Quest has occurred. Please Kill Banshee behind closed doors of Katyn.
QUEST_UNUSED_20150317_000210 The test of Swordsman master I was successfully completed. Please go find a Klaipeda of Swordsman master.
QUEST_UNUSED_20150317_000211 Banshee treatment
QUEST_UNUSED_20150317_000212 Suddenly appeared wizard master and conversation
QUEST_UNUSED_20150317_000213 Somehow, wizard master noticed in front of you. And try the conversation {nl}
QUEST_UNUSED_20150317_000214 Find Wizard Master
QUEST_UNUSED_20150317_000215 The test of the wizard master I was successfully completed. Please go find a Klaipeda of wizard master.
QUEST_UNUSED_20150317_000216 Archer Master and conversation that appeared suddenly
QUEST_UNUSED_20150317_000217 Somehow, I noticed bow master in front of you. Please try to divide the conversation.
QUEST_UNUSED_20150317_000218 Hidden Quest has occurred. Please Kill Banshee behind closed doors of Katyn
QUEST_UNUSED_20150317_000219 The master of the test of Archer I was successfully completed. Please go to find a Klaipeda of Archer of master.
QUEST_UNUSED_20150317_000220 Cleric master and conversation that appeared suddenly
QUEST_UNUSED_20150317_000221 Somehow, Cleric master noticed in front of you. Please try to divide the conversation.
QUEST_UNUSED_20150317_000222 The test of Cleric master I was successfully completed. Please go find a Klaipeda of Cleric master.
QUEST_UNUSED_20150317_000223 Gatekeeper owl is good to examine you. Please try to talk to the gatekeeper owl.
QUEST_UNUSED_20150317_000224 Available from the Cathedral of marble sculpture
QUEST_UNUSED_20150317_000225 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.
QUEST_UNUSED_20150317_000226 Marble sculpture transferred to the sculptor Tesla
QUEST_UNUSED_20150317_000227 You have collected enough marble parts. Deliver them to sculptor Tesla in Rhombuspaving Dale.
QUEST_UNUSED_20150323_000228 Enter Kule Peak
QUEST_UNUSED_20150323_000229 Move to Kule Peak
QUEST_UNUSED_20150323_000230 Collect the Remains' boxes that are scattered across Kule Peak
QUEST_UNUSED_20150323_000231 It seems that you've collected enough marble pieces. Take the marble pieces to the sculptor Tesla at Vieta Valley.
QUEST_UNUSED_20150714_000232 Please get rid of the monsters around here.{nl}I've heard that the monsters turned violent at Ruteoma, 1st historic site.
QUEST_UNUSED_20150714_000233 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.
QUEST_UNUSED_20150714_000234 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.
QUEST_UNUSED_20150714_000235 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}
QUEST_UNUSED_20150714_000236 Ah, there is one other place that we haven't searched yet. Polsas Highway.{nl}Can you go there for me?
QUEST_UNUSED_20150714_000237 Is everything going alright?{nl}Maybe, I haven't thought deeply enough.
QUEST_UNUSED_20150714_000238 These are reseach materials. Tell Cryomancer Master that you are handing over these on behalf of Gitis.
QUEST_UNUSED_20150714_000239 There is a gigantic monster that controls those wood goblins.
QUEST_UNUSED_20150714_000240 You may encounter the Giant Wood Goblin at Laukyme Swampy Place.{nl}If so, please defeat it.
QUEST_UNUSED_20150714_000241 It is very strong. Be careful.
QUEST_UNUSED_20150714_000242 If you face it, I hope you are with other people.
QUEST_UNUSED_20150714_000243 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.
QUEST_UNUSED_20150714_000244 Placing handouts
QUEST_UNUSED_20150714_000245 Anzünden
QUEST_UNUSED_20150714_000246 Notice/Delivered the soul remains to the Weak Owl Sculpture
QUEST_UNUSED_20150714_000247 Setting up the key
QUEST_UNUSED_20150714_000248 Putting the bait
QUEST_UNUSED_20150714_000249 Using the herbicide
QUEST_UNUSED_20150714_000250 Notice/Destroy the supplies box and chase the runaway Vubbe!#10
QUEST_UNUSED_20150714_000251 Notice/Chase the runaway Vubbes!#8
QUEST_UNUSED_20150714_000252 Notice/Move to the next region#5
QUEST_UNUSED_20150714_000253 Notice/!/Besiege the Lepus that's blocking the way!#8
QUEST_UNUSED_20150714_000254 Notice/!/You defeated the the Lepus that was blocking the way!#8
QUEST_UNUSED_20150714_000255 Burning
QUEST_UNUSED_20150714_000256 I can't read it if I can't see it.
QUEST_UNUSED_20150714_000257 Discarding Blind Shells (1)
QUEST_UNUSED_20150714_000258 What do I need to do?
QUEST_UNUSED_20150714_000259 You do it yourself.
QUEST_UNUSED_20150714_000260 Discarding Blind Shells (2)
QUEST_UNUSED_20150714_000261 I'll take care of the blind shells.
QUEST_UNUSED_20150714_000262 Until the last one
QUEST_UNUSED_20150714_000263 I will try my best
QUEST_UNUSED_20150714_000264 He is too much for me
QUEST_UNUSED_20150714_000265 Discarding Blind Shells (3)
QUEST_UNUSED_20150714_000266 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.
QUEST_UNUSED_20150714_000267 The Sapper Master is trying to explain how you can get rid of the blind shells. Sprich mit Sapper Master.
QUEST_UNUSED_20150714_000268 Disable the Blind Shells
QUEST_UNUSED_20150714_000269 Retrieve the blind shells using the bomb eliminating tools as instructed by the Sapper Master.
QUEST_UNUSED_20150714_000270 Deliver the blind shells to the Sapper Master.
QUEST_UNUSED_20150714_000271 It seems that Jeffery still has some matters to resolve. Sprich mit him.
QUEST_UNUSED_20150714_000272 Besiege Giant Wood Goblin
QUEST_UNUSED_20150714_000273 Jeffery has asked you to defeat the giant wood goblin that is commanding other wood goblins.
QUEST_UNUSED_20150714_000274 You've succeeded defeating the giant wood goblin. Tell this to Jeffery.
QUEST_UNUSED_20150717_000275 Kupole Meile
QUEST_UNUSED_20150717_000276 Svitrigaila
QUEST_UNUSED_20150717_000277 Avoid the Petrifying Frost
QUEST_UNUSED_20150717_000278 What is in the box...?
QUEST_UNUSED_20150717_000279 The seal which the monster possesses
QUEST_UNUSED_20150717_000280 I'll get it for you.
QUEST_UNUSED_20150717_000281 I'm not really interested in it.
QUEST_UNUSED_20150717_000282 Look at the Petrification Detector
QUEST_UNUSED_20150717_000283 Have a look at the Petrification Detector at the entrance to the Coastal Fortress.
QUEST_UNUSED_20150717_000284 Avoid the Petrifying Frost
QUEST_UNUSED_20150717_000285 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!
QUEST_UNUSED_20150717_000286 Open the Schatztruhe
QUEST_UNUSED_20150717_000287 The treasure chest at Coastal Fortress looks suspicious. Get near it and open it.
QUEST_UNUSED_20150717_000288 Avoid the Petrifying Frost and defeat the monsters
QUEST_UNUSED_20150717_000289 Upon opening the chest, fainted Petrifying Frost appeared and nearby monsters started to attack! Avoid the frost and defeat all the monsters.
QUEST_UNUSED_20150717_000290 Sprich mit Wilhelmina Carriot
QUEST_UNUSED_20150717_000291 Obtain Ruklys' Army Seals and Parchments
QUEST_UNUSED_20150717_000292 Collect any useful information at the Fortress of the Land.
QUEST_UNUSED_20150729_000293 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.
QUEST_UNUSED_20150729_000294 {nl}There are Petrification Detectors, but it seems some of them aren't working...{nl}Will you inspect the detectors for me?
QUEST_UNUSED_20150729_000295 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.
QUEST_UNUSED_20150729_000296 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.
QUEST_UNUSED_20150729_000297 If only all the detectors were working...
QUEST_UNUSED_20150729_000298 Oh, I see.{nl}So two of them aren't working.
QUEST_UNUSED_20150729_000299 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.
QUEST_UNUSED_20150729_000300 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...
QUEST_UNUSED_20150729_000301 {nl}The disaster they caused was unimaginable...{nl}It was so bad it forced the goddesses to give up on saving this petrified land...
QUEST_UNUSED_20150729_000302 Retia is at Verkti Square.{nl}Hm? You already knew?
QUEST_UNUSED_20150729_000303 The Petrification Detectors at the Coastal Fortress aren't working.{nl}I'm aware of that. They were broken.
QUEST_UNUSED_20150729_000304 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...
QUEST_UNUSED_20150729_000305 {nl}Will you look for them?
QUEST_UNUSED_20150729_000306 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...
QUEST_UNUSED_20150729_000307 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.
QUEST_UNUSED_20150729_000308 The backup forces are all gone... It's a shame...{nl}Their spirits will need to be guided too...
QUEST_UNUSED_20150729_000309 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.
QUEST_UNUSED_20150729_000310 Those are the parts.{nl}You should go and fix the detectors now.{nl}Beware of Petrifying Frost.
QUEST_UNUSED_20150729_000311 After all the detectors are back to normal I want to guide the spirits to their rest place.
QUEST_UNUSED_20150729_000312 Please, do me this favor.
QUEST_UNUSED_20150729_000313 Oh, all of them are working now.{nl}Thank you.{nl}I can finally start guiding the spirits now.
QUEST_UNUSED_20150729_000314 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.
QUEST_UNUSED_20150729_000315 Who're you? Stay back.{nl}Or... Maybe if you can help me...
QUEST_UNUSED_20150729_000316 Priest Juta
QUEST_UNUSED_20150729_000317 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}
QUEST_UNUSED_20150729_000318 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...
QUEST_UNUSED_20150729_000319 Really? Thank you for your words.{nl}Prayers were hard to do alone.{nl}
QUEST_UNUSED_20150729_000320 Please take care of the bodies around here, then.{nl}Meanwhile I'll be preparing and praying to the goddess.
QUEST_UNUSED_20150729_000321 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...
QUEST_UNUSED_20150729_000322 Oh, you're back. Thanks to you I was able to pray properly.{nl}I mean... There's no answer like before but...
QUEST_UNUSED_20150729_000323 I'll inspect them.
QUEST_UNUSED_20150729_000324 Signal
QUEST_UNUSED_20150729_000325 Den Schwanz abschneiden (1)
QUEST_UNUSED_20150729_000326 Den Schwanz abschneiden (2)
QUEST_UNUSED_20150729_000327 Den Schwanz abschneiden (3)
QUEST_UNUSED_20150729_000328 Eine Sackgasse (1)
QUEST_UNUSED_20150729_000329 Eine Sackgasse (2)
QUEST_UNUSED_20150729_000330 Eine Sackgasse (3)
QUEST_UNUSED_20150729_000331 Archive Shelter
QUEST_UNUSED_20150729_000332 Elegant Demon Lord
QUEST_UNUSED_20150729_000333 The Journey to Find Myself (1)
QUEST_UNUSED_20150729_000334 The Journey to Find Myself (2)
QUEST_UNUSED_20150729_000335 The Journey to Find Myself (3)
QUEST_UNUSED_20150729_000336 The Journey to Find Myself (4)
QUEST_UNUSED_20150729_000337 The Journey to Find Myself (5)
QUEST_UNUSED_20150729_000338 The Journey to Find Myself (6)
QUEST_UNUSED_20150729_000339 Ein Endloses Geschäft (1)
QUEST_UNUSED_20150729_000340 Ein Endloses Geschäft (2)
QUEST_UNUSED_20150729_000341 Ein Endloses Geschäft (3)
QUEST_UNUSED_20150729_000342 Ein Endloses Geschäft (4)
QUEST_UNUSED_20150729_000343 The Legwyn Family's Tragedy (1)
QUEST_UNUSED_20150729_000344 The Legwyn Family's Tragedy (2)
QUEST_UNUSED_20150729_000345 The Legwyn Family's Tragedy (3)
QUEST_UNUSED_20150729_000346 Progress
QUEST_UNUSED_20150730_000347 Repairing/HAMMERING/5/TRACK_AFTER/None
QUEST_UNUSED_20150730_000348 Notice/The detector was activated!#5
QUEST_UNUSED_20150730_000349 Repairing/HAMMERING/3/TRACK_BEFORE/None
QUEST_UNUSED_20150803_000350 Sprich mit Member Irmantas
QUEST_UNUSED_20150803_000351 Go meet Member Grazina
QUEST_UNUSED_20150803_000352 You can hear someone calling somebody
QUEST_UNUSED_20150803_000353 Sprich mit Member Grazina
QUEST_UNUSED_20150803_000354 Hand over the goods to Member Irmantas
QUEST_UNUSED_20150803_000355 Go meet with Member Alina
QUEST_UNUSED_20150803_000356 Sprich mit Member Alina
QUEST_UNUSED_20150803_000357 Sprich mit Member Allin
QUEST_UNUSED_20150804_000358 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, Sprich mit Historian Rexipher.
QUEST_UNUSED_20150908_000359 Getting rid of it
QUEST_UNUSED_20150908_000360 There aren't any traces of the storage left
QUEST_UNUSED_20150908_000361 Besiege the monster that is blocking the way!
QUEST_UNUSED_20150908_000362 Completed defeating the monster that is blocking the way!
QUEST_UNUSED_20150908_000363 You've passed the box of the spirits to the owl sculpture.
QUEST_UNUSED_20150908_000364 Besiege the Werewolf!
QUEST_UNUSED_20150908_000365 Besiege the Muscharia that suddenly appeared!
QUEST_UNUSED_20150908_000366 Praying for the dead
QUEST_UNUSED_20150908_000367 Praying for the dead
QUEST_UNUSED_20150908_000368 You've prayed for the dead soldier!
QUEST_UNUSED_20150908_000369 Looking through it
QUEST_UNUSED_20150908_000370 Digging it
QUEST_UNUSED_20150908_000371 Destroy the treasure chest and defeat the runaway Vubbe!
QUEST_UNUSED_20150908_000372 Chase the runaway Vubbes!
QUEST_UNUSED_20150908_000373 Move to another region
QUEST_UNUSED_20150908_000374 The monsters appeared near the broken owl sculpture!
QUEST_UNUSED_20150908_000375 As you tried to light it up, the monsters suddenly appeared!{nl}Besiege them first and light up the fire again!
QUEST_UNUSED_20150908_000376 You've burnt the owl sculpture well!
QUEST_UNUSED_20150908_000377 Lighting it up
QUEST_UNUSED_20150908_000378 Besiege all the monsters while protecting the fire around the pile of sculptures
QUEST_UNUSED_20150908_000379 Besiege the Lepus that's blocking the way!
QUEST_UNUSED_20150908_000380 You have defeated the Lepus that was blocking the way!
QUEST_UNUSED_20150908_000381 Siaulambs are coming to stop you!
QUEST_UNUSED_20150918_000382 Did the Archer Master send you here?{nl}Klaipeda is becoming stable, but Fedimian is still like this.
QUEST_UNUSED_20150918_000383 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.
QUEST_UNUSED_20150918_000384 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.
QUEST_UNUSED_20150918_000385 Well Done. The monsters' force has reduced a bit as a result. {nl}Please pass my appreciation to Archer Master.
QUEST_UNUSED_20150918_000386 Thanks. {nl}As a Cleric Master, I will help you to fulfill bigger mission.
QUEST_UNUSED_20150918_000387 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.
QUEST_UNUSED_20150918_000388 Of course, I should repay you first as a Squire Master.
QUEST_UNUSED_20150918_000389 The Collection of the collectors
QUEST_UNUSED_20150918_000390 Besiege the monsters that are blocking the way!
QUEST_UNUSED_20150918_000391 You've defeated all the monsters that are blocking the way!
QUEST_UNUSED_20150918_000392 Sprich mit dem collector
QUEST_UNUSED_20150918_000393 Obtained the collections
QUEST_UNUSED_20151001_000394 So you are the Revelator who dreamt of the dream of the goddesses.{nl}I am Uska, the Knight Commander in charge of both Siaulai and Klaipeda.
QUEST_UNUSED_20151001_000395 The kingdom lost all hope.{nl}Without the will to stand up again.. calling at the name of the goddesses.{nl}
QUEST_UNUSED_20151001_000396 To tell you the truth, I can't just see you Revelators positively.{nl}Since I am in charge of one city..{nl}
QUEST_UNUSED_20151001_000397 We should not experience the depression again.
QUEST_UNUSED_20151001_000398 Anyways, the bishop also dreamt of the revelation.{nl}He told me that when the Revelator comes, he should go to Crystal Mine.{nl}
QUEST_UNUSED_20151001_000399 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.
QUEST_UNUSED_20151001_000400 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}
QUEST_UNUSED_20151001_000401 Hey. You're that famous Revelator, aren't ya?{nl}Seems like you're interested in the Fortress of the Land.{nl}
QUEST_UNUSED_20151001_000402 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}
QUEST_UNUSED_20151001_000403 Be careful not to get detected by kingdom soldiers.{nl}Even if you get caught, just laugh and pretend there's nothing.
QUEST_UNUSED_20151001_000404 You've seen Gargoyle Sculpture at the gathering place right?{nl}That's the Gargoyle.{nl}
QUEST_UNUSED_20151001_000405 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 supress them with our force.
QUEST_UNUSED_20151001_000406 Poata at the east forest of Siaulai are threatening the villagers.{nl}If you could eliminate them in the name of the goddesses, I will teach you my magic.
QUEST_UNUSED_20151001_000407 When I saw you for the first time, you looked too awkward.. but.{nl}Now, you became more famous than me.{nl}
QUEST_UNUSED_20151001_000408 Well done.{nl}When you gain some experiences and learn swordsmanship from me, you will become a good knight.
QUEST_UNUSED_20151001_000409 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}
QUEST_UNUSED_20151001_000410 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?
QUEST_UNUSED_20151001_000411 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.
QUEST_UNUSED_20151001_000412 So you've come.{nl}He will be surprised when he checks it later.{nl}
QUEST_UNUSED_20151001_000413 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.
QUEST_UNUSED_20151001_000414 So you've come here to learn the skills of Fletcher.{nl}Remember, it would also cost you a lot.{nl}
QUEST_UNUSED_20151001_000415 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.
QUEST_UNUSED_20151001_000416 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.
QUEST_UNUSED_20151001_000417 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.
QUEST_UNUSED_20151001_000418 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}
QUEST_UNUSED_20151001_000419 Of course, I am satisfied with my partner, Rith, but I think these tries would help Falconer.
QUEST_UNUSED_20151001_000420 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.
QUEST_UNUSED_20151001_000421 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.
QUEST_UNUSED_20151001_000422 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.
QUEST_UNUSED_20151001_000423 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.
QUEST_UNUSED_20151001_000424 So you were not a bluff.{nl}I would be pleasant to teach you if your skills are like those.
QUEST_UNUSED_20151001_000425 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}
QUEST_UNUSED_20151001_000426 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.
QUEST_UNUSED_20151001_000427 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.
QUEST_UNUSED_20151001_000428 Have you passed it well?{nl}Then, you just have to learn from me.
QUEST_UNUSED_20151001_000429 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.
QUEST_UNUSED_20151001_000430 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.
QUEST_UNUSED_20151001_000431 You've found it well.{nl}Now, since we've taken care of urgent matter, I will acknowledge you with this.
QUEST_UNUSED_20151001_000432 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.
QUEST_UNUSED_20151001_000433 Besiege 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.
QUEST_UNUSED_20151001_000434 It seems that you are competent enough.{nl}As I promised to you, I will help you.
QUEST_UNUSED_20151001_000435 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}
QUEST_UNUSED_20151001_000436 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.
QUEST_UNUSED_20151001_000437 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.
QUEST_UNUSED_20151001_000438 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.
QUEST_UNUSED_20151001_000439 Good. Take this object and go to Mochia Forest.{nl}When you find someone, talk naturally and you have to tell him the passwords.
QUEST_UNUSED_20151001_000440 Demon Svitrigaila
QUEST_UNUSED_20151001_000441 Finally... You have come.{nl}Someone else besides miss Giltine...{nl}
QUEST_UNUSED_20151001_000442 I have a request to you.{nl}Lead me to a death.
QUEST_UNUSED_20151001_000443 The writings on the pillar
QUEST_UNUSED_20151001_000444 [Cleros' background]
QUEST_UNUSED_20151001_000445 {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.
QUEST_UNUSED_20151001_000446 {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.
QUEST_UNUSED_20151001_000447 {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.
QUEST_UNUSED_20151001_000448 [The death of Cleros]
QUEST_UNUSED_20151001_000449 {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.
QUEST_UNUSED_20151001_000450 {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.
QUEST_UNUSED_20151001_000451 [After the death of Cleros]
QUEST_UNUSED_20151001_000452 {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.
QUEST_UNUSED_20151001_000453 {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.
QUEST_UNUSED_20151001_000454 Writings on the Pillar
QUEST_UNUSED_20151001_000455 [Rumpelstiltskin and the Moon]
QUEST_UNUSED_20151001_000456 {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.
QUEST_UNUSED_20151001_000457 {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.
QUEST_UNUSED_20151001_000458 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.
QUEST_UNUSED_20151001_000459 [Rumpelstiltskin and Lydia Schaffen's Pfeil]
QUEST_UNUSED_20151001_000460 {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.
QUEST_UNUSED_20151001_000461 {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.
QUEST_UNUSED_20151001_000462 [Rumpelstiltskin's Whereabouts]
QUEST_UNUSED_20151001_000463 {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.
QUEST_UNUSED_20151001_000464 {nl}Or, he could be wandering about in our world, looking for any other arrows Lydia Schaffen might have left behind.
QUEST_UNUSED_20151001_000465 Leopoldas
QUEST_UNUSED_20151001_000466 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.
QUEST_UNUSED_20151001_000467 {nl}Since we've been introduced, shall we... maybe have a chat?
QUEST_UNUSED_20151001_000468 Our merchants?{nl}Since you are interested, shall I tell you?
QUEST_UNUSED_20151001_000469 {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.
QUEST_UNUSED_20151001_000470 {nl}That's right. We're the ones who did all of that.{nl}Surprised?
QUEST_UNUSED_20151001_000471 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!
QUEST_UNUSED_20151001_000472 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.
QUEST_UNUSED_20151001_000473 See ya next time.
QUEST_UNUSED_20151001_000474 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.
QUEST_UNUSED_20151001_000475 It shouldn't be that hard.
QUEST_UNUSED_20151001_000476 Be careful not to break it.
QUEST_UNUSED_20151001_000477 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.
QUEST_UNUSED_20151001_000478 Antanas
QUEST_UNUSED_20151001_000479 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.
QUEST_UNUSED_20151001_000480 {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?
QUEST_UNUSED_20151001_000481 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.
QUEST_UNUSED_20151001_000482 There's two things we need.{nl}Listen closely. {nl}Get some lime powder from monsters, and then some flat stones for construction.
QUEST_UNUSED_20151001_000483 {nl}You'll be busy.
QUEST_UNUSED_20151001_000484 Good luck!
QUEST_UNUSED_20151001_000485 Wow, you did great.
QUEST_UNUSED_20151001_000486 That.. is that from the monsters of the Fortress of the Land?{nl}Ruklys army used to have it in the past.{nl}
QUEST_UNUSED_20151001_000487 The object that you've brought will aid us in our research.{nl}Can you get us some more?
QUEST_UNUSED_20151001_000488 I didn't expect the monsters at the Fortress of the Land have this..{nl}This is very interesting.
QUEST_UNUSED_20151001_000489 This is enough. {nl}Thank you for helping our research.
QUEST_UNUSED_20151001_000490 What's up?{nl}Are you giving this to me?{nl}
QUEST_UNUSED_20151001_000491 This is surprising. It's telling all about the lives of past soldiers.{nl}I should send this to the headquarters. Thank you.
QUEST_UNUSED_20151001_000492 No!{nl}Please don't take it away from me..
QUEST_UNUSED_20151001_000493 That's a bomb.. Is that a blind shell?{nl}Can I take a look at it?
QUEST_UNUSED_20151001_000494 This is very old!{nl}These kind of bombs can only be seen in the books.
QUEST_UNUSED_20151001_000495 Soldier Spirit
QUEST_UNUSED_20151001_000496 I wasn't able to send an order to retreat.{nl}I should have blew the horn...
QUEST_UNUSED_20151001_000497 If they don't retreat we're going to be annihilated.{nl}The horn...
QUEST_UNUSED_20151001_000498 Thank you. Where do you belong to?{nl}I should get back to Ruklys now.
QUEST_UNUSED_20151001_000499 Wait! Listen to what he is saying.{nl}He is saying if I want to get the treasure of our family back, I should give him the blessed crystal.{nl}
QUEST_UNUSED_20151001_000500 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}
QUEST_UNUSED_20151001_000501 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 Blue dyes.
QUEST_UNUSED_20151001_000502 I am sure this man tries to run away while I am gone to look for Blue Dyes!{nl}Can you help me?
QUEST_UNUSED_20151001_000503 Sorry. I guess I was too upset. I will tell you slowly. {nl}I am a friend of Squire Master, Justina Legwyn.{nl}
QUEST_UNUSED_20151001_000504 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}
QUEST_UNUSED_20151001_000505 The old man tries to fulfill his greed.{nl}Poor Justina..{nl}
QUEST_UNUSED_20151001_000506 You would be able to obtain Blue Dyes from the monsters at Apgaudin Crossroads.{nl}I am counting on you.
QUEST_UNUSED_20151001_000507 Does she know how much is the Dead Scroll?{nl}Well.. I don't care anymore.{nl}
QUEST_UNUSED_20151001_000508 I am experiencing this shame because of him. I can't stand it anymore.{nl}Find Gailus Legwyn with this and ask him yourself!{nl}
QUEST_UNUSED_20151001_000509 Look for the seal of Mires Grave{nl}I hear he died near there.
QUEST_UNUSED_20151001_000510 He doesn't want to back off until he receives the blessed crystal back.{nl}He is so tenacious.
QUEST_UNUSED_20151001_000511 Oh my, goddess!{nl}I didn't expect that I would meet a human here..{nl}
QUEST_UNUSED_20151001_000512 Please help me.{nl}I am being chased by the chasers and the demons fro the tower of the stars.{nl}
QUEST_UNUSED_20151001_000513 Can you stand by me until I notify to other colleagues using the signal?{nl}I have to let other two colleagues who came here that I am still alive.
QUEST_UNUSED_20151001_000514 Chasers came here..{nl}I might be in a danger if it wasn't you.
QUEST_UNUSED_20151001_000515 You.. It's like as if the goddesses are beside you.{nl}Okay. I am sure you are better than that Giltine.{nl}
QUEST_UNUSED_20151001_000516 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}
QUEST_UNUSED_20151001_000517 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}
QUEST_UNUSED_20151001_000518 I know that you can't trust me.{nl}But, please save this pilgrim.{nl}If you get the blue black herb, you can save him.
QUEST_UNUSED_20151001_000519 (Seems to be unconscious)
QUEST_UNUSED_20151001_000520 You can save Agatas with this.{nl}There's nothing I can pay for your kindness.{nl}
QUEST_UNUSED_20151001_000521 I just look like a demon that should be eliminated to your eyes right?{nl}But, when Agatas wakes up, he would explain everything to you.
QUEST_UNUSED_20151001_000522 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}
QUEST_UNUSED_20151001_000523 You know the Fortress of the Land was Ruklys' last battlefield, right?{nl}It was excavated from the ground like a tunnel.{nl}
QUEST_UNUSED_20151001_000524 The Royal Army are all over it now, protecting it.{nl}Isn't it weird?
QUEST_UNUSED_20151001_000525 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}
QUEST_UNUSED_20151001_000526 Maybe some black deals were going back and forth behind the kingdom.{nl}If that's not it, why are they protecting this?{nl}
QUEST_UNUSED_20151001_000527 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}
QUEST_UNUSED_20151001_000528 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}
QUEST_UNUSED_20151001_000529 First, gather the records from Ruklys' era in the assembly area.{nl}We need them to get pass the guarding Gargoyle.
QUEST_UNUSED_20151001_000530 Bokor Juta
QUEST_UNUSED_20151001_000531 I'm looking for Goddess Zemyna.{nl}Everyone knows the goddess is missing.{nl}
QUEST_UNUSED_20151001_000532 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}
QUEST_UNUSED_20151001_000533 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}
QUEST_UNUSED_20151001_000534 I should pray to the goddesses to check whether he is around here.
QUEST_UNUSED_20151001_000535 Really? Thank you for your words.{nl}Prayers were hard to do alone.{nl}
QUEST_UNUSED_20151001_000536 Then I am counting on you for the deads at the casket room.{nl}I will pray to the goddess in the meantime.
QUEST_UNUSED_20151001_000537 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.
QUEST_UNUSED_20151001_000538 Ah, so you've returned. {nl}Because of you, the deads didn't attack me while I was praying.{nl}
QUEST_UNUSED_20151001_000539 But, even here, the prayer didn't reach the goddess.
QUEST_UNUSED_20151001_000540 Shaman Puppe [Bokor Advancement]
QUEST_UNUSED_20151001_000541 The dead body of the mercenary who has fallen
QUEST_UNUSED_20151001_000542 Ask him what you should do
QUEST_UNUSED_20151001_000543 Reject
QUEST_UNUSED_20151001_000544 Lydia Schaffen and the Fletcher's Pfeil [Fletcher Advancement]
QUEST_UNUSED_20151001_000545 I will look for the arrow
QUEST_UNUSED_20151001_000546 Quit since you are not confident enough
QUEST_UNUSED_20151001_000547 How can I tame the monster?
QUEST_UNUSED_20151001_000548 That's absurd
QUEST_UNUSED_20151001_000549 Perfect Shot [Schwarzer Reiter Advancement]
QUEST_UNUSED_20151001_000550 I am confident
QUEST_UNUSED_20151001_000551 Das ist nicht wahr
QUEST_UNUSED_20151001_000552 Ich werde es weitergeben
QUEST_UNUSED_20151001_000553 I don't want to do it
QUEST_UNUSED_20151001_000554 I will go get the book
QUEST_UNUSED_20151001_000555 I will come back later
QUEST_UNUSED_20151001_000556 I will resolve it
QUEST_UNUSED_20151001_000557 I need some time to think
QUEST_UNUSED_20151001_000558 Someone's Record (1)
QUEST_UNUSED_20151001_000559 Scraping off dust
QUEST_UNUSED_20151001_000560 Upon seeing the black dust fall off the pilar, the monsters came running!
QUEST_UNUSED_20151001_000561 Brushing off the black powders
QUEST_UNUSED_20151001_000562 After brushing off the black dust, the thing underneath looks like a record!
QUEST_UNUSED_20151001_000563 Someone's Record (2)
QUEST_UNUSED_20151001_000564 The sea sparkles aren't shining, probably because it's daytime.{nl}Get some monster oil from nearby monsters to feed the sea sparkles!
QUEST_UNUSED_20151001_000565 To read the words you need to collect monster oil!
QUEST_UNUSED_20151001_000566 Looking at it again
QUEST_UNUSED_20151001_000567 The sea sparkles are beginning to shine!
QUEST_UNUSED_20151001_000568 Someone's Record (3)
QUEST_UNUSED_20151001_000569 Looking at the pillar
QUEST_UNUSED_20151001_000570 Stand close to the pillar and speak out the numbers!
QUEST_UNUSED_20151001_000571 Reading the writings on the pillar
QUEST_UNUSED_20151001_000572 Carvings on the Pillar (1)
QUEST_UNUSED_20151001_000573 It's too dark to see! Collect some shining moss from nearby!
QUEST_UNUSED_20151001_000574 Reading the writings on the pillar
QUEST_UNUSED_20151001_000575 Due to shining moss, you are able to read what the writings say!
QUEST_UNUSED_20151001_000576 Carvings on the Pillar (2)
QUEST_UNUSED_20151001_000577 The pillar collapsed without even being touched!{nl}Collect some viscous liquid from monsters to repair the pillar!
QUEST_UNUSED_20151001_000578 You need viscous liquid
QUEST_UNUSED_20151001_000579 Repairing the pillar
QUEST_UNUSED_20151001_000580 Carvings on the Pillar (3)
QUEST_UNUSED_20151001_000581 Putting in the pieces
QUEST_UNUSED_20151001_000582 You can read the letters!
QUEST_UNUSED_20151001_000583 Collecting the Sacred Object (4)
QUEST_UNUSED_20151001_000584 I will go excavate it
QUEST_UNUSED_20151001_000585 Excavating the Sacred Object
QUEST_UNUSED_20151001_000586 You've discovered the sacred object!
QUEST_UNUSED_20151001_000587 I will collect them
QUEST_UNUSED_20151001_000588 I won't go in again
QUEST_UNUSED_20151001_000589 The story written about the Ruklys Army
QUEST_UNUSED_20151001_000590 Order to Retreat
QUEST_UNUSED_20151001_000591 Das Abenteuer beginnt (1)
QUEST_UNUSED_20151001_000592 Das Abenteuer beginnt (2)
QUEST_UNUSED_20151001_000593 Das Abenteuer beginnt (3)
QUEST_UNUSED_20151001_000594 Das Abenteuer beginnt (4)
QUEST_UNUSED_20151001_000595 Orsha (1)
QUEST_UNUSED_20151001_000596 Orsha (2)
QUEST_UNUSED_20151001_000597 Orsha (3)
QUEST_UNUSED_20151001_000598 A Thankful Heart
QUEST_UNUSED_20151001_000599 Something to Give
QUEST_UNUSED_20151001_000600 Verloren im Wald (1)
QUEST_UNUSED_20151001_000601 Verloren im Wald (2)
QUEST_UNUSED_20151001_000602 An Unowned Object
QUEST_UNUSED_20151001_000603 Unsafe Safety Zone
QUEST_UNUSED_20151001_000604 The Settler Without Rest
QUEST_UNUSED_20151001_000605 The Missing Bishop (1)
QUEST_UNUSED_20151001_000606 The Missing Bishop (2)
QUEST_UNUSED_20151001_000607 The Missing Bishop (3)
QUEST_UNUSED_20151001_000608 The Missing Bishop (4)
QUEST_UNUSED_20151001_000609 The Missing Bishop (5)
QUEST_UNUSED_20151001_000610 The Burnt Whereabouts (1)
QUEST_UNUSED_20151001_000611 The Burnt Whereabouts (2)
QUEST_UNUSED_20151001_000612 Search for the Erased Traces (5)
QUEST_UNUSED_20151001_000613 Search for the Erased Traces (6)
QUEST_UNUSED_20151001_000614 Überarbeiteter Agent
QUEST_UNUSED_20151001_000615 Entferne den Gestank
QUEST_UNUSED_20151001_000616 Abwendung
QUEST_UNUSED_20151001_000617 Monster Colony (1)
QUEST_UNUSED_20151001_000618 Monster Colony (2)
QUEST_UNUSED_20151001_000619 Groß-Scale Search Operation (1)
QUEST_UNUSED_20151001_000620 Groß-Scale Search Operation (2)
QUEST_UNUSED_20151001_000621 Groß-Scale Search Operation (3)
QUEST_UNUSED_20151001_000622 Groß-Scale Search Operation (4)
QUEST_UNUSED_20151001_000623 Groß-Scale Search Operation (5)
QUEST_UNUSED_20151001_000624 Groß-Scale Search Operation (6)
QUEST_UNUSED_20151001_000625 Support Activities
QUEST_UNUSED_20151001_000626 The Suspicious Location
QUEST_UNUSED_20151001_000627 Voruntersuchung (1)
QUEST_UNUSED_20151001_000628 Voruntersuchung (2)
QUEST_UNUSED_20151001_000629 Die verdorbenen Monster
QUEST_UNUSED_20151001_000630 Precious Life and Money
QUEST_UNUSED_20151001_000631 Retrieve the capital
QUEST_UNUSED_20151001_000632 The Dangerous Trace (1)
QUEST_UNUSED_20151001_000633 The Dangerous Trace (2)
QUEST_UNUSED_20151001_000634 The Dangerous Trace (3)
QUEST_UNUSED_20151001_000635 Bishop Urbonas' Whereabouts (1)
QUEST_UNUSED_20151001_000636 Bishop Urbonas' Whereabouts (2)
QUEST_UNUSED_20151001_000637 Bishop Urbonas' Whereabouts (3)
QUEST_UNUSED_20151001_000638 Bishop Urbonas' Whereabouts (4)
QUEST_UNUSED_20151001_000639 Bishop Urbonas' Whereabouts (5)
QUEST_UNUSED_20151001_000640 Bishop Urbonas' Whereabouts (6)
QUEST_UNUSED_20151001_000641 Bishop Urbonas' Whereabouts (7)
QUEST_UNUSED_20151001_000642 Do the task properly
QUEST_UNUSED_20151001_000643 A New Enemy
QUEST_UNUSED_20151001_000644 A Pile of Demons (1)
QUEST_UNUSED_20151001_000645 A Pile of Demons (2)
QUEST_UNUSED_20151001_000646 Into the Hands (5)
QUEST_UNUSED_20151001_000647 Into the Hands (6)
QUEST_UNUSED_20151001_000648 What If Again (1)
QUEST_UNUSED_20151001_000649 What If Again (2)
QUEST_UNUSED_20151001_000650 To Expel
QUEST_UNUSED_20151001_000651 Recruiting Prisoners
QUEST_UNUSED_20151001_000652 A Deeper Place (1)
QUEST_UNUSED_20151001_000653 A Deeper Place (2)
QUEST_UNUSED_20151001_000654 A Deeper Place (3)
QUEST_UNUSED_20151001_000655 A Deeper Place (4)
QUEST_UNUSED_20151001_000656 Tell him to wait a bit
QUEST_UNUSED_20151001_000657 Everything Intact (1)
QUEST_UNUSED_20151001_000658 Everything Intact (2)
QUEST_UNUSED_20151001_000659 Eliminate the rust
QUEST_UNUSED_20151001_000660 Precious and Valuable
QUEST_UNUSED_20151001_000661 Change of One's Thinking
QUEST_UNUSED_20151001_000662 Everything Intact (3)
QUEST_UNUSED_20151001_000663 Feeding the aerial monsters
QUEST_UNUSED_20151001_000664 Falconer Master wants to test whether monsters can be used instead of eagles. Feed three kinds of aerial type monsters and try taming them.
QUEST_UNUSED_20151001_000665 Bericht an Falconer Master
QUEST_UNUSED_20151001_000666 You've failed to tame monsters. Go back to Falconer Master.
QUEST_UNUSED_20151001_000667 Go meet Schwarzer Reiter Master at the Forest of Prayer.
QUEST_UNUSED_20151001_000668 Shoot normal monsters 200 times consecutively
QUEST_UNUSED_20151001_000669 Schwarzer Reiter Master told you that he will see your skills to shoot enemies accurately. Hit normal monsters 200 times accurately.
QUEST_UNUSED_20151001_000670 You've landed all attacks on enemies without any mistask. Go back to Schwarzer Reiter Master.
QUEST_UNUSED_20151001_000671 Find the hidden contact and hand over the object
QUEST_UNUSED_20151001_000672 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.
QUEST_UNUSED_20151001_000673 Bericht an Monk Master
QUEST_UNUSED_20151001_000674 You've successfully handed over the object to the person. Go back to Monk Master.
QUEST_UNUSED_20151001_000675 Search the book of Pardoner Master
QUEST_UNUSED_20151001_000676 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.
QUEST_UNUSED_20151001_000677 You've found the book of Pardoner Master. Go back to Pardoner Master.
QUEST_UNUSED_20151001_000678 Collect the samples of Plant-type monsters
QUEST_UNUSED_20151001_000679 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.
QUEST_UNUSED_20151001_000680 Hand them over to Druid Master
QUEST_UNUSED_20151001_000681 You've collected enough Plant-type monsters' samples. Go back to Druid Master.
QUEST_UNUSED_20151001_000682 Set Romuva of Purification at 36_1 of Canyon Region
QUEST_UNUSED_20151001_000683 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.
QUEST_UNUSED_20151001_000684 Bericht an Oracle Master
QUEST_UNUSED_20151001_000685 You've set up all Romuvas of Purification. Return to the Oracle Master.
QUEST_UNUSED_20151001_000686 Open the treasure chest
QUEST_UNUSED_20151001_000687 Besiege the monsters by avoiding the Petrifying Frost
QUEST_UNUSED_20151001_000688 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.
QUEST_UNUSED_20151001_000689 Look at the pillar
QUEST_UNUSED_20151001_000690 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.
QUEST_UNUSED_20151001_000691 Protect the pillar
QUEST_UNUSED_20151001_000692 The monsters are coming to attack the pillar! Protect it.
QUEST_UNUSED_20151001_000693 Brush off the powders off from the pillar
QUEST_UNUSED_20151001_000694 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.
QUEST_UNUSED_20151001_000695 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.
QUEST_UNUSED_20151001_000696 Collect Monster Oil
QUEST_UNUSED_20151001_000697 To make the sea sparkles shine during the day, you need some monster oil. Hunt monsters to collect it.
QUEST_UNUSED_20151001_000698 Read the writings on the pillar
QUEST_UNUSED_20151001_000699 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.
QUEST_UNUSED_20151001_000700 Besiege monsters to obtain Monster Oil
QUEST_UNUSED_20151001_000701 It seems that someone's records are present on other pillars. Look at the pillars.
QUEST_UNUSED_20151001_000702 Speak out the numbers
QUEST_UNUSED_20151001_000703 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.
QUEST_UNUSED_20151001_000704 The writings on the pillar are beginning to appear! Read them!
QUEST_UNUSED_20151001_000705 A pillar has appeared! Go have a look at it.
QUEST_UNUSED_20151001_000706 Repair the pillar
QUEST_UNUSED_20151001_000707 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.
QUEST_UNUSED_20151001_000708 Read the writings on the pillar
QUEST_UNUSED_20151001_000709 You should be able to read the pillar now. Go near it and have a look.
QUEST_UNUSED_20151001_000710 It seems that there is another record on the other pillar which continues from this story. Look at the pillar closely.
QUEST_UNUSED_20151001_000711 Obtain Sticky Liquid
QUEST_UNUSED_20151001_000712 The pillar collapsed without even being touched.{nl}Collect some viscous liquid from monsters to repair the pillar.
QUEST_UNUSED_20151001_000713 Repair the pillar
QUEST_UNUSED_20151001_000714 You have collected the sticky liquid. Go back and repair the pillar.
QUEST_UNUSED_20151001_000715 Besiege monsters and collect %s
QUEST_UNUSED_20151001_000716 Obtain the sticky liquid
QUEST_UNUSED_20151001_000717 The rest of the story seems to be written on the pillar. Go there and take a close look at it.
QUEST_UNUSED_20151001_000718 Put the pieces into the pillars
QUEST_UNUSED_20151001_000719 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.
QUEST_UNUSED_20151001_000720 It seems that the pieces would fit well. Try putting them in.
QUEST_UNUSED_20151001_000721 Continue the Sprich mit Jurate about the sacred object.
QUEST_UNUSED_20151001_000722 Excavate the sacred object
QUEST_UNUSED_20151001_000723 Excavate the sacred object secretly by going to the place where you found with the detector stick.
QUEST_UNUSED_20151001_000724 Bericht an Jurate
QUEST_UNUSED_20151001_000725 It seems that you've found a sacred object. Take it to Jurate.
QUEST_UNUSED_20151001_000726 Wilhelmina Carriot is looking at what you have closely. Sprich mit Wilhelmina Carriot.
QUEST_UNUSED_20151001_000727 Obtain Ruklys' Army Seals and Parchments
QUEST_UNUSED_20151001_000728 Wilhelmina Carriot wants more documents. Obtain some things that can be used as information from the Fortress of the Land.
QUEST_UNUSED_20151001_000729 Hand them over to Wilhelmina Carriot
QUEST_UNUSED_20151001_000730 Wilhelmina Carriot will be satisfied with this. Hand them over to Wilhelmina Carriot.
QUEST_UNUSED_20151001_000731 Sprich mit dem Ruklys Army Soldier's Spirit
QUEST_UNUSED_20151001_000732 Sprich mit dem Ruklys Army Soldier's Spirit
QUEST_UNUSED_20151001_000733 Pass the retreat order to the spirits by blowing the horn
QUEST_UNUSED_20151001_000734 Blow the horn and pass the retreat order to the Ruklys Army Soldier's Spirits.
QUEST_UNUSED_20151001_000735 Sprich mit Priest Irma
QUEST_UNUSED_20151001_000736 Priest Irma is waiting for help in Ashaq Underground Prison 3F.
QUEST_UNUSED_20151001_000737 The Demon Lord Marnox attacked when you entered the hideout!
QUEST_UNUSED_20151001_000738 You've defeated the Demon Lord Marnox. Sprich mit dem Priest Irma.
QUEST_UNUSED_20151001_000739 Besiege Demon Lord Marnox
QUEST_UNUSED_20151001_000740 You have collected the stones!
QUEST_UNUSED_20151001_000741 You obtained nothing
QUEST_UNUSED_20151016_000742 So you are the famous Revelator, right?{nl}Hmm... I have something to suggest to you. Why don't you work with me?{nl}
QUEST_UNUSED_20151016_000743 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}
QUEST_UNUSED_20151016_000744 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.
QUEST_UNUSED_20151016_000745 [The Life of Cleros]
QUEST_UNUSED_20151016_000746 {nl}Cleros is the elder son of some landlord.{nl}But, he lost the right of succession to the child of stepmother and was expelled out of the land.{nl}
QUEST_UNUSED_20151016_000747 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.
QUEST_UNUSED_20151016_000748 But, that was the plan to sell Cleros.{nl}He became a slave that has to work til the death while being locked inside.{nl}
QUEST_UNUSED_20151016_000749 While he was locked inside, he received the salvation of Ruklys and get out of the life of the slave.{nl}But, peaceful days didn't last long.{nl}
QUEST_UNUSED_20151016_000750 When Ruklys was defeated, his rest turned into a disaster.
QUEST_UNUSED_20151016_000751 {nl}A long escape continued.{nl}He didn't succeed in anything in his life.{nl}
QUEST_UNUSED_20151016_000752 And he was caught and locked inside Kalejimas.{nl}It would've been good if there was any hope in that prison..{nl}
QUEST_UNUSED_20151016_000753 But, he experienced agony there and died.
QUEST_UNUSED_20151016_000754 {nl}If the story ends here, this will be the story of some person who failed his life.{nl}
QUEST_UNUSED_20151016_000755 But, according to some info, he is still being tortured by the demon.{nl}His spirit.{nl}
QUEST_UNUSED_20151016_000756 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}
QUEST_UNUSED_20151016_000757 {nl}{nl}Look for the small dot which goes after the night sky.{nl}That's Rumpelstiltskin flying towards the moon.{nl}
QUEST_UNUSED_20151016_000758 As we know, Rumpelstiltskin made a bet with Lydia Schaffen and flew to the moon.{nl}It took him ages and ages.{nl}
QUEST_UNUSED_20151016_000759 About halfway there, Rumpelstiltskin was suddenly surprised beyond belief.{nl}The arrow he had been riding was almost completely destroyed.
QUEST_UNUSED_20151016_000760 {nl}Rumpelstiltskin realized he had been tricked.{nl}Of course, the arrow could have disintegrated from flying for so long.{nl}
QUEST_UNUSED_20151016_000761 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}
QUEST_UNUSED_20151016_000762 That's right. Rumpelstiltskin was a demon.{nl}So when his power and the power of the arrow collided, it started to disintegrate.{nl}
QUEST_UNUSED_20151016_000763 Rumpelstiltskin, who has just realized that, was furious, but it was to no use.
QUEST_UNUSED_20151016_000764 {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}
QUEST_UNUSED_20151016_000765 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.
QUEST_UNUSED_20151016_000766 What, aren't you the Revelator?{nl}It's so good to see you.{nl}
QUEST_UNUSED_20151016_000767 Of course, I know about you.{nl}We of the Kedoran Merchant Alliance know everything.{nl}
QUEST_UNUSED_20151016_000768 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}
QUEST_UNUSED_20151016_000769 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}
QUEST_UNUSED_20151016_000770 How about we help each other out?{nl}He is the helper of our Kedoran Merchant Alliance.
QUEST_UNUSED_20151016_000771 Thank you so much.{nl}The newcomers are beside me.{nl}
QUEST_UNUSED_20151016_000772 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}
QUEST_UNUSED_20151016_000773 If you go south you can help out Jurathena Margellius.{nl}The monsters around here are tough even for a veteran.
QUEST_UNUSED_20151016_000774 Even in our group, though, we did have our rough times.{nl}It's actually a bit rough right now.{nl}
QUEST_UNUSED_20151016_000775 That's why we're focused here on Manahas right now.
QUEST_UNUSED_20151016_000776 Alright, go then.{nl}It shouldn't be too hard for someone of your fame.
QUEST_UNUSED_20151016_000777 Greetings.{nl}I'm Antanas, from Nestospa. {nl}Have you ever seen Nestospa?{nl}Well, it doesn't matter if you haven't.
QUEST_UNUSED_20151016_000778 {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?
QUEST_UNUSED_20151016_000779 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.
QUEST_UNUSED_20151016_000780 {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?
QUEST_UNUSED_20151016_000781 You're back faster than I thought.{nl}I'll use these shells to make the scriptures.{nl}Thank you.
QUEST_UNUSED_20151016_000782 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...
QUEST_UNUSED_20151016_000783 Oooohh!{nl}Please help me!{nl}My Nestospa sign is gone!
QUEST_UNUSED_20151016_000784 {nl}It's gone, gone, gone!{nl}Please help me find it!{nl}The monsters must have taken it!
QUEST_UNUSED_20151016_000785 How could this happen...{nl}I'm done... How am I going to face my Nestospa mentors...
QUEST_UNUSED_20151016_000786 That's it!{nl}Wow, you found them all!{nl}Thank you!{nl}How can I ever repay you...
QUEST_UNUSED_20151016_000787 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}
QUEST_UNUSED_20151016_000788 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.
QUEST_UNUSED_20151016_000789 Ruklys Army Soldier's Spirit
QUEST_UNUSED_20151016_000790 If we don't make an order to retreat, they will all be annihilated.{nl}Please blow the horn..
QUEST_UNUSED_20151016_000791 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}
QUEST_UNUSED_20151016_000792 About the secret I told you a while ago...{nl}
QUEST_UNUSED_20151016_000793 I heard some saying that the Fortress of the Land is to protect the treasure which was received from Ruklys.{nl}
QUEST_UNUSED_20151016_000794 Think about it. Isn't it strange?{nl}The Royal Army guards are protecting the hole which is digged like a ant hole.{nl}
QUEST_UNUSED_20151016_000795 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}
QUEST_UNUSED_20151016_000796 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}
QUEST_UNUSED_20151016_000797 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.
QUEST_UNUSED_20151016_000798 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?
QUEST_UNUSED_20151016_000799 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}
QUEST_UNUSED_20151016_000800 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.
QUEST_UNUSED_20151016_000801 When we collect the herbs, the ferrets may attack us.{nl}They think everything in this forest belongs to them.
QUEST_UNUSED_20151016_000802 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}
QUEST_UNUSED_20151016_000803 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}
QUEST_UNUSED_20151016_000804 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.
QUEST_UNUSED_20151016_000805 The taste of the fruit juice was way better than I expected...
QUEST_UNUSED_20151016_000806 Wow, thanks. We wouldn't have to worry about the drinkable water with this much amount.
QUEST_UNUSED_20151016_000807 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}
QUEST_UNUSED_20151016_000808 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}
QUEST_UNUSED_20151016_000809 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.
QUEST_UNUSED_20151016_000810 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.
QUEST_UNUSED_20151016_000811 You've observed in details.{nl}You won't have a problem if you transform now.{nl}Please wait.
QUEST_UNUSED_20151016_000812 Someone's Record
QUEST_UNUSED_20151016_000813 Something Carved on the Pillar
QUEST_UNUSED_20151016_000814 The crystal emanating the mysterious light is not fully repleted!{nl}Besiege nearby monsters to collect monster oil and make the crystal shine its light!
QUEST_UNUSED_20151016_000815 The crystal emanating the mysterious ray begins to shine brightly!
QUEST_UNUSED_20151016_000816 3 numbers are the secret of the pillar
QUEST_UNUSED_20151016_000817 Carvings on the Pillar
QUEST_UNUSED_20151016_000818 What is the written on the pillar?
QUEST_UNUSED_20151016_000819 The pillar collapsed!{nl}Collect sticky liquid from monsters to repair it!
QUEST_UNUSED_20151016_000820 You have obtained sticky fluid!
QUEST_UNUSED_20151016_000821 Repairing the pillar
QUEST_UNUSED_20151016_000822 Look for the pieces of the pillar
QUEST_UNUSED_20151016_000823 Please tell me what it is
QUEST_UNUSED_20151016_000824 Ich werde später fragen
QUEST_UNUSED_20151016_000825 Ich werde gehen
QUEST_UNUSED_20151016_000826 I have something to do
QUEST_UNUSED_20151016_000827 Bitte warte
QUEST_UNUSED_20151016_000828 Ich geh mich treffen
QUEST_UNUSED_20151016_000829 I will come back soon
QUEST_UNUSED_20151016_000830 Lighting it up
QUEST_UNUSED_20151016_000831 Ich werde mich umschauen
QUEST_UNUSED_20151016_000832 Ich brauche das nicht
QUEST_UNUSED_20151016_000833 It will come if you wait
QUEST_UNUSED_20151016_000834 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.
QUEST_UNUSED_20151016_000835 The crystal emanating the mysterious light requires monster oil to shine. Hunt monsters and collect monster oil.
QUEST_UNUSED_20151016_000836 You have obtained the monster oil. Go back to the pillar with the crystal and use its light to see the writings on it.
QUEST_UNUSED_20151016_000837 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.
QUEST_UNUSED_20151016_000838 Obtain %s from monsters
QUEST_UNUSED_20151016_000839 The books from the Ruklys Era are scattered around. Look for the books that are readable.
QUEST_UNUSED_20151016_000840 If you bring these books to Wilhelmina Carriot, you would be able to receive some rewars.
QUEST_UNUSED_20151016_000841 You can see the Ruklys Army Soldier's Spirit that can't go back beside the goddess. Sprich mit him.
QUEST_UNUSED_20151016_000842 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.
QUEST_UNUSED_20151016_000843 You blew the horn and sent out the retreat order. Tell the Ruklys Army Soldier's Spirit about it.
QUEST_UNUSED_20151016_000844 Sprich mit Siedler Browein
QUEST_UNUSED_20151016_000845 Sprich mit Siedler Browein in Lemprasa Pond
QUEST_UNUSED_20151016_000846 Sprich mit Siedler Brophen
QUEST_UNUSED_20151016_000847 Sprich mit Siedler Brophen
QUEST_UNUSED_20151016_000848 Use a Status Point
QUEST_UNUSED_20151016_000849 Press the F1 key to use a Status Point
QUEST_UNUSED_20151016_000850 Hand over Grass Leaf Ointment
QUEST_UNUSED_20151016_000851 Settler Brophen asked you to hand over Grass Leaf Ointment to Settler Layla
QUEST_UNUSED_20151016_000852 Sprich mit Mayor Romanas
QUEST_UNUSED_20151016_000853 Mayor Romanas is waiting for you
QUEST_UNUSED_20151016_000854 Sprich mit Officer Lutas
QUEST_UNUSED_20151016_000855 Sprich mit Officer Lutas at the entrance of Lemprasa Pond
QUEST_UNUSED_20151016_000856 Sprich mit Officer Lutas
QUEST_UNUSED_20151016_000857 Besiege the attacking boss monster
QUEST_UNUSED_20151016_000858 Besiege the attacking boss monster
QUEST_UNUSED_20151016_000859 Visit Orsha
QUEST_UNUSED_20151016_000860 Visit Orsha
QUEST_UNUSED_20151016_000861 Sprich mit Inesa Hamondale
QUEST_UNUSED_20151016_000862 Sprich mit Orsha's lord, Inesa Hamondale
QUEST_UNUSED_20151016_000863 Sprich mit Siedler Izna
QUEST_UNUSED_20151016_000864 Sprich mit Siedler Izna
QUEST_UNUSED_20151016_000865 Collect light red leaves
QUEST_UNUSED_20151016_000866 Settler Izna has asked you to defeat nearby monsters and collect red leaves.
QUEST_UNUSED_20151016_000867 Obtain light red leaves
QUEST_UNUSED_20151016_000868 Collect Rampar Mucus
QUEST_UNUSED_20151016_000869 Settler Izna has asked you to collect Rampas Mucus.
QUEST_UNUSED_20151016_000870 Guide the settler in the forest
QUEST_UNUSED_20151016_000871 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.
QUEST_UNUSED_20151016_000872 Light the Last Fire
QUEST_UNUSED_20151016_000873 Settler Izna has asked you to light a big fire so the residents can see it from far away.
QUEST_UNUSED_20151016_000874 Sprich mit Siedler Ivanayus
QUEST_UNUSED_20151016_000875 Sprich mit Siedler Ivanayus
QUEST_UNUSED_20151016_000876 Collect useful objects
QUEST_UNUSED_20151016_000877 Settler Ivanayus wants you to collect useful objects that can be used by settlers that are left by natives.
QUEST_UNUSED_20151016_000878 Sprich mit Siedler Dallanas
QUEST_UNUSED_20151016_000879 Sprich mit Siedler Dallanas
QUEST_UNUSED_20151016_000880 Worship the Statue der Göttin Zemyna
QUEST_UNUSED_20151016_000881 Settler Dallanas would like to bless your explorations and as asked you to worship the statue of Goddess Zemyna to receive her grace.
QUEST_UNUSED_20151016_000882 Bring the Settlers
QUEST_UNUSED_20151016_000883 Settler Dallanas has asked you to bring the settlers that were spreaded across the area.
QUEST_UNUSED_20151022_000884 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.
QUEST_UNUSED_20151022_000885 Mardas
QUEST_UNUSED_20151022_000886 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.
QUEST_UNUSED_20151022_000887 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..
QUEST_UNUSED_20151022_000888 I've been chased by demons and ran here from the castle.{nl}I don't want to experience any more troubles.
QUEST_UNUSED_20151022_000889 No demons were there and only other monsters?{nl}That's fortunate I guess.{nl}
QUEST_UNUSED_20151022_000890 It seems that you are stronger than I expected.{nl}I didn't expect that.
QUEST_UNUSED_20151022_000891 Please come back to me when you fix the detector.{nl}I have something to tell you.
QUEST_UNUSED_20151022_000892 I am going to guide each and every one of you with my best.{nl}I hope there is full of bless on the road in front of you.
QUEST_UNUSED_20151022_000893 It doesn't matter anymore.{nl}I just want to take some rest..
QUEST_UNUSED_20151022_000894 [Ordeal of Cleros]
QUEST_UNUSED_20151022_000895 The sun of gold ray, the moon of Silber ray and the land of bronze ray.{nl}What is your number.{nl}
QUEST_UNUSED_20151022_000896 You seem you don't know anything about our merchants.{nl}
QUEST_UNUSED_20151022_000897 Hmm, Have you ever seen the great cathedral or Mage Tower before?{nl}Or something like the gigantic Goddess Statue of Fedimian.{nl}
QUEST_UNUSED_20151022_000898 Do you think a Groß 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.
QUEST_UNUSED_20151022_000899 We are the merchants that supplied materials to the historic construction.{nl}Do you understand now?{nl}
QUEST_UNUSED_20151022_000900 We helped for the completion of it.{nl}The objective of our merchants is the will of the goddesses.{nl}
QUEST_UNUSED_20151022_000901 Ah, I am in charge of newcomers of Kedoran Merchant Alliance.{nl}We've received severe damages on Medzio Diena so even the newcomers are trying their best to restore the place.{nl}
QUEST_UNUSED_20151022_000902 We are in a trouble.{nl}We have to put a notice board, but we are just too busy.{nl}
QUEST_UNUSED_20151022_000903 We, Kedoran Merchant Alliance act harsh on the newcomers.{nl}Especially, Leopoldas is really scary.. He wants me to do this alone.
QUEST_UNUSED_20151022_000904 If that's so, can you put this notice board on Krive Highway?{nl}Edita, our leader, is excavating this sacred object.{nl}
QUEST_UNUSED_20151022_000905 I am counting on you to do this secretly without being detected by Leopoldas.{nl}I have to go somewhere.
QUEST_UNUSED_20151022_000906 I am counting on you to do this secretly without being detected by Leopoldas.{nl}For sure.
QUEST_UNUSED_20151022_000907 I am helping the Revelators who just started their journies from Kedoran Merchant Alliance.{nl}If you are okay, can you help us?
QUEST_UNUSED_20151022_000908 It's not that difficult.{nl}You just have to pass the blessing which is needed for their journies.
QUEST_UNUSED_20151022_000909 Thank you.{nl}Then, I will tell you how you can do it.{nl}
QUEST_UNUSED_20151022_000910 Please look for the Revelator who just started their journies around Orsha and Klaipeda.{nl}When you this scroll to him, he will receive the blessing that is needed for the journey.
QUEST_UNUSED_20151022_000911 Ah, and it won't be effective to the one who is already blessed so you please keep that in mind.
QUEST_UNUSED_20151022_000912 We can't just rely on the goddess.{nl}We should do it ourselves in order to reduce the burden on the goddesses.
QUEST_UNUSED_20151022_000913 We, Kedoran Merchant Alliance helped the goddesses secretly until now.{nl}But, since the world turned into a chaos, we are going to help her actively.
QUEST_UNUSED_20151022_000914 We are in a trouble..{nl}There are so many things to retrieve, but I don't know what people are doing.
QUEST_UNUSED_20151022_000915 Ah, so Leopoldas sent you here?{nl}Finally, he is not insisting anymore.{nl}
QUEST_UNUSED_20151022_000916 Long time ago, I was sending the sacred objects to Fedimian.{nl}But, I never knew that day was Medzio Diena.{nl}
QUEST_UNUSED_20151022_000917 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}
QUEST_UNUSED_20151022_000918 Okay so let's stop complaining. I want you to retrieve the sacred objects from Goyanar Forest Way.{nl}I believe that they are buried deep in the ground.{nl}
QUEST_UNUSED_20151022_000919 Ah, and there are many monsters around that threaten us, merchants.{nl}If this okay for you, I want you to defeat them as well.
QUEST_UNUSED_20151022_000920 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.
QUEST_UNUSED_20151022_000921 Leopoldas never asks someone for help.{nl}I never knew that you were this good.
QUEST_UNUSED_20151022_000922 Actually, we received a strange report.{nl}The monsters at Krive Highway are digging only one spot.
QUEST_UNUSED_20151022_000923 I think what they are looking for is one of our Merchants' obejct.{nl}And it would take some time until the retrieval group reaches here.
QUEST_UNUSED_20151022_000924 Is it the sacred obejct?{nl}It's been such a long time so I can't think of anything else.
QUEST_UNUSED_20151022_000925 Those are the records from the merchants.{nl}They are ripped off badly.{nl}
QUEST_UNUSED_20151022_000926 I am sure the monsters created this mess.{nl}Give it to me.
QUEST_UNUSED_20151022_000927 Let's see.{nl}It is about..{nl}
QUEST_UNUSED_20151022_000928 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}
QUEST_UNUSED_20151022_000929 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}
QUEST_UNUSED_20151022_000930 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.
QUEST_UNUSED_20151022_000931 The remaining spot should be somewhere around Juikas Field.. but, I have no idea where it is exactly.{nl}If you are okay, can you help me on this one?
QUEST_UNUSED_20151022_000932 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
QUEST_UNUSED_20151022_000933 Isn't this really a good method?{nl}We put marks on all objects of the Merchants to prepare for the cases that they may get lost.
QUEST_UNUSED_20151022_000934 Ahah, you've found the most important object!{nl}This is the mysterious ink.{nl}
QUEST_UNUSED_20151022_000935 This is the secret ink which you use when you have to hide the records.{nl}It is very expensive as a result.{nl}
QUEST_UNUSED_20151022_000936 You've been a great help to me so far.{nl}We will take care of the rest!{nl}
QUEST_UNUSED_20151022_000937 Leopoldas?{nl}Ah, he is our brother. What's the matter?{nl}
QUEST_UNUSED_20151022_000938 He sent you to help me?{nl}I can't believe it.{nl}
QUEST_UNUSED_20151022_000939 Well, anyways, it's good.{nl}That damn monster took away everything.{nl}
QUEST_UNUSED_20151022_000940 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}
QUEST_UNUSED_20151022_000941 You've seen the newcomers who Leopoldas manages right?{nl}These are the documents to educate those newcomers.{nl}
QUEST_UNUSED_20151022_000942 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.
QUEST_UNUSED_20151022_000943 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}
QUEST_UNUSED_20151022_000944 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.
QUEST_UNUSED_20151022_000945 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.
QUEST_UNUSED_20151022_000946 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}
QUEST_UNUSED_20151022_000947 Fighting against monsters are not something rare.
QUEST_UNUSED_20151022_000948 Good. Our brother send us a good helper.{nl}Let's make the manuscript now.
QUEST_UNUSED_20151022_000949 I will do the writing anyways so you don't have to worry.{nl}What I need is the ink.{nl}
QUEST_UNUSED_20151022_000950 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.
QUEST_UNUSED_20151022_000951 Put the trap on the way that monsters cross.{nl}When monsters faint out after stepping on the trap, get the body fluid.{nl}
QUEST_UNUSED_20151022_000952 Ah, this is the trick that only works at Droze Empty Lot so you should only put the trap there.
QUEST_UNUSED_20151022_000953 You've already obtained all of them?{nl}
QUEST_UNUSED_20151022_000954 I knew it. We still need more.
QUEST_UNUSED_20151022_000955 This is enough.{nl}You've done well so far.{nl}
QUEST_UNUSED_20151022_000956 If we meet next time, I will treat you a lot from our merchants,.{nl}I will do the rest so go back.
QUEST_UNUSED_20151022_000957 Hello.{nl}Have you ever heard of Nestospa?{nl}
QUEST_UNUSED_20151022_000958 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}
QUEST_UNUSED_20151022_000959 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}
QUEST_UNUSED_20151022_000960 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}
QUEST_UNUSED_20151022_000961 Can you help me?
QUEST_UNUSED_20151022_000962 There are too many materials.{nl}Listen well.{nl}
QUEST_UNUSED_20151022_000963 Get some lime powder from monsters, and then some flat stones for construction.{nl}You'll be busy.
QUEST_UNUSED_20151022_000964 I can't just stand still even if I can't fact demons directly.{nl}Everyone does his/her own task.
QUEST_UNUSED_20151022_000965 Goold. Well done.{nl}Now the materials are all collected.. We need some special tools.
QUEST_UNUSED_20151022_000966 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}
QUEST_UNUSED_20151022_000967 Just do your best to make a shape.{nl}How about it? Do you want to try it?
QUEST_UNUSED_20151022_000968 Make it beautiful.{nl}I will do the rest so don't worry too much.
QUEST_UNUSED_20151022_000969 It's quite a nice shape, composed but heavy.{nl}Leave the final touches to me.{nl}
QUEST_UNUSED_20151022_000970 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}
QUEST_UNUSED_20151022_000971 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}
QUEST_UNUSED_20151022_000972 Ah, up there, We need help from Gierda near Baderam Hill.{nl}If you are okay, I want you to help me.
QUEST_UNUSED_20151022_000973 Do you have any business with me?{nl}
QUEST_UNUSED_20151022_000974 Antanas has asked you to help me?{nl}That's good. I am compiling the scripture of the goddesses here.{nl}
QUEST_UNUSED_20151022_000975 We should have something that we can rely on when we are facing diffculties like nowadays.{nl}
QUEST_UNUSED_20151022_000976 The scripture helped that.{nl}We should calm us down by reading the words of the goddesses.{nl}
QUEST_UNUSED_20151022_000977 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}
QUEST_UNUSED_20151022_000978 Transparent shells of monsters are good.{nl}When we engrave letters on them, they last long.{nl}Could you get me those?{nl}{nl}
QUEST_UNUSED_20151022_000979 Those are easy to find.{nl}Okay, then I am counting on you.
QUEST_UNUSED_20151022_000980 Everyone needs something to rely one.{nl}But the goddesses.. {nl}
QUEST_UNUSED_20151022_000981 Yes.{nl}We should be like a big tree that can be relied on.
QUEST_UNUSED_20151022_000982 You've brought them sooner than I expected.{nl}This shell would become the scripture after polising it up. Thank you.{nl}
QUEST_UNUSED_20151022_000983 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}
QUEST_UNUSED_20151022_000984 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}
QUEST_UNUSED_20151022_000985 We should first obtain leather strings from monsters.{nl}After that, we will use this Moru to make a string for the binding.{nl}
QUEST_UNUSED_20151022_000986 We will connect short ones to make a long string for the binding.
QUEST_UNUSED_20151022_000987 I've learned the binding from Orsha long time ago.{nl}But, the task is too much with my own power.
QUEST_UNUSED_20151022_000988 Ah! What should I do? what should I do..{nl}Without it, I won't know if I am a Nestos or Anastos.{nl}
QUEST_UNUSED_20151022_000989 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..
QUEST_UNUSED_20151022_000990 Yes? Ah, I didn't know you were there. I am sorry.{nl}I am now. Ah.. too desperate.{nl}
QUEST_UNUSED_20151022_000991 My luggage is gone.{nl}In fact what's inside are potato dumplings, books and etc, but the sign of Nestos.{nl}
QUEST_UNUSED_20151022_000992 Ah.. really. The sign of Nestos is most important.{nl}That is so important to me.. I am sure the monsters have taken it.
QUEST_UNUSED_20151022_000993 What should I do..{nl}How would I see the faces of Nestospa..
QUEST_UNUSED_20151022_000994 That's it!{nl}Wow, you've collected all of them!{nl}
QUEST_UNUSED_20151022_000995 How can I pay for this?{nl}
QUEST_UNUSED_20151022_000996 I was talking gibberish right?{nl}I am so sorry. I was too desperate so I wanted to give up on everything.{nl}
QUEST_UNUSED_20151022_000997 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}
QUEST_UNUSED_20151022_000998 We should go back.{nl}We won't lose it again right?{nl}
QUEST_UNUSED_20151022_000999 Ah...{nl}Antanas and Gierda 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}
QUEST_UNUSED_20151022_001000 Anyways, I will go to Pasaka Canyon now where the masters are present!{nl}Thank you so much!