blob: 5939428ed6fdaead1e0c110d6f065ac715a165e4 (
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
49
50
51
52
53
54
55
|
// Evol scripts.
// Author:
// gumi
008-2-2,43,34,0 script Ledd NPC_DRINKER_ROAMINGO,{
// XXX: ^ I know it should be Led and Mitz but 4144 made names
// shorter than 4 characters illegal
deltimer("Mitz::OnTalk");
addtimer(rand(500, 900), "Mitz::OnTalk");
OnTalk:
npctalk3(l("Ha! I'll drink muuuch mo.. more than you! Im not ooone biiit dr...dr..unk!"));
// TODO: add more sentences
// XXX: maybe instead of making them respond to a click they should just
// shout at each other at regular intervals?
end;
OnInit:
.sex = G_MALE;
.distance = 3;
////////// UNFINISHED //////////
////////////////////////////////
// REMOVE THIS CODE WHEN THIS //
// NPC IS NO LONGER A WIP //////
////////////////////////////////
//if (!debug) disablenpc(.name$);
///////// UNFINISHED ///////////
end;
}
008-2-2,46,34,0 script Mitz NPC_DRINKER_MICKSHA,{
deltimer("Ledd::OnTalk");
addtimer(rand(500, 900), "Ledd::OnTalk");
OnTalk:
npctalk3(l("I can still drink more! Better give up you... you... teelotaler! MORE BEER MELINDA!"));
// TODO: add more sentences
end;
OnInit:
.sex = G_MALE;
.distance = 3;
////////// UNFINISHED //////////
////////////////////////////////
// REMOVE THIS CODE WHEN THIS //
// NPC IS NO LONGER A WIP //////
////////////////////////////////
//if (!debug) disablenpc(.name$);
///////// UNFINISHED ///////////
end;
}
|