diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-05-12 21:52:11 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-05-12 21:52:11 +0000 |
commit | 7a4307b8cc339471a0a7e969e66d34c41fa57141 (patch) | |
tree | c51861f211bfc85f851d31b00a7f3a6ba05b056a /npc/other/Global_Functions.txt | |
parent | 33600602dad4660319af2949e18735f5028b1b78 (diff) | |
download | hercules-7a4307b8cc339471a0a7e969e66d34c41fa57141.tar.gz hercules-7a4307b8cc339471a0a7e969e66d34c41fa57141.tar.bz2 hercules-7a4307b8cc339471a0a7e969e66d34c41fa57141.tar.xz hercules-7a4307b8cc339471a0a7e969e66d34c41fa57141.zip |
* Completely rescripted the DTS warp service based on the aegis 11.3 file.
- Updated F_ClearGarbage to erase obsolete DTS player variables.
- Moved Cool Corp. Staff NPCs to Lighthalzen (cities/lighthalzen.txt.)
- Now everyone can enjoy the global broadcast "every-hour-nag" to vote!
- Note: Upon loading ALL prior DTS global variables are erased.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13764 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other/Global_Functions.txt')
-rw-r--r-- | npc/other/Global_Functions.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/npc/other/Global_Functions.txt b/npc/other/Global_Functions.txt index 48149a80f..37a3c556c 100644 --- a/npc/other/Global_Functions.txt +++ b/npc/other/Global_Functions.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= Lupus, kobra_k88 //===== Current Version: ===================================== -//= 2.13 +//= 2.15 //===== Compatible With: ===================================== //= eAthena 1.0 //===== Description: ========================================= @@ -36,7 +36,8 @@ //= 2.11 Updated function Job_Change to jobchange based on Upper value. [Paradox924X] //= 2.12 Added more unused vars to F_ClearGarbage [Lupus] //= 2.13 Added more unused vars to F_ClearGarbage [Lupus] -//= 2,14 Added old novice variables to F_ClearGarbage. [L0ne_W0lf] +//= 2.14 Added old novice variables to F_ClearGarbage. [L0ne_W0lf] +//= 2.15 Added no unused DTS variables to F_ClearGarbage. [L0ne_W0lf] //============================================================ @@ -111,6 +112,10 @@ function script F_ClearGarbage { set NEW_LVUP1,0; set NEW_JOBLVUP,0; + // Old DTS variables that are no longer used. + set dtseligible,0; + set MISC_QUEST,MISC_QUEST & ~128; + return; } |