summaryrefslogtreecommitdiff
path: root/npc/commands/debug-look.txt
diff options
context:
space:
mode:
authorgumi <mekolat@users.noreply.github.com>2017-10-11 19:02:11 -0400
committergumi <mekolat@users.noreply.github.com>2017-10-11 19:02:20 -0400
commit6662b6f305976881c3e675241c41be7731b65aa5 (patch)
treea8ecaa074cf67cb929f4de6ed62ef7c4b49c46d1 /npc/commands/debug-look.txt
parent03049799efdc103fdd74e77161ed6a907acb7dde (diff)
downloadserverdata-6662b6f305976881c3e675241c41be7731b65aa5.tar.gz
serverdata-6662b6f305976881c3e675241c41be7731b65aa5.tar.bz2
serverdata-6662b6f305976881c3e675241c41be7731b65aa5.tar.xz
serverdata-6662b6f305976881c3e675241c41be7731b65aa5.zip
what's up with this crazy syntax?s20171023
I blame Reid
Diffstat (limited to 'npc/commands/debug-look.txt')
-rw-r--r--npc/commands/debug-look.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/commands/debug-look.txt b/npc/commands/debug-look.txt
index 436bdcca..4bdcf84f 100644
--- a/npc/commands/debug-look.txt
+++ b/npc/commands/debug-look.txt
@@ -21,7 +21,7 @@ function script BarberDebug {
function setStyle {
clear;
setnpcdialogtitle l("Appearance Debug - Barber");
- mes l("Hair style") + ": " + getlook (LOOK_HAIR);
+ mes l("Hair style") + ": " + getlook(LOOK_HAIR);
next;
mes l("Please enter the desired style") + " (1-255)";
input .@h, 1, 0xFF;
@@ -31,7 +31,7 @@ function script BarberDebug {
function setColor {
clear;
setnpcdialogtitle l("Appearance Debug - Barber");
- mes l("Hair color") + ": " + getlook (LOOK_HAIR_COLOR);
+ mes l("Hair color") + ": " + getlook(LOOK_HAIR_COLOR);
next;
mes l("Please enter the desired color") + " (0-255)";
input .@h, 0, 0xFF;
@@ -58,8 +58,8 @@ function script BarberDebug {
mes "---";
mes l("Gender") + ": " + Sex;
- mes l("Hair style") + ": " + getlook (LOOK_HAIR);
- mes l("Hair color") + ": " + getlook (LOOK_HAIR_COLOR);
+ mes l("Hair style") + ": " + getlook(LOOK_HAIR);
+ mes l("Hair color") + ": " + getlook(LOOK_HAIR_COLOR);
mes l("Race") + ": " + Class;
mes "---";