summaryrefslogtreecommitdiff
path: root/world/map/npc/functions/change_sex.txt
diff options
context:
space:
mode:
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;
-}