summaryrefslogtreecommitdiff
path: root/npc/099-7/cronos.txt
blob: 8aa6985cdcc028ac6bda80c7f8773ff7d252eb8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Cronos, the lord of time and apparently a shopkeeper
// There's also Father Time in the GM stuff

099-7,99,30,0	script	Chronos	NPC313,{
    mesn;
    mesq l("I'm Chronos, lord of time, the immortal, the... Alright, let's forget that.");
    if (BOSS_POINTS < .price)
        close;
    // Boss Points validation
    .@cur=(BOSS_POINTS % .price);
    mesc l("All things shall pass, but with the limited time you have, please enjoy shopkeeping.");
    close;

OnInit:
    .distance=4;
    .price=10000;
    end;
}