summaryrefslogtreecommitdiff
path: root/world/map/npc/functions/change_sex.txt
diff options
context:
space:
mode:
authorwushin <pasekei@gmail.com>2016-01-26 13:32:37 -0600
committermekolat <mekolat@users.noreply.github.com>2016-02-08 21:04:36 -0500
commitd0b2262fc38ecfa47671e1738d657b4317238499 (patch)
tree22eb4405d461e8e7d7040273895b5a81d95a0500 /world/map/npc/functions/change_sex.txt
parentf28b9ef883c8da9a890096d8e05865b90795c46d (diff)
downloadserverdata-d0b2262fc38ecfa47671e1738d657b4317238499.tar.gz
serverdata-d0b2262fc38ecfa47671e1738d657b4317238499.tar.bz2
serverdata-d0b2262fc38ecfa47671e1738d657b4317238499.tar.xz
serverdata-d0b2262fc38ecfa47671e1738d657b4317238499.zip
Move gender selection to intro dialogue
Diffstat (limited to 'world/map/npc/functions/change_sex.txt')
-rw-r--r--world/map/npc/functions/change_sex.txt24
1 files changed, 0 insertions, 24 deletions
diff --git a/world/map/npc/functions/change_sex.txt b/world/map/npc/functions/change_sex.txt
deleted file mode 100644
index f81334f6..00000000
--- a/world/map/npc/functions/change_sex.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-function|script|ChangeSex
-{
- mes "Please select a character gender:";
- menu
- "Female.", L_Female,
- "Male.", L_Male,
- "Non-binary.", L_NonBinary;
-
-L_Female:
- set @sex, 0;
- goto L_Change;
-
-L_Male:
- set @sex, 1;
- goto L_Change;
-
-L_NonBinary:
- set @sex, 3;
- goto L_Change;
-
-L_Change:
- set Sex, @sex;
- return;
-}