summaryrefslogtreecommitdiff
path: root/world/map/npc/004-2/pirate_cave_exit.txt
blob: c51490984334e7e989e03270caaad600c92c1bca (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; 
}