diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-30 13:09:14 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-30 13:09:14 +0000 |
commit | 7205757a74dfa55ec9f9faf9c7d4fd45849a1352 (patch) | |
tree | 71c5c923200de20685ec655b1dffdf60a05a9d62 /npc/other | |
parent | 459bae5502f1d8d61db2df85a428db686e595566 (diff) | |
download | hercules-7205757a74dfa55ec9f9faf9c7d4fd45849a1352.tar.gz hercules-7205757a74dfa55ec9f9faf9c7d4fd45849a1352.tar.bz2 hercules-7205757a74dfa55ec9f9faf9c7d4fd45849a1352.tar.xz hercules-7205757a74dfa55ec9f9faf9c7d4fd45849a1352.zip |
Removed garbage vars from Shinokas quest
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9372 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 a9d32c8de..6d2d145c4 100644 --- a/npc/other/Global_Functions.txt +++ b/npc/other/Global_Functions.txt @@ -98,6 +98,11 @@ function script F_ClearGarbage { cleararray $compstring$[0],"",getarraysize($compstring$);
cleararray $lengths[0],0,getarraysize($lengths);
}
+ //Shinkskas Quest garbage
+ if(Shinokas_Quest > 7){
+ set ein_scientist,0;
+ set ein_stuff,0;
+ }
return;
}
@@ -113,6 +118,7 @@ function script Job_Change { jobchange getarg(0); // Common jobchange
else
jobchange getarg(0) + Job_Baby; //Change Job For Baby Class
+ logmes "CLASS CHANGE: " +strcharinfo(0)+ " become a "+jobname(Class);
return;
}
|