summaryrefslogtreecommitdiff
path: root/npc/029-1/monster_guide.txt
blob: 9ff4964fe3c492a2a31656733ec91244ca29a1aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
029-1,45,97,0	script	Aidan	NPC102,{
    if (MPQUEST == 0)
        goto L_Register;
    mesn l("Aidan the Monster Guide");
    mes l("You currently have %s Monster Points. These points are acquired while killing monsters.", fnum(Mobpt));
    if (BOSS_POINTS)
        mes l("You also have %s Boss Points. These are vanity achievement points.", fnum(BOSS_POINTS));
    close;

L_Register:
    mesn l("Aidan the Monster Guide");
    mesq l("Oh my, you don't seem to be registered as a Quest Participant. Would you like to register?");
    next;
    goto L_Choice;

L_Choice:
    menu
        "Register",L_R,
        "Not at the moment",
        L_N,"Information",L_I;

L_R:
    mesn l("Aidan the Monster Guide");
    mes "Give me a second to look over your paperwork.";
    next;
    mes "[Monster Guide]";
    mes "Well, looks like you qualify!";
    mes "Welcome to the questing world!";
    MPQUEST = 1;
    close;

L_N:
    mesn l("Aidan the Monster Guide");
    mes "Very well, you don't know what you're missing.";
    close;

L_I:
    mesn l("Aidan the Monster Guide");
    mes "Here in The Mana World, there are certain rewards for your vanquishing of foes.";
    mes "For example, there are Monster Points; every monster you kill has a certain amount of points that get added to your account.";
    mes "The more points you have, the more expensive things you can buy using them.";
    next;
    mes "[Monster Guide]";
    mes "So whaddaya say, sign up won't you?";
    next;
    goto L_Choice;
}