diff options
-rw-r--r-- | npc/017-1/fairy_collector.txt | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/npc/017-1/fairy_collector.txt b/npc/017-1/fairy_collector.txt index aa90e1e85..36a50bf44 100644 --- a/npc/017-1/fairy_collector.txt +++ b/npc/017-1/fairy_collector.txt @@ -70,7 +70,7 @@ L_Main: rif(false && !(#COLLECTOR & COLLECT_SHIELDS), l("Shields")), rif(false && !(#COLLECTOR & COLLECT_1HSWORDS), l("1 Hand Swords")), rif(false && !(#COLLECTOR & COLLECT_2HSWORDS), l("2 Hand Swords")), - rif(false && !(#COLLECTOR & COLLECT_BOWS), l("Bows")), + rif(true && !(#COLLECTOR & COLLECT_BOWS), l("Bows")), rif(true && !(#COLLECTOR & COLLECT_FIREGUNS), l("Fire Staves")), rif(true && !(#COLLECTOR & COLLECT_WANDS), l("Wands")), rif(true && !(#COLLECTOR & COLLECT_QUIVERS), l("Quivers")), @@ -155,9 +155,16 @@ L_Main: msObjective(countitem(ElficBow), "* "+getitemlink(ElficBow)); msObjective(countitem(ChampionshipBow), "* "+getitemlink(ChampionshipBow)); msObjective(countitem(BansheeBow), "* "+getitemlink(BansheeBow)); - //msObjective(countitem(ElvishBow), "* "+getitemlink(ElvishBow)); - msObjective(false, l("* More equipment coming soon...")); next; + if (countitem(PynRifle) && + countitem(PynGatling) && + countitem(PynShotgun) && + countitem(PynRevolver) && + countitem(Dustynator)) { + #COLLECTOR = #COLLECTOR|COLLECT_BOWS; + getitembound SilverBell, 1, 1; + mesc l("CONGRATULATIONS! You have obtained the %s.", getitemlink(SilverBell)), 3; + } break; // Firearms case 14: @@ -175,8 +182,8 @@ L_Main: #COLLECTOR = #COLLECTOR|COLLECT_FIREGUNS; getitembound SilverBell, 1, 1; mesc l("CONGRATULATIONS! You have obtained the %s.", getitemlink(SilverBell)), 3; + next; } - next; break; // Wands case 15: @@ -196,8 +203,8 @@ L_Main: #COLLECTOR = #COLLECTOR|COLLECT_WANDS; getitembound SilverBell, 1, 1; mesc l("CONGRATULATIONS! You have obtained the %s.", getitemlink(SilverBell)), 3; + next; } - next; break; // Quivers case 16: @@ -213,8 +220,8 @@ L_Main: #COLLECTOR = #COLLECTOR|COLLECT_QUIVERS; getitembound SilverBell, 1, 1; mesc l("CONGRATULATIONS! You have obtained the %s.", getitemlink(SilverBell)), 3; + next; } - next; break; // Mounts case 17: |