summaryrefslogtreecommitdiff
path: root/world/map/npc/functions/change_sex.txt
blob: f81334f66eae3f302b2ea0e1413e2cc497ee49d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
}