diff options
author | KarLaeda <KarLaeda@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-24 11:24:21 +0000 |
---|---|---|
committer | KarLaeda <KarLaeda@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-24 11:24:21 +0000 |
commit | 269579a5d2ec5df0841c94158102228bc1634d97 (patch) | |
tree | 555ac2d7c4930a78f000357df6ad379e8b65c60d /npc/other/Global_Functions.txt | |
parent | ead84f994eb5440f2406e9fee7a93800c0e7e78e (diff) | |
download | hercules-269579a5d2ec5df0841c94158102228bc1634d97.tar.gz hercules-269579a5d2ec5df0841c94158102228bc1634d97.tar.bz2 hercules-269579a5d2ec5df0841c94158102228bc1634d97.tar.xz hercules-269579a5d2ec5df0841c94158102228bc1634d97.zip |
Cleaned up global permanent variables in Airship Quest
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9306 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other/Global_Functions.txt')
-rw-r--r-- | npc/other/Global_Functions.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/npc/other/Global_Functions.txt b/npc/other/Global_Functions.txt index 27278fdf4..a9d32c8de 100644 --- a/npc/other/Global_Functions.txt +++ b/npc/other/Global_Functions.txt @@ -90,6 +90,14 @@ function script F_ClearGarbage { set num6,0; set num7,0; set num8,0; set num9,0;
set hzdun,0; set cubekey,0; set piciburn,0;
}
+ //Airship
+ if($lengths){
+ cleararray $textstringsa$[0],"",getarraysize($textstringsa$);
+ cleararray $textstringsb$[0],"",getarraysize($textstringsb$);
+ cleararray $textstringsc$[0],"",getarraysize($textstringsc$);
+ cleararray $compstring$[0],"",getarraysize($compstring$);
+ cleararray $lengths[0],0,getarraysize($lengths);
+ }
return;
}
|