summaryrefslogtreecommitdiff
path: root/npc/005-2-1/note.txt
blob: 6add835baed3b2668f11196ec07a70532bbf64e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// TMW-2 Script.
// Authors:
//    Saulc
// Description:
//    A small note

005-2-1,41,33,0	script	Note#saxsocave	NPC_PAPER_NOTE,{
    mesc l("I leave this basement that start to be too dangerous!");

    .@q=getq(General_EasterEggs);

    if (!(.@q & EE_SAXSO)) {
        setq General_EasterEggs, .@q|EE_SAXSO;
        dispbottom l("For finding an Easter Egg, you got Strange Coins!");
        getitem StrangeCoin, 5;
    }
    close;

OnInit:
    .distance = 2;
    end;
}