summaryrefslogtreecommitdiff
path: root/world/map/npc/028-1/portal.txt
blob: 0b51021445a39d9ff8141cf80e2bab1042a35ef9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Leave GM Island
028-1,98,37,0|script|Exit|400,0,0,
{
    mes "[Exit]";
    mes "Would you like to leave this place?";
    menu
        "Yes.", L_Leave,
        "No.", L_Close;

L_Leave:
    warp getsavepoint(0), getsavepoint(1), getsavepoint(2);
    goto L_Close;

L_Close:
    close;
}