diff options
-rw-r--r-- | npc/003-6/tamiloc.txt | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/npc/003-6/tamiloc.txt b/npc/003-6/tamiloc.txt index b3924fbc2..912ad250e 100644 --- a/npc/003-6/tamiloc.txt +++ b/npc/003-6/tamiloc.txt @@ -10,11 +10,22 @@ 003-6,46,30,0 script Tamiloc NPC_ELVEN_FEMALE_ARMOR_SHOP,{ function setRace { clear; - setnpcdialogtitle l("Debug - Modify Race"); - mes l("Race") + ": " + $@allraces$[Class]; + setnpcdialogtitle l("Tamiloc - Modify Race"); + mes l("Race") + ": " + get_race(); next; mes l("Please select the desired race."); - switch (select("Human:MedHuman:DarHuman:Elf:Orc:Raijin:Tritan:Ukar:Redy:Savior")) + select + l("Kaizei Human"), + l("Argaes Human"), + l("Tonori Human"), + l("Elf"), + l("Orc"), + l("Raijin"), + l("Tritan"), + l("Ukar"), + l("Redy"), + l("Savior"); + switch (@menu) { default: jobchange max(0, @menu-1); |