summaryrefslogtreecommitdiff
path: root/npc/012-1/zegas.txt
blob: 6313b26c60dee0c00ae6a0c7dcb18bca31ccf79c (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
// Evol scripts.
// Author:
//    Micksha
// Description:
//    Zegas, the guy who want you to clean storage room.
// THIS IS A PLACEHOLDER!

012-1,48,105,0	script	Zegas	NPC_ZEGAS,{
    mesn;
    mesc l("*sighs*");
    next;
    mesn;
    mesq l("I need someone to clean the storage room...");
    next;
    mesn;
    mesq l("Hey, you! Don't you want to clean the storage room for me?");
    next;
    select
        l("Yes, of course!"),
        l("'course not!");
    mes "";
    mesn;
    if (@menu == 2) {
        mesq l("Nobody ever does...");
    } else {
        mesc l("Zegas hands you a broom.");
        mesq l("Good, now start cleaning it!");
        // TODO: Maybe we actually could have you cleaning the room boxes.
        // Then you find a peculiar dusty utensil inside. Then, some quest begins.
    }
    close;

OnInit:
    .bodytype = BODYTYPE_3;
    .distance = 4;
    end;
}