blob: a0253b118e6e84d28f0e4355fec1b31c57c5997e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// TMW2 scripts.
// Author:
// Jesusalva
// Description:
// Special Soul Menhir which only allows leaving the map.
001-11,37,31,0 script Soul Menhir#001-11 NPC_SOUL_CLEAN,{
mesn;
mes l("(A mystical aura surrounds this stone. It probably can return you home. What do you do?)");
menu
l("Touch it."), L_Warp,
l("Leave it alone."), -;
close;
L_Warp:
warp "Save", 0, 0;
close;
}
|