summaryrefslogtreecommitdiff
path: root/npc/008-1-1/soldiers.txt
blob: a1636409f9916423f43622ec782e98fe10ff64a0 (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
// Evol scripts.
// Author:
//    Micksha
// Description:
//    Legion Guards serving Hal.
// THIS IS A PLACEHOLDER!


// FIXME We better put some more random answers

008-1-1,62,28,0	script	Soldier#1	NPC_RAIJIN_FEMALE_LEGION_ARTIS,{
    speech
        l("Hi!"),
        l("I am not allowed to talk to strangers.");
    close;

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

008-1-1,54,30,0	script	Soldier#2	NPC_HUMAN_MALE_LEGION_ARTIS,{
    speech
        l("Hi!"),
        l("I am not allowed to talk to strangers.");
    close;

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