blob: 140ee673f51ec0a64311dee0a50023ec962156d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// TMW2 scripts.
// Authors:
// Jesusalva
// TMW LoF (Paxel)
// Description:
// Informs about the Slime Cage
020-7-2,25,51,0 script Parcival NPC_BLUESAGEWORKER_MA,{
mesn;
mesq l("We keep the Slimes past the barrier for the night, so be careful when entering.");
next;
mesn;
mesq l("A good thing we still use sturdy standard steel grating on the emergency exit which lead to Nivalis. I can't imagine how bad the incident would be wasn't for that.");
close;
OnInit:
.sex=G_MALE;
.distance=5;
end;
}
|