blob: 3ed9400965155c1aefe29dc60f37f6345f810638 (
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
|
// 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:
.bodytype = BODYTYPE_3;
.distance = 3;
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:
.bodytype = BODYTYPE_3;
.distance = 3;
end;
}
|