blob: 623690f0f26e6aa43554097c98487c28d0cc249e (
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
|
// Forest janitor
051-1,1,1,0|script|#IlliaJanitor1|32767
{
end;
OnCommandClean:
// Nothing to do here.
end;
}
// Desert janitor
051-1,1,1,0|script|#IlliaJanitor3|32767
{
end;
OnCommandClean:
killmonster "051-1", "IlliaDMobs051-1::On1096";
// Kill the soul eaters that were spawned
killmonster "051-1", "#SoulEaters0::OnSoulEaterDeath";
killmonster "051-1", "#SoulEaters1::OnSoulEaterDeath";
killmonster "051-1", "#SoulEaters2::OnSoulEaterDeath";
killmonster "051-1", "#SoulEaters3::OnSoulEaterDeath";
killmonster "051-1", "#SoulEaters4::OnSoulEaterDeath";
end;
}
|