summaryrefslogtreecommitdiff
path: root/world/map/npc/004-2/pirate_cave_exit.txt
blob: 42b2a6b5d1158d65a60eba54860d73cf7003075a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// The Secret Pirate Cave Entrance

004-2.gat,33,62,0|script|#piratecave1|45,1,1,
{
    mes "[Trapdoor]";
    mes "\"Descend into the caves?\"";
    next;
    menu
        "Yes.", L_PirateCave,
        "Nevermind", L_Close;

L_PirateCave:
    warp "004-3",80,23;
    goto L_Close;

L_Close:
    close; 
}