summaryrefslogtreecommitdiff
path: root/npc/017-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-01-15 17:38:04 -0300
committerJesusaves <cpntb1@ymail.com>2021-01-15 17:38:04 -0300
commit5b399b1e3e5c6927871ee98daa0ff1ee893f0bd1 (patch)
tree275abc9df3213037b8def3c51d22287d4d2214c0 /npc/017-1
parent08d4a35af8794d158f67d04f0f20487f3807afbe (diff)
downloadserverdata-5b399b1e3e5c6927871ee98daa0ff1ee893f0bd1.tar.gz
serverdata-5b399b1e3e5c6927871ee98daa0ff1ee893f0bd1.tar.bz2
serverdata-5b399b1e3e5c6927871ee98daa0ff1ee893f0bd1.tar.xz
serverdata-5b399b1e3e5c6927871ee98daa0ff1ee893f0bd1.zip
Fix Milocat
Diffstat (limited to 'npc/017-1')
-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)