diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-20 08:28:08 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-20 08:28:08 +0000 |
commit | bbf301437385ee28ec2056532ebbffe28911f5bb (patch) | |
tree | 38188693eb9b46f33a60fde24716afff30f910a6 /npc/other | |
parent | 36a3a6ea0a2f16329f9d6fba5bab1f5a0a9e9988 (diff) | |
download | hercules-bbf301437385ee28ec2056532ebbffe28911f5bb.tar.gz hercules-bbf301437385ee28ec2056532ebbffe28911f5bb.tar.bz2 hercules-bbf301437385ee28ec2056532ebbffe28911f5bb.tar.xz hercules-bbf301437385ee28ec2056532ebbffe28911f5bb.zip |
1s job skill quests optimization. now using @temp vars
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8820 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other')
-rw-r--r-- | npc/other/Global_Functions.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/other/Global_Functions.txt b/npc/other/Global_Functions.txt index d48d7b091..356900ef8 100644 --- a/npc/other/Global_Functions.txt +++ b/npc/other/Global_Functions.txt @@ -37,6 +37,10 @@ function script F_ClearJobVar {
// Misc ---------------------------------
set JBLVL,0;
+ set FIRSTAID,0;
+ set PLAYDEAD,0;
+ set got_bandage,0;
+ set got_novnametag,0;
// First Class Jobs ---------------------
set job_acolyte_q,0; set job_acolyte_q2,0;
set job_archer_q,0;
@@ -88,6 +92,8 @@ function script F_ClearGarbage { set niflheimlost2,0; set niflheimlost,0; set lostgirl,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;}
+ 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;
return;
}
|