diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-01-09 21:51:44 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-01-09 21:51:44 -0300 |
commit | 10b87795e7d26114c75074ad4b1164dff8ae7ff0 (patch) | |
tree | 22eff6033bb721c0c7398bee16d59e0f3ef0e4a1 /npc/017-1 | |
parent | 63c8045dcaafacb51d6a108411b5ed0b6d108694 (diff) | |
download | serverdata-10b87795e7d26114c75074ad4b1164dff8ae7ff0.tar.gz serverdata-10b87795e7d26114c75074ad4b1164dff8ae7ff0.tar.bz2 serverdata-10b87795e7d26114c75074ad4b1164dff8ae7ff0.tar.xz serverdata-10b87795e7d26114c75074ad4b1164dff8ae7ff0.zip |
This is actually a very lame code (incl. cost logic). Anyway, Zambacutou released
Diffstat (limited to 'npc/017-1')
-rw-r--r-- | npc/017-1/fairy_collector.txt | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/npc/017-1/fairy_collector.txt b/npc/017-1/fairy_collector.txt index 1f4a24921..fca6c2cce 100644 --- a/npc/017-1/fairy_collector.txt +++ b/npc/017-1/fairy_collector.txt @@ -85,7 +85,7 @@ L_Main: rif(false && !(#COLLECTOR & COLLECT_GLOVES), l("Gloves")), rif(true && !(#COLLECTOR & COLLECT_SHIELDS), l("Shields")), rif(false && !(#COLLECTOR & COLLECT_1HSWORDS), l("1 Hand Swords")), - rif(false && !(#COLLECTOR & COLLECT_2HSWORDS), l("2 Hand Swords")), + rif(true && !(#COLLECTOR & COLLECT_2HSWORDS), l("2 Hand Swords")), rif(true && !(#COLLECTOR & COLLECT_BOWS), l("Bows")), rif(true && !(#COLLECTOR & COLLECT_FIREGUNS), l("Fire Staves")), rif(true && !(#COLLECTOR & COLLECT_WANDS), l("Wands")), @@ -254,7 +254,6 @@ L_Main: ///////////////////////////////////////////////////////////////////////// // 2H Swords case 12: - // FIXME: Zambacutou unreleased setarray .@items, Pickaxe, ThunderStaff, Scythe, MiereCleaver, Broadsword, Kanabo, BlacksmithAxe, PowerfulLightsaber, CentaurSpear, Zambacutou, CursedScythe, Halberd; .@power = 0; .@total = getarraysize(.@items); @@ -267,8 +266,8 @@ L_Main: freeloop(false); next; if (.@power == .@total) { - //#COLLECTOR = #COLLECTOR|COLLECT_2HSWORDS; - //getitembound SilverBell, 1, 1; + #COLLECTOR = #COLLECTOR|COLLECT_2HSWORDS; + getitembound SilverBell, 1, 1; mesc l("CONGRATULATIONS! You have obtained the %s.", getitemlink(SilverBell)), 3; } break; @@ -392,7 +391,7 @@ OnInit: // Pets → Strange Coin // You can get up to 18 stamps, but pets, hats and armor give 2x // Plan wisely and accordingly (21 stamps total) - // As of 2023-11-01, a total of 6 stamps were available + // As of 2024-01-09, a total of 7 stamps were available sellitem SunnyCrystal, 12; sellitem LegendaryMouboo, 8; sellitem SupremeGift, 7; |