diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-02-09 14:55:14 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-02-09 14:55:14 -0200 |
commit | 0c78a3405ba4b472a1e0b6f1a8e818c64dc7161f (patch) | |
tree | e13586fef02845c4db558de2fa76efa9ddd2b7f6 | |
parent | 5d7d192d9becfe0317cd42c2e4c8c4954a3e0e4a (diff) | |
download | serverdata-0c78a3405ba4b472a1e0b6f1a8e818c64dc7161f.tar.gz serverdata-0c78a3405ba4b472a1e0b6f1a8e818c64dc7161f.tar.bz2 serverdata-0c78a3405ba4b472a1e0b6f1a8e818c64dc7161f.tar.xz serverdata-0c78a3405ba4b472a1e0b6f1a8e818c64dc7161f.zip |
You can collect every wand ingame
-rw-r--r-- | npc/017-1/fairy_collector.txt | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/npc/017-1/fairy_collector.txt b/npc/017-1/fairy_collector.txt index 5a5a346bf..a25ed550f 100644 --- a/npc/017-1/fairy_collector.txt +++ b/npc/017-1/fairy_collector.txt @@ -143,7 +143,22 @@ L_Main: break; // Wands case 15: - msObjective(countitem(CreasedShirt), "* "+getitemlink(CreasedShirt)); + msObjective(countitem(TrainingWand), "* "+getitemlink(TrainingWand)); + msObjective(countitem(NoviceWand), "* "+getitemlink(NoviceWand)); + msObjective(countitem(ReinbooWand), "* "+getitemlink(ReinbooWand)); + msObjective(countitem(ApprenticeWand), "* "+getitemlink(ApprenticeWand)); + msObjective(countitem(LeaderWand), "* "+getitemlink(LeaderWand)); + msObjective(countitem(LegendaryWand), "* "+getitemlink(LegendaryWand)); + next; + if (countitem(TrainingWand) && + countitem(NoviceWand) && + countitem(ReinbooWand) && + countitem(ApprenticeWand) && + countitem(LeaderWand) && + countitem(LegendaryWand)) { + setq1 General_Collector, .@q|COLLECT_WANDS; + .@q=getq(General_Collector); + } next; break; // Quivers |