summaryrefslogtreecommitdiff
path: root/npc/other/Global_Functions.txt
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-21 11:12:52 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-21 11:12:52 +0000
commit348cd330565c71c6468f55dc15bef2f6a4042cd1 (patch)
tree4b8510d6611eae7cdb80f09741276d2a43f4b89f /npc/other/Global_Functions.txt
parent6e6ee08f7a162e128eae4e28ff983954990a2fdf (diff)
downloadhercules-348cd330565c71c6468f55dc15bef2f6a4042cd1.tar.gz
hercules-348cd330565c71c6468f55dc15bef2f6a4042cd1.tar.bz2
hercules-348cd330565c71c6468f55dc15bef2f6a4042cd1.tar.xz
hercules-348cd330565c71c6468f55dc15bef2f6a4042cd1.zip
freed 15 more perm variables. Fixed bugs in Cube Room
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8831 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other/Global_Functions.txt')
-rw-r--r--npc/other/Global_Functions.txt14
1 files changed, 13 insertions, 1 deletions
diff --git a/npc/other/Global_Functions.txt b/npc/other/Global_Functions.txt
index dfcf7f561..3325170b1 100644
--- a/npc/other/Global_Functions.txt
+++ b/npc/other/Global_Functions.txt
@@ -28,6 +28,7 @@
//= 2.04 Added dtseligible 2 (becomes MISC_QUEST|128) to F_ClearGarbage [Evera]
//= 2.05 Book of Devil -> MISC_QUEST|256, clear other Niflheim garbage vars [Lupus]
//= +more garbage clean
+//= 2,06 Pass to Bio-Lab -> MISC_QUEST|256 [Lupus]
//============================================================
@@ -100,7 +101,18 @@ function script F_ClearGarbage {
set ARWCRFT,0; set HOLYLIGHT,0; set ARWREP,0; set ENRGYCOAT,0; set CRAZYROAR,0; set CHANGECART,0; set CARTREVO,0;
set SANDATTACK,0; set STONEFLING,0; set BACKSLIDE,0; set BAGNFNTY,0;
//Cube Room
- set ykey,0; set redkey,0; set fkey,0; set gkey,0; set bkey,0;
+ if(hzdun) {
+ set MISC_QUEST,MISC_QUEST|512;
+ set cubekey,0;
+ set axe,0; set ykey,0; set box,0; set num1,0;
+ set num2,0; set num3,0; set num4,0; set num5,0;
+ set num6,0; set num7,0; set num8,0; set num9,0;
+ set knife,0; set redkey,0; set srod1,0; set srod2,0;
+ set fkey,0; set gkey,0; set polygon,0; set machine,0;
+ set bkey,0; set ellipse,0; set quadrangle,0; set rod,0;
+ set hzdun,0;
+ set piciburn,0;
+ }
return;
}