diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-10-16 22:43:05 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-10-16 22:43:05 -0300 |
commit | 70ae0856d40396172fbb7ca0fb04f540b5dee7ee (patch) | |
tree | 83f7b5475543e8ee83c9a053536fb7983f3967e7 | |
parent | 4f31f8c4c86153a20b87fca57fdad6a3e950e763 (diff) | |
download | serverdata-70ae0856d40396172fbb7ca0fb04f540b5dee7ee.tar.gz serverdata-70ae0856d40396172fbb7ca0fb04f540b5dee7ee.tar.bz2 serverdata-70ae0856d40396172fbb7ca0fb04f540b5dee7ee.tar.xz serverdata-70ae0856d40396172fbb7ca0fb04f540b5dee7ee.zip |
Attempt to allow translation for races
-rw-r--r-- | npc/001-1/portal.txt | 8 | ||||
-rw-r--r-- | npc/021-1/yeti.txt | 12 |
2 files changed, 14 insertions, 6 deletions
diff --git a/npc/001-1/portal.txt b/npc/001-1/portal.txt index 0240de50b..e652285fa 100644 --- a/npc/001-1/portal.txt +++ b/npc/001-1/portal.txt @@ -41,6 +41,14 @@ L_TranslationFix: mes l("Monster Sergeant"); mes l("Monster Soldier"); mes l("Random Bif"); + // Configs + mes l("Human"); + mes l("Ukar"); + mes l("Redy"); + mes l("Elf"); + mes l("Orc"); + mes l("Raijin"); + mes l("Tritan"); // Messages mes l("All monsters summoned!"); mes l("Mercy has been granted."); diff --git a/npc/021-1/yeti.txt b/npc/021-1/yeti.txt index 881924269..b3b877165 100644 --- a/npc/021-1/yeti.txt +++ b/npc/021-1/yeti.txt @@ -40,17 +40,17 @@ L_Walking: mesq l("Grr, where's Mercury... He was supposed to keep watch over this spot... It was meant to be my free time!"); next; mesn; - mesq l("And you, @@... You better get walking. Soon.", $@allraces$[Class]); + mesq l("And you, @@... You better get walking. Soon.", l($@allraces$[Class])); close; L_Disrupt: mesn; - mesq l("Grrr... Why are @@ on this cave?! What Mercury was doing?!", $@allraces$[Class]); + mesq l("Grrr... Why are @@ on this cave?! What Mercury was doing?!", l($@allraces$[Class])); close; L_Warning: mesn; - mesq l("Stupid @@, get out of this cave before I lose my patience!", $@allraces$[Class]); + mesq l("Stupid @@, get out of this cave before I lose my patience!", l($@allraces$[Class])); close; L_Hit: @@ -81,17 +81,17 @@ OnInit: L_Walking: mesn; - mesq l("You, @@... You better get walking. Soon.", $@allraces$[Class]); + mesq l("You, @@... You better get walking. Soon.", l($@allraces$[Class])); close; L_Disrupt: mesn; - mesq l("Grrr... Why are @@ on this cave?! Begone, before I lose my patience!", $@allraces$[Class]); + mesq l("Grrr... Why are @@ on this cave?! Begone, before I lose my patience!", l($@allraces$[Class])); close; L_Warning: mesn; - mesq l("Stupid @@, get out of this cave before I lose my patience!", $@allraces$[Class]); + mesq l("Stupid @@, get out of this cave before I lose my patience!", l($@allraces$[Class])); close; L_Hit: |