-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUI.txt
More file actions
3919 lines (3919 loc) · 119 KB
/
UI.txt
File metadata and controls
3919 lines (3919 loc) · 119 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{@st41b}Learn Attributes{nl}from respective masters of each class.{/}
{@st43}Attribute List {/}
{@st59}Close{/}
{@st43}Learn Attributes{/}
{@st59}Close{/}
{@st41b}Silver{/}
My Achievements
Server Ranking
{@st59}An unexpected event is available.{/}
{@st59}There is a new Help message{/}
{@st41}Are you sure you want to craft this type of arrow?{/}
{@st41b}Once{/}
{@st41b}All{/}
{@st41b}Pause{/}
{@st43}Adventure Journal{/}
{@st43}Auction House{/}
{@st59}Close{/}
{@st41b}Items Sold : ×%s, Items Unsold : ×%s{/}
{@st43}{s22}Item Auction{/}
{@st59}Close{/}
Availest
{@st41b}Remaining Time
3 hours 16 minutes
{@st41b}Starting Price
{@st41b}Bids
{@st41b}Current Price
{@st41b}Bidding Price
{@st41b}Minimum Bid Price from {@st57}%s{@st41b}silver{/}
{@st41b}Bid{/}
{@st43b}Buy Now!{nl}{img icon_item_silver 20 20}{@st57}%s{/}
{@st44}Permission Settings{/}
{@st45}Name: %s{/}
{@st45}Party Storage{/}
{@st49}None
{@st49}Store
{@st49}Retrieve
{@st45}Survey{/}
{@st49}Create
{@st49}Delete
{@st44}Save{/}
{@st44}Cancel{/}
{@st43}{s22}Hairstyle Shop{/}
{@st59}Previous Hairstyle{/}
{@st59}Next Hairstyle{/}
{@st41b} Change {s18} (100 TPs required) {/}
{@st59}Change to selected hairstyle.{/}
{@st41}Cancel
{@st43}Black Market{/}
Book Name
{@St59}Stop Reading{/}
{@st59}Previous Page{/}
{@st59}Next Page{/}
{@st47}%s appeared!
{@st43}Score{/}
Damage Received
Technique Bonus
Evasion Bonus
Clear Time
Total Score
{@st42}Elapsed Time
10 minutes
10 seconds
{@st44}Complete
{@st59}Close{/}
{@st43}Buff Vending Machine
Vending Machine Name
{@st43}Register
{@st43}Cancel
Buff Vending Machine
{@st59}Close
{@st59}Buff Vending Machine{nl} - You can pay silver to receive buffs from another player.
Carriage Menu
{ol}{s22}Disembark{/}
Casting
{@st43}Game Settings{/}
{@st64}Use the arrow keys to select a cell!
{@st43}Advancement Information {/}
{@st43}Select Class
Psychokinesist
{@st42}%s Circle {/}
How many circles
Displays a brief description of the class.
{@st41b}Attack {@sti7}%s{/}
{@st41b}Support {@sti7}%s{/}
{@st41b}Difficulty{@sti7}%s{/}
{@st59}Close{/}
Advancement Alarm
{@st43} Advancement
{@sti7}{s14} Character {/}
{@sti8}{s14} Class {/}
{@st44}Chat{/}
To. WWWWWWWW and 1 other
General: /s chat {nl} Shout: /y chat {nl} Party: /p chat{nl} Whisper: /w character's username chat
{@st41}All Chat{/}
{@59}Quit{/}
{@59}Invite{/}
{@st59}All{/}
{@st59}Normal (/s chat){/}
{@st59}Shout (/y chat){/}
{@st59}Party (/p chat){/}
{@st59}Whisper (/w team name chat){/}
{@st59}Adjust Chat Window{/}
{@st43}{s22}Chat Macro{/}
{@st43}Macro{/}
{@st59b}Macro {nl} {@st59s} - How to use: {nl} 1. Drag a gesture icon to any gesture slots at the bottom. {nl} 2. Write your phrase and save. {nl} 3. Use the shortcut key to simultaneously use the phrase and make the gesture. {/}
{@st59}Close{/}
{@st41b}Save{/}
{@st59}Save{/}
{@st41b}Cancel{/}
{@st59}Cancel{/}
{@st42}Chat Settings
{@st42}Transparency
Show Chat Balloon
Show Shouts on Top
{@st43}Cheat List{/}
{@st42b}Item{/}
{@st42b}Monster{/}
{@st42b}Move map{/}
{@st42b}Combat Order{/}
{@st41b}Close{/}
{s16}{b}Create items by clicking on the Create button or double-click.
{s16}{b}ea
{s16}{b}Lv.
{@st41b}Search{/}
{s16}{b}Summon monsters by clicking on the Create button or double-click.
{s16}{b}ea
{s16}{b}Select a desired area.
{s18}{b}View Minimap{/}
{@st41b}Tool List{/}
{@st59b}Collection {nl}{@st59s}- Purchase the Collection Deck to add collectible items to your collection. {nl} - The collection hotkey will be enabled when you use the Collection Deck Item. {nl} {/}
{@st59}Close{/}
{@st43}Collection{/}
{@st43}Color Spray{/}
{@st49}Color Spray{/}
{@st49}Color{/}
{@st49}Remaining{/}
{@st49}Brush{/}
{@st49}{a END_EDIT_SPRAY}Draw{/}{/}
{@st49}{a SAVE_EDIT_SPRAY}Save{/}{/}
{@st49}{a LOAD_EDIT_SPRAY}Import{/}{/}
{@st49}Close{/}
{@st43}Companion Adoption
{@st59}Enter the name of your newly adopted companion {/}
{@st41b}Name{/}
{@st41b}Price %s{/}
{@st59}Close{/}
{@st41b}Adopt
{@st59}Confirm{/}
{@st43}Companion Shop
{@st59}Close{/}
{@st43}Other Character Info{/}{@st42}
{@st59}Close{/}
{@st41b}Information
{@st41b}Record
Team Name
Character Name
Circle {#ffff00}%s{/} %s Lv. {#ffff00}%s{/}
Warrior
Adventure Index {#ffff00}%s{/} (Rank{#ffff00}%s{/}/%s)
Adventure Index {#ffff00}%s{/} ({#ffff00}Unranked{/})
Total Achievements : {#ffff00}%s{/}
Settings
Clear the tab title to delete the tab.
{@st49}All{/}
{@st49}System{/}
{@st49}Talk{/}
{@st49}Combat{/}
{@st49}Item{/}
{@st43}Credits{/}
{@st43}Lock Target settings {/}
NPC Name
Compare
Illustration
Select a conversation
Text Help
{@st41}Item Crafting{/}
{@st45tw2}Crafting the item...
%r seconds
{@st41}Cancel{/}
{@st45tw2}Quantity{/}
{@st45tw2}Do you want to craft this item?
{@st41}Confirm{/}
Quest Information
{@st59}Cancel Trade{/}
{@st43}Personal Trade{/}
My Trading List
Silver : %s
Enter
{@st41}Accept
{@st41}Confirm
Other Player's (%s) Trading List
Other Player's Name
{s18}{ol} {gr gradation1}Field Event{/}
{s20}{ol}Defeat the Vubbe Tribe! Would you like to join?
{s20}{ol}%s Would you like to join?
{s20}{ol}Participants : (1/5)
{s20}{ol}Participants : (%s/%s)
{s20}{ol}The game will begin after 1 second.
{s20}{ol}The game will begin after %s seconds.
Do not show this anymore for today.
Do not show Field Events.
Join Game
Start a game with other players.
Decline game invite.
Spray Presets
{@st49}Select{/}
{@st49}Cancel{/}
{@st49}Delete{/}
Enter a file name to save.
{@st43}Friends
{@st59}Close{/}
{@st59b}Friends{nl}{@st59s} - Become friends with other players in the game. {nl} - You can check the status of your friends through the Friends List tab. {nl} - In the Manage tab, you can invite, decline or block your friends. {/}
{@st41b}Show Online{/}
{@st41b}List
{@st41b}Manage
{@st41b}Send Friend Request
{@st41b}Block
{@st59}Search{/}
{@st44}Guild{/}
Guild
List
News
Guild Mission
Members Online
{@st44}Create Guild{/}
{@st42}Create{/}
{@st42}Close{/}
{@st42}All{/}
{@st42}Today's Rankings{/}
{@st42}Weekly Rankings{/}
{@st56}Rank {/}
{@st56}Points{/}
{@st56}Class{/}
{@st56}Name {/}
Previous Page
Next Page
{@st42}Search ID{/}
Enter the ID to search
Close the Hall of Fame
Enter the ID to search
{@st59} Stamina {/}
{@st43}Help List{/}
{@st59}Close{/}
{@st59b}Help List{nl}{@st59s} - If you need help with something, you can always read the Help Topics. {nl} - Select a topic to view more information about it. {/}
{@st43}{s22}Help{/}
{@st47_b}{b}Help Topics{/}
{@st42b}Simple Help Contents{/}
{@st59}View details{/}
Please enter a quantity
{@st59}Enter the contents{/}
{@st41b}Confirm
{@st59}Confirm {/}
{@st41b}Close
{@st59}Cancel {/}
{@st43}Warp{/}
{@st59}Close{/}
{@st59b}Warp{nl}{@st59s} - Allows you to quickly travel to regions you have already visited. {nl} - Feature is activated when two or more warp points are available. {nl} {/}
{@st41}Current Location : %s{/}
{@st43}{s22}Warp{/}
{@st41b}Do you want to move to this area?{/}
What about Siauliai
Coin Consumed : 0
Intro
{@st43}Inventory{/}
{@st59}Close{/}
{@st59b}Equipment {nl} {@st59s}- Hair/Costume: Equipment to change a characters appearance. {nl} - Weapon: Can equip one-handed or two-handed weapons {nl} (sub-weapon/shield can be equipped with a one-handed weapon) {nl} - Armor: Top, Bottom, Gloves, Shoes. {nl} - Accessories: Can equip 1 Necklace and 2 Bracelets. {nl} {/}
{@st59}Hair Costume 1{/}
{@st59}Hair Costume 2{/}
{@st59}Necklace{/}
{@st59}Costume{/}
{@st59}Top{/}
{@st59}Gloves{/}
{@st59}Bottom{/}
{@st59}Shoes{/}
{@st59}Left hand{/}
{@st59}Right hand{/}
{@st59}Bracelet 1{/}
{@st59}Bracelet 2{/}
{@st59}Armband{/}
{@st59}Search{/}
Weight
{@st43}Equipment Buff{/}
{@st59}Close{/}
{@st42}Available for Buff
{@st42}Consume{/}
{@st42}Run
{@st42}Target Item{/}
{@st59}Ring 1{/}
{@st43}Item Crafting{/}
{@st42b}Show Craftable Items{/}
{@st59}Close{/}
{@st43}{s22}Split Item
{@st59}Enter a quantity{/}
Monster HP Bar
{@st44}Item Set acquired{/}
Keyboard Warrior
Kills
99 minutes 99 seconds
38000 points
Enhanced Speed Potion
{@st41}Confirm{/}
{@st59b} Adventure Journal {nl}{@st59s}- Your game progress is recorded in the Adventure Journal. {nl} - You can progress your Adventure Index through contents such as: obtaining items, hunting monsters, crafting and map exploration.{nl} Adventure Index : The total of all your indexes. {nl} Growth : 5 points per character level and class level {nl} Items : Equipment : grade X 10 points, Books : 10 points, Others : 1 point {nl} Monsters : 10 points per monster (50 points for Boss Monsters) {nl} Maps : 1 point per 10% explored {nl} Quests : 1 point per quest {nl} Achievements : Varies by achievement {nl} Crafting : 10 points {nl} Collection : 5 points for a deck and 45 points when it is completed {nl} - You can receive special rewards from an NPC in town depending on your Adventure Index. {/}
{@sti7}{s22}{ds}Achievements{/}
{@st42b}{#22FF22} Top 10% / %s Points{/}
{@st42b} Average / %s Points {/}
1st / %s Points
Rank %s
%s Points
Profession
Team
{@st59}Close{/}
{@st43}Adventure Journal Ranking{/}
{@st43}{s22}Rank
{@st43}{s22}Name
{@st43}{s22}Score
{@st41}Details{/}
{@st43}Start Crafting{/}
{@st59}Start item crafting.{/}
{@st44}Keypad{/}
{@st42}Time limit
{@st56}Kill{/}
{@st56}Overkill{/}
{@st56}Shot{/}
{@st56}Dead{/}
Spell Power
Defense
Magic Resistance
Critical Attack Rate
{@st43}Socket{/}
{@st59}Close{/}
Please insert your items
Potential
Additional Socket Cost : {#ff9933}%s{/}{nl}Gem Extraction Cost : {#ff9933}%s{/}
{@st41b}Add Socket
{@st41b}Extract Gem
{@st41}Craft{/}
{@st41}%s %s ea
Area Map
Area Explored : 95.5%
{@st45tw}Area Explored %s% {/}
{@st59}Close{/}
{@st41}Map{/}
Shift(clear), Ctrl(mid fill)
{ol}Title
{@st41}Add{/}
{@st41}Delete{/}
{@st41}Save{/}
{@st41}Auto{/}
{@st41}Reset{/}
{@st59}Set quantity.{/}
{ol}Group
{ol}Message
{ol}Sound
{@st41}Create Minimap{/}
{@st55}Area Map
{@st43}{s22}Market{/}
{@st43}{s24}Market{/}
{@st42b}Filter{/}
{@st42b}Type{/}
{@st42b}Req. Lv{/}
{@st42b}Enhance Lv{/}
{@st42b}Name
{@st41b}Retrieve %s
{@st41b}Sell
{@st41b}Search
{@st59}Close{/}
{@st42b}Sort
{@st41b}Purchase
{@st43}{s22}Retrieve
{@st41b}Retrieve All
{@st41b}Retrieve
{@st43}{s22}Sell
{@st42b}Quantity
{@st42b}Price
{@st42b}Hide Seller's Name{/}
{@st41b}Register
Siege Coin
Someone was killed by someone
{@st43}Minigames{/}
{@st49}Fire Catapult{/}
{@st44}Control directions{/}
{@st44}Fire{/}
Minigame
{s18}{ol}{gr gradation1}Hide and seek minigame{/}
{s16}Would you like to join the mini-game?
{s16}Participants : (0/5)
{s16}Participants : (%s /%s)
{s16}The game starts after 1 second.
{s16}The game starts after %s seconds.
{@st59}Zoom in{/}
{@st59}Zoom out{/}
{@st59}Map (M){/}
{@st42b} Area Map
{@st44}Item Synthesizer{/}
{s16}{#FFcc66}{ol}Please select the item you want to create{/}{/}
{s16}{#FFcc66}{ol}Drag the ingredients to the slots
{@st42}Create{/}
{@st42} Cancel {/}
Information of %s
Kepa or ...
{@st41}{Details}
{s20}{#050505}Monster Description Monster Description Monster Description Monster Description
{@st41} Kill {/}
{@st41} Overkill {/}
{@st41} Normal Kill {/}
{@st41} Area {/}
{@st41} Item {/}
{@st41} Achievement {/}
Object
{@st43}Necronomicon{/}
{@st59}Close{/}
{@st59}I am too lazy to think.{/}
Summoned Creature : {#ffcc33}%s{/}
Undead Harpy
Skill : %s
Skill 1, Skill 2
Fragments Required : %s
Beast 60 / Insect 20/ Mutant 10
Number of Fragments
Parts 1
Parts 2
Parts 3
Congratulations! You have leveled up.
Item Alarm
{@st64}Details{/}
How to Play
{@st42b} Move once with each of the keys{/}
{@st42b} Perform a basic attack{/}
{@st42b} Jump up{/}
{@st42b} Press two directional keys to move diagonally.{/}
Fog Map Tool
Tool for killing monsters
Tool for making a mini-map
Dialogue tool
{@st43}GM Settings{/}
{@st59}Close{/}
{@st59b}Party Information{nl}{@st59s} - Click on the Create Party button at the bottom to create a party. {nl} - Right-click on other players to send a party invite. {nl} - Changes can be made to the party in the Settings tab. {nl} - Set up specific search conditions for party members from the Public Party list.{/}
{@st43}Party Information{/}
{@st41b}Members{/}
{@st41b}Party Event {/}
{@st41b}Settings{/}
{@st41}Members{/}
{@st41}Requirements for joining this party
{@st41b}Public
{@st41b}Private
Wish Level ~
{@st41}Loot Distribution
{@st41b}Free for all
{@st41b}Round Robin
{@st41b}Random
{@st41}EXP Distribution
{@st41b}Individual EXP
{@st41b}Equal EXP
{@st41b}By Level
{@st41}Quest Sharing
{@st41b}Use
{@st41b}Don't Use
{@st41b}Create Party
{@st43}Public Party List {/}
{@st59b}Public Party List{nl}{@st59s} - Search for a party you want to join by viewing the open parties in your server {nl} - Use the search option to find a party you want to join{/}
{@st59}Close Party List{/}
Use Search
Quest Sharing
EXP Distribution
Item Distribution
{@st43}Invite
{@st41b}Invite{/}
{s18}{ol}{gr gradation1}Logout PC rules{/}
{ol}Conditions for applying rules
{ol}Action for applying rules
Enter a name for the rule
{Gr gradation1}Registration{/}
Register Rules
{Gr gradation1}Cancel{/}
Cancel Action
{@st43}Companion Info
{@st59b}Companion Info{nl}{@st59s} - You can set your companion to Active or in Rest Mode using the button below. {nl} - The attributes and equipped items of your companion can be customized. {/}
{@st59}Close{/}
{@st41b}Name : {@sti9}%s{/}
{@sti9}%s{@st41b}Closeness : {@sti9}%s {@st41b}Level{/}
{@st41b}EXP{/}
{@st41b}Stamina{/}
{@st41b}Affinity{/}
{@st41b}Attributes and Information
{@st43}Companion{/}
{@st59b}Companion{nl}{@st59s} - Click on an item in the list to view more information. {/}
{@st59}Close{/}
{@st59}Close{/}
{@st59}Help{nl} - View detailed information and tips. {nl} - View other topics from the Help List{/}
{@st43}Help{/}
Help Topics
{ol}{#AAAA00}{s16}Elapsed Time : %s
{@st43}Poison Pot{/}
{@st59}Close{/}
{@st59}Need to write{/}
Poison Amount: %s
Items that can be used to Craft poison
Select All
Click again to de-select all
Crafting
shuffle shuffle mix and shuffle
{@st43}Category{/}
{@st43}Me{/}
{@st43}Target{/}
{@st43}Level{/}
{@st43}Funds{/}
{@st43}Rate{/}
{@st43}PvP Win/Loss Ratio{/}
{@st59}Close{/}
{@sti5}Total Purchase Amount : %s{/}
{@sti5}Total Amount : %s{/}
{@st41b} Purchase
{@st43}Gained materials for a craftable item!
{@st43}Magnum Opus{/}
{@st41}Delete All
{@st42}Pension target {@stx1}(%s required){/}
{@st41}Combine
{@st43}Quests{/}
{@st59b}Quests{nl}{@st59s} - When you are on a new quest, it will be added to the quest tracker. {nl} - A main quest is displayed in yellow color, while a subquest is displayed in blue. {nl} - The arrow on the character's foot leads to the location of your quest. {nl} - If you completed a quest, a 'Return' icon is displayed on the quest tracker. {nl} (Teleports you to the Quest NPC using the Backspace key or a mouse-click) {nl} - Add or remove quests in the quest tracker by ticking or unticking the box in front of the quest name. {/}
{@st41b}In Progress{/}
{@st41b}Abandoned{/}
{@st43}{s22}Quest Information{/}
Mission Complete
{@st41}Complete{/}
Mission Progress Info
{s18}{ol}Quest Information
{s16}Time Left
Use quest item
Quest Hint
{@st41}Confirm{/}
{@st43}{s22}Quest Completed{/}
{@st41b}Complete{/}
{@st41}Accept{/}
{@st41}Decline{/}
{@st44}Go Back{/}
Which quest would you like to go back to?
{@st41b}Quest class name{/}
{@st59}Expand Slots{/}
{@st59}Reduce Slots{/}
{@st59}Summon Companion.{/}
{@st44}Menu{/}
{@st60}Character Selection{/}
{@st60}Logout{/}
{@st60}Quit Game{/}
{@st60}Game Settings{/}
{@st60}Go Back{/}
{@st41}Skip Tutorial{/}
{@st41}Character Selection{/}
{@st41}Logout{/}
{@st41}Quit Game{/}
{@st41}Go Back{/}
{@st43}{s22}Gather for the raid!
{@st41b}Monsters are approaching the outskirts of the town castle. Only you can stop them.
{@st43}{s22}Game Settings{/}
{@sti7}Searching for a raid party...{/}
{@st41b}Cancel participation
{@st41b}I'll do something about it!
{@st41b}I don't think I can help this time...
{@sti7}{s24}Select Raid Rewards{/}
{@st42b}Remaining time {@st43}%s{@st42b} seconds{/}
{@st41b}Increase the number of selections
{@43b}{s22} No. of times selectable : {@st43}%s{/}
shadow_box tentativeremoval
{@st43}Ranking{/}
{@st59}Close{/}
{@st41}Monster Kill Top 100{/}
{@st41}Damage Top 100{/}
{@st41}Money Money Top 100{/}
{@st41}Level Up Top 100{/}
{@st41b}Menu{/}
{@st43}{s22}Enhance Item{/}
{@st41b}Selected Item
{@st41b}Anvil
{@st41}{s20}Anvil Hit Count :{@st43} %s
{@st41} {s20}Price : %s
{@st41b}Enhance{/}
{@st59}Start Item Enhancement{/}
{@st59}Close{/}
{@st41b} Enhance with the {@sti9}×%s{/} selected items?{/}
{@st43}Enhancement
{@st44}Enhance Item{/}
{s24}{b}{#000000}Enhancement Complete!
{@st41}Enhance Again{/}
{@st41}Close{/}
{s18}{ol}{gr gradation1}Repair Equipment{/}
Equipped Equipment
Equipment in the Inventory
{Gr gradation1}Select All{/}
Select All
{Gr gradation1}Repair{/}
{@st43}Repair{/}
List of repairable items
{@st41b}Repair Cost{/}
{@st41b}Remaining Amount{/}
{@st41b}Repair{/}
Repair the selected equipment.
{@st59}Close Item Repair{/}
{@st43}Item Reinforcing{/}
{@st41}List of reinforceable items{/}
{@st44}Reinforce the Item{/}
{@st42}Reinforce{/}
{@st59}Reinforce with the current settings{/}
{@st59}Do not Reinforce{/}
{@st44}Resume{/}
{@st41b}You have become {/}{s20}{#cc6600}{ol} incapacitated{/}{@st41b}{/}
{@st41b}Respawn at the nearest Revival Point{/}
{@st41b}Respawn here (requires %s TPs) {/}
{@st41b}Return to field{/}
{@st41b}Abandon quest and restart{/}
{@st41b}Try again{/}
Sanctuary of Resurrection (70031)
Required item is missing.
Rest Quickslot
{@st43}Dialog box{/}
Temporary Name
{@st41b} {s18} Insufficient Inventory Space
You cannot obtain the item because your inventory is full{nl}Please free up some space in your inventory.
{@st44}Set Item acquired!{/}
Please select an item
{@st59b} shop {nl} {@st59s} - Right-click and input the quantity to purchase multiple {nl} - Double right-click to sell the entire stack of item {/}
{@st59}Close{/}
{@st59}First Page{/}
{@st59}Next Page{/}
{@st59}Last Page{/}
{@st41b}Reset{/}
{@st59}Reset Shopping Cart{/}
{@st41b}Confirm{/}
{@st59}Confirm Transaction{/}
{@st43}Shop{/}
{@st41b}Items Bought{/}
{@st41b}Items Sold{/}
{@st41b}Price{/}
{@st41b}Balance{/}
{@st41b}My Sold Items{/}
{@st41}Empty slots{/}
{@st43}Total{/}
{@st41}Settle Transaction{/}
{@st41}After Transaction{/}
{@st41}Items purchased{/}
{@sti1c}Simony
{@st41}Crafting Skills
{@st42}Level %s{/}
Crafting costs
Crafting Qty
Approximately %s seconds required
{@st41}Craft
{@st43}Skills & Attributes{/}
{@st59}Close Classes & Skills{/}
{@st59b}Classes{nl}{@st59s}- You can learn new skills by growing the Circle of your class. {nl} - You can choose from 3 available classes to advance to from your 1st to 2nd advancement. {nl} - You can advance to the same class up to 3 times. {nl} - You cannot change back to your previous class once you advanced to another class. {nl} - You have to consume all your Skill Points to be able to advance. {nl} - You can choose the same class.{nl}{@st59b}Skills{nl}{@st59s} - You can increase the rank of each skill up to level 5.{nl} - Attributes learned from your Masters can be seen below your skills. {/}
{@st41b}Apply{/}
{@st59}Apply{/}
Cleric
{@st59}Cancel{/}
Learning {#ff4400}%s (Lv. %s){/}...
Psychohassle
%s minute(s) left
{@st43}Pose{/}
{@st59}Close{/}
{@st41}Board{/}
{@st41}Trade{/}
{@st41}Social Functions{/}
{@st41b}Write{/}
{@st41}Register{/}
{@st59}Register Post{/}
{@st41}Start MyPage{/}
{@st59}Publish MyPage{/}
{@st59}Register Greetings{/}
{@st41b}1. Menu{/}
{@st41}Visit{/}
{@st59}Visit MyPage{/}
{@st41}Sell{/}
{@st59}Sell Item{/}
{@st43}Living{/}
{@st59}Close{/}
{@st41}View All{/}
{@st41}Create Map{/}
{@st41}%s/min (%s in hand){/}
Keyboard Warrior
{@st42}%s{/}{@st42_yellow}Level{/}
{@st41_yellow}Employment Time
{@st43}Graffiti{/}
{@st59}Close{/}
{@st41b}Tip : Draw a picture in the frame below{/}
{@st41b}Colors{/}
{@st41b}Quantity{/}
{@st41b}Brush{/}
{@st43}Draw{/}
{@st59}Draw the completed picture on the ground.{/}
{@st41b}{a SAVE_EDIT_SPRAY}Save{/}{/}
{@st59}Save drawings{/}
{@st41b}{a LOAD_EDIT_SPRAY}Load{/}{/}
{@st59}Load previously drawn pictures.{/}
{@st59}Selected color 1{/}
{@st59}Selected color 2{/}
{@st59}Color List{/}
{@st59}Selected Brush{/}
{@st59}Brush 1{/}
{@st59}Brush 2{/}
{@st59}Brush 3{/}
{@st59}Brush 4{/}
{@st59}Brush 5{/}
{@st59}Brush 6{/}
{@st49}People who like this{/}
{s20}{#050505}Describe whatever
{@st41} All {/}
{@st41} Party {/}
{@st41} Monster {/}
{@st41b}{#f0dcaa}Remaining Status Points ▶ {@st46}%s
{@st59b}My Information{nl}{@st59s}- Status : Use the points you earned by leveling up to enhance the 5 status attributes. {nl}- Information : This is information about your character based on your current status and equipment. {nl}- Title : Titles can be earned by accomplishing achievements. {nl} {/}
{@st41b}Info{/}
{@st41b}Title{/}
Show Class
Show Character Name
{@st59}Change Character Name{/}
{@st41b}Apply
{@st59}Apply{/}
{@st41b}Cancel
{@st59}Cancel{/}
PC Name
{@st41_yellow}Level: {@st41}%s{/}
{@st41_yellow}Mercenary Skills
{@st43}Attack Effects{/}
{@st43}Defense Effects{/}
{@st43}Stat{/}
systemmenu_vertical tentative removal
{@st59}Character Information (F1){/}
{@st59}Inventory (F2){/}
{@st59}Classes & Skills (F3){/}
{@st59}Adventure Journal (F4){/}
{@st59}Quests (F5){/}
{@st59}Party (F6){/}
{@st59}Friends (F7){/}
{@st59}Macro (F8) {/}
{@st59}Companion (F9) {/}
{@st59}Help (F10) {/}
{@st59}System Menu (Esc){/}
{@st59}Necronomicon{/}
Help (F1)
Contents
View Details
{@st43}Game Settings{/}
{@st43}Game{/}
{@st41b}Show Gained EXP{/}
{@st41b}Show Character Name{/}
{@st41b}Show Team Name only{/}
{@st41b}Show Quest Guide{/}
{@st43}Resolution{/}
{@st43}Graphics{/}
{@st41b}Full Screen{/}
{@st41b}Windowed Mode{/}
{@st43}Sound{/}
{@st41b}Sound Effects Volume (%s){/}
{@st41b}BGM Volume (%s){/}
{@st41b}Volume (%s){/}
{@st43}{b}Select Language{/}
{@st59}Close{/}
{@st41b}Min.requirement Mode {/}
{@st41b}View{/}
{@st59}Credits{/}
Target buff window
{@st46}IMC's picture
{@st46}%s's picture
{@st46}Like
{@st46}Report
{@st46}Use preservatives
{@st46}Remove Picture
Snow Hallucination
Bouquet
{@st41} Gifts
Please enter a quantity
{@st53b}%s Wins %s Losses
{@st42}Today's Schedule
{@st53}Until Start :
{@st53b}Gifts received : ×%s
{@st43b}Send gift to %s{/}
{@st55_a}Next game
{@st53}- Click on the name to spectate{nl}- Right-click to send a gift
Center camera to my character
{@st55_a}Congratulations!
{@st42}Switch Camera
{@st44}Adventure Journal{/}
{@st59}Change View Settings{/}
{@st41}Statistics {/}
{@st41}Crafting {/}
{@st41}Hunt {/}
{@st41}Help {/}
{@st44}Wiki Page{/}
{@st42}Information{/}
{@st42}Details{/}
{@st42}Combat{/}
{@st42}Acquire{/}
{@st59}Close Page{/}
{@st43}Battlefield
{@st59}Close Battlefield.
(Bronze 3)
{@sti8}Points acquirable today : {nl}%s{/}
{@st41}Point Shop
{@st41}Ranking
{@st42}Battlefield schedule
{@st42}Recent Records
{@st41}Receive EXP
{@st41}PvP Page
{@st41}Search
{@st43}Battlefield Rankings
{@st59}Close Battlefield rankings
{@st56}Skill Name{/}
{@st41}Check coordinates{/}
{@st41}Find{/}
{@st42b}Manage monster regen{/}
{@st42b}Monster List{/}
{@st42b}Create UI{/}
{@st42b}Map Fog{/}
{@st42b}Create Map{/}
{@st42b}Create Minimap{/}
{@st42b}Dialog {/}
{@st42b}Change Quest Rewards{/}
{@st42b}Group regen{/}
{@st42b}Set map location{/}
{@st42b}Skills map{/}
{@st42b}List of events{/}
{@st42b}Check coordinates{/}
{@st42b} Check XAC, texture path{/}
{@st42b}Performance ON/OFF{/}
Dialog list
Search
{@st41}Preview{/}
{@st41}Off{/}
{@st41}Remove{/}
{@st41}Save all{/}
{@st41}Apply picture{/}
{#FFFFFF}{ds}Select Event
{#FFFFFF}{ds}Edit Event
{ol}List
The name of the group to save
{@st42}Create New{/}
{@st41}Group regen{/}
{@st59}Enter monster name to search{/}
{@st59}Enter group name to save{/}
{@st41}New group{/}
Filtering
{@st59}Enter filter{/}
{ol}Property Value
Class List
Apply to XML
{#FFFFFF}{ds}Log
{#FFFFFF}{ds}View all properties
Enter a keyword to search
All attribute values
{ol}Name
{ol}Value
Rogue
{ol}Revision
{ol}Rogue
Class list
XML Conversion
{ol}Class name
{ol}Property Name
{ol}Changed value
{ol}Apply
Open Folder
Check All
History
Rollback Value
{ol}Select item
Enter the name you want to search
{@st42}Confirm{/}
{@st41}Create UI{/}
{ol}Frame
{@st41}Frame{/}
{@st41}Button{/}
{@st41}Text{/}
{@st42b}Normal{img btn_close}
{@st42b}Auction{img btn_close}
{@st41}Set map location{/}
{@st41}Rename{/}
{@st59}Enter the words you want to filter{/}
{@st41}Create{/}
{@st56}XML save{/}
{@st56}Reset{/}
{@st56}Attribute{/}
{@st56}Value{/}
{@st42}Content{/}
{@st41}Undo{/}
{@st41}Save all{/}
{@st41}Open XML{/}
{@st42b}Fixed Skill : 0{/}
{@st42b}Fixed skill : %s{/}
{@st42b}Mouse homing{/}
{@st42b}Skill name{/}
{@st41}Monster list{/}
{@st41}Performance Manager{/}
{ol}Select Quest
Enter quest name to search
{ol}Select map
Enter map name to search
{@st42}Current map{/}
{ol}Map name
{ol}Coordinates
{@st41}Change quest rewards{/}
{@st59}Enter quest to search{/}
{@st59}Enter the item to search for{/}
{@st42}EXP
{ol}Basic rewards
{ol}Quantity
{ol}Additional rewards
{@st45}Frequently used cheats
{@st41}Skills map{/}
{@st42}Ability{/}
{@st42}Warrior{/}
{@st42}Wizard{/}
{@st42}Archer{/}
{@st42}Monk{/}
{@st42}Sorcerer{/}
{@st41}Skill{/}
{@st59}XML load{/}
{@st41}Load{/}
{@st59}Save as XML{/}
{@st59}Reset Open Skill map{/}
{@st41}Reset{/}
{@st59}Reset all Skill maps{/}
{@st41}Reset All{/}
{S18}Remove script
{S18}String argument
{s18}string 1 argument
{s18}string 2 argument
{s18}Max skill level
{@st59}Remove script type box{/}
{@st59}Remove script argument{/}
{@st59}Max skill level{/}
{@st59}Save Property{/}
{@st41}Save Property{/}
{@st44}UI List{/}
{ds}Addon List
{ds}Fixed frame list
{@st42}UI list{/}
{@st59}show UI List{/}
{@st42}Adjust location{/}
{@st59}Adjust location{/}
{@st42}Edit Property{/}
{@st59}Edit property{/}
{@st42}Save{/}
{@st59}Save{/}
{@st44}Edit UI properties{/}
{@St59}Character Selection{/}
{@St59}Logout{/}
{@St59}Settings{/}
{@St59}Quit{/}
{@st43}Lodge Settings{/}
{@st59}Close{/}
{@St42_b}{s18}{#f5c384}Team Name{/}
{@st59}Enter Team name {/}
{@st59}Save Team Name{/}
Provisional Delete
{@St59}Close{/}
{@St43}Lodge Decorating{/}
{@St41b}Theme{/}
{@St41b}Item Arrangement{/}
{@St41b}Name
{@St41b}Price
{@St41b}State
{@St44}New Character{/}
{@St41b}{s22}Select Character Class{/}
{@St41b}Return{/}
{@St59}Go back to your Lodge without creating a character
Change Character
{@St41}Character{/}
{@St59}Rotate clockwise{/}
{@St59}Rotate counterclockwise{/}
{@St43b}Character Rotation{/}
{@st43}Character Name{/}
Enter a name{@st59} {/}
{@St43b}Choose Gender{/}
{@St59}Female{/}
{@St59}Male{/}
{@st43b}Choose Hairstyle{/}
{@st59}Hairstyle 1{/}
{@st59}Hairstyle 2{/}
{@St59}Hairstyle 3{/}
{@st59}Hairstyle 4{/}
{@st59}Hairstyle 5{/}
{@st59}Hairstyle 6{/}
{@st59}Hairstyle 7{/}
{@st59}Hairstyle 8{/}
{@st59}Hairstyle 9{/}
{@st59}Hairstyle 10{/}
{@St43b}Select Class{/}
{@st59}Swordsman{/}
{@st59}Wizard{/}
{@st59}Archer{/}
{@st59}Cleric{/}
{@St41b}Visit Barrack {/}
{@St59}Visit the Barrack of another player.{/}
{@St41b}Logout{/}
{@St59}Move to the login screen{/}
{@St41b}Exit Game{/}
{@St59}Exit Tree of Savior{/}
{@st41b}Select Channel{/}
{@st43}Enter{/}
{@St59}Start the game with the selected character{/}
{@St43}{s26}Team Name{/}