summaryrefslogtreecommitdiff
path: root/npc/other/Global_Functions.txt
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-20 09:39:11 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-20 09:39:11 +0000
commitfa4ac1e970555c7b2d835cba1f29ccfec235aad7 (patch)
tree379872cf7f08486f588e3a6037f5470cd8797890 /npc/other/Global_Functions.txt
parentbbf301437385ee28ec2056532ebbffe28911f5bb (diff)
downloadhercules-fa4ac1e970555c7b2d835cba1f29ccfec235aad7.tar.gz
hercules-fa4ac1e970555c7b2d835cba1f29ccfec235aad7.tar.bz2
hercules-fa4ac1e970555c7b2d835cba1f29ccfec235aad7.tar.xz
hercules-fa4ac1e970555c7b2d835cba1f29ccfec235aad7.zip
fixed Cube Room quest bug, more optimizations
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8821 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other/Global_Functions.txt')
-rw-r--r--npc/other/Global_Functions.txt13
1 files changed, 10 insertions, 3 deletions
diff --git a/npc/other/Global_Functions.txt b/npc/other/Global_Functions.txt
index 356900ef8..dfcf7f561 100644
--- a/npc/other/Global_Functions.txt
+++ b/npc/other/Global_Functions.txt
@@ -27,6 +27,7 @@
//= 2.03 Added Gunslinger vars to F_ClearJobVar [Lupus]
//= 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
//============================================================
@@ -75,25 +76,31 @@ function script F_ClearJobVar {
function script F_ClearGarbage {
// Clear outdated global VARS
+ //DTS Vote System
if(dtseligible == 2) set MISC_QUEST,MISC_QUEST|128;
if(dtseligible == 3) set dtseligible,0;
if($talk) set $talk,0;
if($dtsglobalelig) set $dtsglobalelig,0;
if($dts&(1<<6)) set $dts,$dts&~(1<<6);
+ //Misc Quests
if(MARIANNE) {set MISC_QUEST,MISC_QUEST | 1; set MARIANNE,0;}
set MEAT,0; set MORRISON,0;
set BUNYBND,0; set TEMPESTRA,0;
set sewer_prt,0; set iz_move_alberta,0;
- if(nif_q_done) {set nif_q_done,0; set MISC_QUEST,MISC_QUEST | 64;}
if(MORGEN >= 2) {set MISC_QUEST,MISC_QUEST | 4; set MORGEN,0;}
- set nif_t,0;
+ //Valhalla Remember Quest Skills. Unused
set QSK1,0; set QSK2,0; set QSK3,0; set QSK4,0;
+ //Niflheim
+ if(nif_q_done) {set nif_q_done,0; set MISC_QUEST,MISC_QUEST | 64;}
if(niflheimlost2) set MISC_QUEST,MISC_QUEST | 256;
set niflheimlost2,0; set niflheimlost,0; set lostgirl,0;
- set nif_random,0; set nif_random1,0;
+ set nif_t,0; set nif_random,0; set nif_random1,0;
if(MISC_QUEST&32){set nif_quest1,0; set nif_quest2,0; set nif_quest3,0; set nif_quest4,0; set nif_quest5,0;}
+ //1st Class Quest Skills
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;
return;
}