blob: 16d1ecb7f36774a0195735cb6a8774d78931ab5d (
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
|
// TMW2 scripts.
// Author:
// Jesusalva
// Description:
// Pinkie Cave Tree is part of Legendary Weapons
025-2-4,39,33,0 script Mana Tree NPC_MANATREE,{
setpcblock(255, true);
mesc l("A tree glows in this dark cave, surrounded by mana lanes.");
next;
mesc l("This might be the place of a great secret, but yet, all you can do is stare.");
next;
mesc l("...for now.");
next;
setpcblock(255, false);
closeclientdialog;
close;
OnInit:
.sex = G_OTHER;
.distance = 2;
end;
}
|