diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-07-28 23:50:33 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-07-28 23:50:33 -0300 |
commit | 02f2b4ea464db9e93312cb88455cfc5cad47b386 (patch) | |
tree | 45731d7fcef23ffd52211566d2dc862f604d1a23 /npc/017-1 | |
parent | 04c83957c02d06c67541a902271b4c947de924dd (diff) | |
download | serverdata-02f2b4ea464db9e93312cb88455cfc5cad47b386.tar.gz serverdata-02f2b4ea464db9e93312cb88455cfc5cad47b386.tar.bz2 serverdata-02f2b4ea464db9e93312cb88455cfc5cad47b386.tar.xz serverdata-02f2b4ea464db9e93312cb88455cfc5cad47b386.zip |
You'll soon be able to complete Royal Collector - 2H Swords
Diffstat (limited to 'npc/017-1')
-rw-r--r-- | npc/017-1/fairy_collector.txt | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/npc/017-1/fairy_collector.txt b/npc/017-1/fairy_collector.txt index a8ab6af18..fd6afe6d4 100644 --- a/npc/017-1/fairy_collector.txt +++ b/npc/017-1/fairy_collector.txt @@ -146,20 +146,28 @@ L_Main: break; // 1H Swords case 11: - msObjective(countitem(CreasedShirt), "* "+getitemlink(CreasedShirt)); + msObjective(countitem(DarkPulsar), "* "+getitemlink(DarkPulsar)); next; break; // 2H Swords case 12: - msObjective(countitem(Scythe), "* "+getitemlink(Scythe)); - msObjective(countitem(ThunderStaff), "* "+getitemlink(ThunderStaff)); - msObjective(countitem(MiereCleaver), "* "+getitemlink(MiereCleaver)); - msObjective(countitem(Broadsword), "* "+getitemlink(Broadsword)); - msObjective(countitem(Kanabo), "* "+getitemlink(Kanabo)); - msObjective(countitem(BlacksmithAxe), "* "+getitemlink(BlacksmithAxe)); - msObjective(countitem(CentaurSpear), "* "+getitemlink(CentaurSpear)); - msObjective(false, l("* More equipment coming soon...")); + // FIXME: Zambacutou unreleased + setarray .@items, Pickaxe, ThunderStaff, Scythe, MiereCleaver, Broadsword, Kanabo, BlacksmithAxe, PowerfulLightsaber, CentaurSpear, Zambacutou, CursedScythe, Halberd; + .@power = 0; + .@total = getarraysize(.@items); + freeloop(true); + for (.@i=0; .@i < .@total; .@i++) { + msObjective(countitem(.@items[.@i]), "* "+getitemlink(.@items[.@i])); + if (countitem(.@items[.@i])) + .@power += 1; + } + freeloop(false); next; + if (.@power == .@total) { + //#COLLECTOR = #COLLECTOR|COLLECT_2HSWORDS; + //getitembound SilverBell, 1, 1; + mesc l("CONGRATULATIONS! You have obtained the %s.", getitemlink(SilverBell)), 3; + } break; // Bows case 13: @@ -278,8 +286,8 @@ OnInit: sellitem LegendaryMouboo, 11; sellitem LegendaryTortuga, 10; sellitem SupremeGift, 9; - sellitem PrismGift, 8; - sellitem MysteriousFruit, 7; + sellitem MysteriousFruit, 8; + sellitem PrismGift, 7; sellitem LinarianSoul, 6; sellitem SaviorBlueprint, 5; sellitem TuxSoul, 4; |