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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
// Debug Crypts Battle
function|script|UndeadDebug
{
goto L_Main;
L_Main:
if (@undeaddebug == 3)
goto L_UndeadDebugThree;
if (@undeaddebug == 4)
goto L_UndeadDebugFour;
if (@undeaddebug == 5)
goto L_UndeadDebugFive;
goto L_Close;
L_UndeadDebugThree:
mes "Reset your self to the various states.";
mes "Options Limited to Time and Place.";
menu
"Get Ritual Items.", L_KrukanItems,
"Nevermind.", L_Close;
L_UndeadDebugFour:
mes "Reset your self to the various states.";
mes "Options Limited to Time and Place.";
menu
"Get Ritual Items.", L_RazhaItems,
"Nevermind.", L_Close;
L_UndeadDebugFive:
mes "Reset your self to the various states.";
mes "Options Limited to Time and Place.";
menu
"Get Ritual Items.", L_TeroganItems,
"Nevermind.", L_Close;
L_InventoryNoSpace:
mes "\"Drop some weight then come back.\"";
goto L_Close;
L_KrukanItems:
if ((checkweight("Soul", 1) == 0)
|| (checkweight("Skull", 5) == 0)
|| (checkweight("DarkCrystal", 5) == 0)
|| (checkweight("Bone", 5) == 0)
|| (@inventorylist_count == 100))
goto L_InventoryNoSpace;
getitem "Soul", 1;
getitem "Skull", 5;
getitem "DarkCrystal", 5;
getitem "Bone", 5;
goto L_Main;
L_RazhaItems:
if ((checkweight("Soul", 3) == 0)
|| (checkweight("DiseasedHeart", 5) == 0)
|| (checkweight("UndeadEye", 5) == 0)
|| (checkweight("UndeadEar", 5) == 0)
|| (@inventorylist_count == 100))
goto L_InventoryNoSpace;
getitem "Soul", 3;
getitem "DiseasedHeart", 5;
getitem "UndeadEye", 5;
getitem "UndeadEar", 5;
goto L_Main;
L_TeroganItems:
if ((checkweight("Soul", 5) == 0)
|| (checkweight("RottenRags", 5) == 0)
|| (checkweight("UndeadEye", 5) == 0)
|| (checkweight("UndeadEar", 5) == 0)
|| (@inventorylist_count == 100))
goto L_InventoryNoSpace;
getitem "Soul", 5;
getitem "RottenRags", 5;
getitem "UndeadEye", 5;
getitem "UndeadEar", 5;
goto L_Main;
L_Close:
close2;
return;
}
// Debug for Krukan
027-3,84,89,0|script|UndeadDebug3|155
{
set @undeaddebug, 3;
callfunc "UndeadDebug";
end;
OnInit:
if (!debug)
disablenpc "UndeadDebug3";
end;
}
// Debug for Razha
027-4,76,79,0|script|UndeadDebug4|155
{
set @undeaddebug, 4;
callfunc "UndeadDebug";
end;
OnInit:
if (!debug)
disablenpc "UndeadDebug4";
end;
}
// Debug for Terogan
027-5,72,26,0|script|UndeadDebug5|155
{
set @undeaddebug, 5;
callfunc "UndeadDebug";
end;
OnInit:
if (!debug)
disablenpc "UndeadDebug5";
end;
}
|