summaryrefslogtreecommitdiff
path: root/npc/commands/debug-look.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-06-17 03:37:12 +0000
committerJesusaves <cpntb1@ymail.com>2020-06-17 03:37:12 +0000
commitc2630c1793acc2916c0f89786d86d371cd53df16 (patch)
treea4dacd45a3652603da6cae9eb01955f5eede6a21 /npc/commands/debug-look.txt
parent87dd784da8d8d9fc53fe93d6527c112175ab2fc7 (diff)
downloadserverdata-c2630c1793acc2916c0f89786d86d371cd53df16.tar.gz
serverdata-c2630c1793acc2916c0f89786d86d371cd53df16.tar.bz2
serverdata-c2630c1793acc2916c0f89786d86d371cd53df16.tar.xz
serverdata-c2630c1793acc2916c0f89786d86d371cd53df16.zip
Contains fixes/reordering for races, guilds and genders.
PS. Gender change is broken, I blame Gumi Note: Players will no longer be able to select Kralog and Raijin at start, because @WildX said they were rare. (This needs a patch to evol-tools) FIXME: We'll need better names for human/talpan/viro race. FIXME: Gumi's stock code did not work, rebirth is disabled.
Diffstat (limited to 'npc/commands/debug-look.txt')
-rw-r--r--npc/commands/debug-look.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/commands/debug-look.txt b/npc/commands/debug-look.txt
index 23acc4da..cf63a207 100644
--- a/npc/commands/debug-look.txt
+++ b/npc/commands/debug-look.txt
@@ -2,15 +2,15 @@ function script BarberDebug {
function setGender {
clear();
- setnpcdialogtitle(l("Appearance Debug - Gender Change"));
- mes(l("Warning: changing your gender will send you back to the character selection screen."));
+ setnpcdialogtitle(l("Appearance Debug - Body Type Change"));
+ mes(l("Warning: changing your body type will send you back to the character selection screen."));
mes("");
- mes(l("Please choose the desired gender:"));
+ mes(l("Please choose the desired body type:"));
next();
menuint(
- l("Male"), GENDER_MALE,
- l("Female"), GENDER_FEMALE,
- l("Non-binary"), GENDER_HIDDEN);
+ l("Tanky"), GENDER_MALE,
+ l("Boobed"), GENDER_FEMALE,
+ l("Neutral"), GENDER_HIDDEN);
Gender = @menuret;
return;
@@ -54,7 +54,7 @@ function script BarberDebug {
mes "";
mes "---";
- mes l("Gender") + ": " + genderToString(Gender);
+ mes l("Body Type") + ": " + genderToString(Gender);
mes l("Hair style") + ": " + getlook(LOOK_HAIR);
mes l("Hair color") + ": " + getlook(LOOK_HAIR_COLOR);
mes l("Race") + ": " + Class + " (" + get_race() + ")";;
@@ -63,7 +63,7 @@ function script BarberDebug {
next;
mes l("What do you want to change?");
select
- menuimage("actions/edit", l("Gender") + " [" + l("Requires logout") + "]"),
+ menuimage("actions/edit", l("Body Type") + " [" + l("Requires logout") + "]"),
menuimage("actions/edit", l("Hair style")),
menuimage("actions/edit", l("Hair color")),
menuimage("actions/edit", l("Race")),