summaryrefslogtreecommitdiff
path: root/world/map/npc/042-2/magic_basement.txt
blob: 2f278a5a2f30e6dc7a027e4158aabd377cce7ebd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 
// Author: Wushin

042-2.gat,103,56,0|script|#MagicBasement|400,0,0,
{
    callfunc "MorganState";
    if (@morgan < 4)
        goto L_Close;
    mes "Descend into the basement?";
    next;
    menu
        "Yes.", L_MagicBase,
        "Nevermind.", L_Close;

L_MagicBase:
    warp "042-3",24,21;
    goto L_Close;

L_Close:
    close;
}