summaryrefslogtreecommitdiff
path: root/npc/commands/debug-look.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-06-17 05:08:35 -0300
committerJesusaves <cpntb1@ymail.com>2020-06-17 05:08:35 -0300
commit654d54d42079e21ac0541cb1e5f28c08cc935d5d (patch)
treeced30475ba31099de02627b57fb264958193d70d /npc/commands/debug-look.txt
parent3cb4b0171536a04e177d823213a1aff51ab56f8d (diff)
parent4e242e64460a5548b77d512f317a8cd66967a95f (diff)
downloadserverdata-kfahr.tar.gz
serverdata-kfahr.tar.bz2
serverdata-kfahr.tar.xz
serverdata-kfahr.zip
Merge branch 'master' into kfahrkfahr
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")),