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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// TMW2 Script
// Author:
// Jesusalva
// Description:
// Manages warps at Aeros
001-1,235,25,0 script Worlds Gate NPC_HIDDEN,1,0,{
OnTouch:
mesn;
mes l("This Portal can send your soul back to the world, along any items, money and/or experience gained.");
mes l("Would you like to leave this place?");
menu
l("No."), L_Close,
rif(getgmlevel() && !$@GM_EVENT, l("Enable Event")), L_Enable,
rif(getgmlevel() && $@GM_EVENT, l("Disable Event")), L_Disable,
rif(getgmlevel() && .WALL, l("Open Extension")), L_DelWall,
rif(getgmlevel() && !.WALL, l("Close Extension")), L_AddWall,
l("Yes."), L_Leave;
L_Leave:
warp getsavepoint(0), getsavepoint(1), getsavepoint(2);
goto L_Close;
L_Enable:
$@GM_EVENT=1;
close;
L_Disable:
$@GM_EVENT=0;
close;
L_AddWall:
setcells "001-1", 169, 63, 169, 76, 3, "AerosWall";
//setwall("001-1", 169, 63, 13, DOWN, false, "AerosWall");
.WALL=1;
close;
L_DelWall:
delcells "AerosWall";
//delwall("AerosWall");
.WALL=0;
close;
L_Close:
close;
}
|