summaryrefslogblamecommitdiff
path: root/npc/001-1/manhole.txt
blob: 310565a1ba4ba227849c825fcff0a1d1d02d3eb5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
                
          












                                                       
                                                                                           













                                                       
                                                                                           








                   
// Evol scripts.
// Author:
//    Reid
// Description:
//    A manhole near Mona's house.
// Variable:
//    ArtisQuests_MonaDad
// Quest states:
//    0  - Quest not started
//    1  - Mona explained that her dad was missing

001-1,152,52,0	script	#manhole1-001-1	NPC_NO_SPRITE,{

    if (getq(ArtisQuests_MonaDad) == 1)
    {
        narrator l("You hear some creeping and crawling sounds from the murkiness below.");
    }

    close;

OnInit:
    .sex = G_OTHER;
    .distance = 1;
    end;
}

001-1,196,35,0	script	#manhole2-001-1	NPC_NO_SPRITE,{

    if (getq(ArtisQuests_MonaDad) == 1)
    {
        narrator l("You hear some creeping and crawling sounds from the murkiness below.");
    }

    close;

OnInit:
    .sex = G_OTHER;
    .distance = 1;
    end;
}