summaryrefslogtreecommitdiff
path: root/npc/017-1/misc.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/017-1/misc.txt')
-rw-r--r--npc/017-1/misc.txt24
1 files changed, 19 insertions, 5 deletions
diff --git a/npc/017-1/misc.txt b/npc/017-1/misc.txt
index 1779ddd77..ee65dcec3 100644
--- a/npc/017-1/misc.txt
+++ b/npc/017-1/misc.txt
@@ -169,12 +169,26 @@ OnInit:
017-1,147,176,0 script Milocat 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.");
- select("Human:Ukar:Redy:Elf:Orc:Raijin:Tritan");
- jobchange max(0, @menu-1);
+ 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);
+ }
return;
}
@@ -188,7 +202,7 @@ OnInit:
l("What is my current hairstyle and hair color?"),
l("I'd like to get a different style."),
l("Can you do something with my color?"),
- rif(is_staff(), l("I am a GM, and I want to change my Race!")),
+ rif(is_gm() || REBIRTH >= 5, l("I want to change my Race!")),
l("I'm fine for now, thank you.");
switch (@menu)