summaryrefslogtreecommitdiff
path: root/npc/001-4/event_soulmenhir.txt
blob: ed067cf3524c6d086e4bd9965b8c25788b2da5c2 (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
25
// TMW2 scripts.
// Author:
//    Jesusalva
// Description:
//    Special Soul Menhir which only allows leaving the map.

001-4,152,154,0	script	Soul Stone#001-4	NPC_SOUL_CLEAN,{
    mesn;
    mes l("(A mystical aura surrounds this stone. It probably can return you home. What do you do?)");

    menu
        l("Touch it."), L_Warp,
        l("Leave it alone."), -;
    close;

L_Warp:
    //warp getsavepoint(0), getsavepoint(1), getsavepoint(2);
    warp "000-0", 22, 22;
    close;

OnInit:
    .distance = 5;
    end;
}