summaryrefslogtreecommitdiff
path: root/npc/001-1/portal.txt
blob: a8c4599631511ce1e88599b6e529f90b3b0380bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
001-1,301,43,0	script	Soul Menhir	NPC_SOUL_CLEAN,0,0,{
    mesn;
    mes l("This Soul Menhir can send your soul and body back to the ground.");
    mes l("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;
}