blob: c6e0241599e4311fe433293a33336dc4ea152b66 (
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
|
// TMW2 scripts.
// Authors:
// Jesusalva
// Description:
// Part of the Doctor's Quest.
// Elli is capable to use magic without a mana stone, which puts her on the same
// level as the Moubootaur and the Mana Source.
032-1,58,129,0 script Elli NPC_ELLI,{
npctalk3 l("Hi.");
end;
OnInit:
.distance=5;
end;
}
032-1,59,126,0 script #InnerEP NPC_HIDDEN,0,0,{
end;
OnTouch:
if (is_master())
slide 52, 127;
else
dispbottom l("This door is locked.");
end;
}
|