diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-06 08:56:47 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-06 08:56:47 -0300 |
commit | 154bc560399dcdbcbb6f9ec8131b527a27972a26 (patch) | |
tree | 15f2ff736c22b57c004832af66f9dd6e58cbe010 | |
parent | 00d268d32a345cb48488032bf012d621b40de54a (diff) | |
download | serverdata-154bc560399dcdbcbb6f9ec8131b527a27972a26.tar.gz serverdata-154bc560399dcdbcbb6f9ec8131b527a27972a26.tar.bz2 serverdata-154bc560399dcdbcbb6f9ec8131b527a27972a26.tar.xz serverdata-154bc560399dcdbcbb6f9ec8131b527a27972a26.zip |
Destroy every existing Legendary Weapon except for @demure's Demure Axe.
Because, you know.
-rw-r--r-- | npc/003-3/malindou.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/npc/003-3/malindou.txt b/npc/003-3/malindou.txt index bd648148c..4b3f408ca 100644 --- a/npc/003-3/malindou.txt +++ b/npc/003-3/malindou.txt @@ -318,6 +318,20 @@ OnInit: debugmes "* Return Crystals removed"; debugmes ""; } + // Current UPDATE value: Seg mai 06 08:54:55 -03 2019 + // Remove Legendary Weapons + if ($UPDATE < 1557143695) { + DelItemFromEveryPlayer(Lightbringer); + //DelItemFromEveryPlayer(DemureAxe); // Demure's Exception! + DelItemFromEveryPlayer(Tyranny); + DelItemFromEveryPlayer(Runestaff); + DelItemFromEveryPlayer(AegisShield); + + $UPDATE=1557143695; + debugmes ""; + debugmes "* Legendary Weapons removed"; + debugmes ""; + } |