From 22b7d0fa271458c2740ebc2b889ec44e1b83a5a2 Mon Sep 17 00:00:00 2001 From: SilicaAndPina Date: Sat, 31 Oct 2020 14:18:54 +1300 Subject: [PATCH] teh big refactor --- DataCollection/gamedata.json | 31282 +++++++--------- Horse Isle Server/Horse Isle Server/Action.cs | 51 - .../Horse Isle Server/{ => Game}/Chat.cs | 62 +- .../{ => Game}/DroppedItems.cs | 16 +- .../{ => Game}/IInventory.cs | 6 +- .../Horse Isle Server/{ => Game}/Item.cs | 2 +- .../{ => Game}/ItemInstance.cs | 9 +- .../Horse Isle Server/{ => Game}/Map.cs | 222 +- .../Horse Isle Server/{ => Game}/Messages.cs | 648 +- .../Horse Isle Server/{ => Game}/Meta.cs | 95 +- .../Horse Isle Server/{ => Game}/Npc.cs | 2 +- .../Horse Isle Server/Game/Quest.cs | 194 + .../Horse Isle Server/{ => Game}/Transport.cs | 2 +- .../Horse Isle Server/{ => Game}/World.cs | 429 +- .../Horse Isle Server.csproj | 63 +- .../Horse Isle Server/{ => Player}/Friends.cs | 9 +- .../Horse Isle Server/{ => Player}/Mailbox.cs | 36 +- .../{ => Player}/PlayerInventory.cs | 9 +- .../Horse Isle Server/Player/PlayerQuests.cs | 53 + .../Horse Isle Server/Player/TrackedQuest.cs | 30 + .../Horse Isle Server/{ => Player}/User.cs | 425 +- .../Horse Isle Server/Program.cs | 8 +- .../Properties/Resources.Designer.cs | 24 +- .../Properties/Resources.resx | 2 +- .../Resources/server.properties | 2 - .../{ => Security}/Authentication.cs | 176 +- .../{ => Security}/CrossDomainPolicy.cs | 64 +- .../{ => Security}/RandomID.cs | 7 +- .../{ => Server}/ConfigReader.cs | 231 +- .../{ => Server}/Converters.cs | 76 +- .../{ => Server}/Database.cs | 2167 +- .../{Client.cs => Server/GameClient.cs} | 473 +- .../{Server.cs => Server/GameServer.cs} | 2005 +- .../{ => Server}/Gamedata.cs | 915 +- .../Horse Isle Server/{ => Server}/Logger.cs | 62 +- .../{ => Server}/PacketBuilder.cs | 1262 +- 36 files changed, 19658 insertions(+), 21461 deletions(-) delete mode 100644 Horse Isle Server/Horse Isle Server/Action.cs rename Horse Isle Server/Horse Isle Server/{ => Game}/Chat.cs (86%) rename Horse Isle Server/Horse Isle Server/{ => Game}/DroppedItems.cs (92%) rename Horse Isle Server/Horse Isle Server/{ => Game}/IInventory.cs (87%) rename Horse Isle Server/Horse Isle Server/{ => Game}/Item.cs (98%) rename Horse Isle Server/Horse Isle Server/{ => Game}/ItemInstance.cs (72%) rename Horse Isle Server/Horse Isle Server/{ => Game}/Map.cs (91%) rename Horse Isle Server/Horse Isle Server/{ => Game}/Messages.cs (93%) rename Horse Isle Server/Horse Isle Server/{ => Game}/Meta.cs (71%) rename Horse Isle Server/Horse Isle Server/{ => Game}/Npc.cs (99%) create mode 100644 Horse Isle Server/Horse Isle Server/Game/Quest.cs rename Horse Isle Server/Horse Isle Server/{ => Game}/Transport.cs (98%) rename Horse Isle Server/Horse Isle Server/{ => Game}/World.cs (93%) rename Horse Isle Server/Horse Isle Server/{ => Player}/Friends.cs (87%) rename Horse Isle Server/Horse Isle Server/{ => Player}/Mailbox.cs (58%) rename Horse Isle Server/Horse Isle Server/{ => Player}/PlayerInventory.cs (97%) create mode 100644 Horse Isle Server/Horse Isle Server/Player/PlayerQuests.cs create mode 100644 Horse Isle Server/Horse Isle Server/Player/TrackedQuest.cs rename Horse Isle Server/Horse Isle Server/{ => Player}/User.cs (88%) rename Horse Isle Server/Horse Isle Server/{ => Security}/Authentication.cs (91%) rename Horse Isle Server/Horse Isle Server/{ => Security}/CrossDomainPolicy.cs (81%) rename Horse Isle Server/Horse Isle Server/{ => Security}/RandomID.cs (75%) rename Horse Isle Server/Horse Isle Server/{ => Server}/ConfigReader.cs (87%) rename Horse Isle Server/Horse Isle Server/{ => Server}/Converters.cs (94%) rename Horse Isle Server/Horse Isle Server/{ => Server}/Database.cs (84%) rename Horse Isle Server/Horse Isle Server/{Client.cs => Server/GameClient.cs} (84%) rename Horse Isle Server/Horse Isle Server/{Server.cs => Server/GameServer.cs} (86%) rename Horse Isle Server/Horse Isle Server/{ => Server}/Gamedata.cs (80%) rename Horse Isle Server/Horse Isle Server/{ => Server}/Logger.cs (81%) rename Horse Isle Server/Horse Isle Server/{ => Server}/PacketBuilder.cs (96%) diff --git a/DataCollection/gamedata.json b/DataCollection/gamedata.json index f801058..e76755f 100644 --- a/DataCollection/gamedata.json +++ b/DataCollection/gamedata.json @@ -11,14 +11,19 @@ "grab_message":"You grabbed an object off the ground.", "grab_all_message":"You grabbed all objects off the ground.", "dropped_item_message":"You dropped an item on the ground.", + "tools":{ + "binoculars":"You search high and low all around, but find nothing interesting.", + "magnify":"You look all over at all the tiny details, but alas, nothing interesting.", + "rake":"You rake all over, but uncover nothing interesting.", + "shovel":"You dig all over, but turn up nothing." + }, "npc":{ "start_chat_format":"^I%ICONID%^T8%NAME%, %DESCRIPTION%", "chatpoint_format":" Conversation with %NAME%, %DESCRIPTION%

%NAME%: %TEXT%", "reply_format":"^N%TEXT%^BHB%ID%^R2", "npc_information_button":"^B4LC%ID%", - "npc_talk_button":"^BA%ID%", - "npc_end":"^R1" + "npc_talk_button":"^BA%ID%" }, "transport":{ "not_enough_money":"You cannot afford this trip!", @@ -52,7 +57,7 @@ "location_format":" You are%META% ", "tile_format":"%TILENAME%", - "transport_format":"^R1^LTransport via %METHOD% to %PLACE%^R1^I%ICON%^T4Trip Costs $%COST% one way. ^B1M%XY%^BY%ID%", + "transport_format":"^LTransport via %METHOD% to %PLACE%^R1^I%ICON%^T4Trip Costs $%COST% one way. ^B1M%XY%^BY%ID%", "exit_this_place":"^X", "end_of_meta":"^Z", "back_to_map":"^M", @@ -366972,18 +366977,16 @@ "icon_id": 445, "chatpoints": [] } - ] + ], "quest_list":[ { "id": 1, "notes": "Mary Molasses give a horse treat when asked", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -367012,13 +367015,11 @@ { "id": 2, "notes": "NPC Twig will trade a redpinecone for $1000", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -367047,13 +367048,11 @@ { "id": 6, "notes": "Sara NPC #8 gives free cocoa", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 33, + "max_repeats": 33, "money_cost": 0, "items_required": [ { @@ -367082,13 +367081,11 @@ { "id": 7, "notes": "Fisherman makes fishing poles from branches", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 100, "items_required": [ { @@ -367121,17 +367118,15 @@ { "id": 9, "notes": "Welcome Isle Dig up $1000 below rock", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 523, "y": 134 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already dug up what was here!", @@ -367141,7 +367136,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "After digging, you uncovered a Buried Treasure! $1000 was inside. That should be plenty for the boat ride now.", "requires_awardid": null, "requires_questid_completed": [], @@ -367155,16 +367150,14 @@ { "id": 219, "notes": "Elaina asks to have some flour picked up", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -367172,7 +367165,7 @@ "warp_x": null, "warp_y": null, "success_message": "Elaina has asked you to go to Wington and pick up some flour for her.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -367185,24 +367178,22 @@ { "id": 10, "notes": "Jump Iona to checking for flowers npc point", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 3, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -367215,24 +367206,22 @@ { "id": 11, "notes": "Iona reset to not checking on flowers", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 0, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -367245,13 +367234,11 @@ { "id": 12, "notes": "Mr Fin gives a cup of tea to visitors", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 4, + "max_repeats": 4, "money_cost": 0, "items_required": [ { @@ -367280,17 +367267,15 @@ { "id": 13, "notes": "Mr Fins anchor is buried behind general store in flipperton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 383, "y": 244 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -367306,7 +367291,7 @@ "warp_x": null, "warp_y": null, "success_message": "You found Mr. Fin's Anchor!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -367320,12 +367305,10 @@ "id": 14, "notes": "Allow giving Mr. Fin his Anchor when it's found!", "title": "Mr. Fin's Quest", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 100, + "max_repeats": 100, "money_cost": 0, "items_required": [ { @@ -367354,13 +367337,11 @@ { "id": 15, "notes": "Nolan will talk to you after you've completed Fin's quest", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "I'm busy reading! Go away! Go bug Fin!", @@ -367370,7 +367351,7 @@ "goto_npc_chatpoint": 1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Wow! I hear you helped out my neighbor Fin! Come back in a little bit when I'm done with this book, and I would be happy to speak with you!", "requires_awardid": null, "requires_questid_completed": [], @@ -367386,13 +367367,11 @@ { "id": 17, "notes": "Players can get free worms from Frank Tackle's fishing shop in Appleton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [ { @@ -367421,13 +367400,11 @@ { "id": 18, "notes": "Brock Limestone in Earton Gives away a Stone to fellow Rock lovers once.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -367456,13 +367433,11 @@ { "id": 19, "notes": "Basil in Earton will give you Bread a few times for free if you beg.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -367491,13 +367466,11 @@ { "id": 20, "notes": "buy a bunch of daisys get a free rose at Daisy Gerbera's flower shop.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 6, "items_required": [ { @@ -367530,13 +367503,11 @@ { "id": 21, "notes": "Eli Grits devulges secret treasure in Earton at the Food Supply.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 100, "items_required": [], "fail_npc_chat": "Sorry. I'm afraid you can't afford this information!", @@ -367546,7 +367517,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "A treasure is buried one pace south of the city fountain.", "requires_awardid": null, "requires_questid_completed": [], @@ -367561,16 +367532,14 @@ "id": 22, "notes": "Digging up buried treasure on a tip from Eli Grits.", "title": "Eli Grits' Treasure", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 535, "y": 181 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -367600,12 +367569,10 @@ "id": 23, "notes": "Pyramid Labyrinth Quest #1", "title": "Pyramid Treasure #1", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -367638,13 +367605,11 @@ { "id": 24, "notes": "Galvin Provides Transport to his private island for $50.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 50, "items_required": [], "fail_npc_chat": "You do not have enough money for the trip.", @@ -367668,16 +367633,14 @@ { "id": 25, "notes": "Galvin Provides Transport Back to horseisle for free", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -367685,7 +367648,7 @@ "warp_x": 611, "warp_y": 240, "success_message": "You have been transported back to Horse Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -367698,16 +367661,14 @@ { "id": 26, "notes": "Galvin Provides free transport to a Quiet Isle nearby", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -367715,7 +367676,7 @@ "warp_x": 641, "warp_y": 246, "success_message": "You were transported to nearby Quiet Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -367729,16 +367690,14 @@ "id": 27, "notes": "Rafiki's Buried Treasure On Quiet Isle", "title": "Galvin's Adventure", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 638, "y": 247 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -367771,13 +367730,11 @@ { "id": 28, "notes": "If a player pets the reindeer 4 times, it will say it's in love :)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 4, + "max_repeats": 4, "money_cost": 0, "items_required": [], "fail_npc_chat": "Arrrrruuuuuuuuuuughhhh (The reindeer has fallen in love with you!)", @@ -367787,7 +367744,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Rbbbuuuuuullllllllffffffffff (The reindeer makes a happy grunt.)", "requires_awardid": null, "requires_questid_completed": [], @@ -367801,13 +367758,11 @@ { "id": 29, "notes": "JoyLyn in Treeton Buys Grasshoppers for Specimins for $100", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -367836,13 +367791,11 @@ { "id": 30, "notes": "Adrianna asks you to help look for her horse, WildFire", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Thanks again, you already offered before. He is still somewhere in southern Little Appleton Forest. Please help!", @@ -367866,16 +367819,14 @@ { "id": 31, "notes": "Wildfire tells you he is never going back to his owner Adrianna", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -367883,7 +367834,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've been told by WildFire that he is not going back. You should let Adrianna know.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -367900,12 +367851,10 @@ "id": 32, "notes": "Reward for bringing back Wildfire's News to Adrianna", "title": "Adrianna's Quest for WildFire", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already received the reward. Thanks!", @@ -367931,13 +367880,11 @@ { "id": 33, "notes": "Deidra Buys Pearls for $300 in horseshoe village", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -367966,13 +367913,11 @@ { "id": 34, "notes": "Deidra buys a Seashell for $25 on Horseshoe isle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -368001,17 +367946,15 @@ { "id": 35, "notes": "Find Dominiques Child's Teddy Bear", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", "x": 425, "y": 158 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368043,12 +367986,10 @@ "id": 36, "notes": "Return Tallys Teddy Bear To dominique", "title": "Dominique's Child's Lost Teddy Bear", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368085,17 +368026,15 @@ { "id": 37, "notes": "Uncover Zamora's family stone", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 419, "y": 158 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368110,7 +368049,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You have uncovered Zamora's Family Stone!", "requires_awardid": null, "requires_questid_completed": [], @@ -368125,12 +368064,10 @@ "id": 38, "notes": "Returning Zamora's Family Stone to her", "title": "Zamora's Family Stone", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368163,17 +368100,15 @@ { "id": 39, "notes": "Find Tyranasauras bone for mr Felton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 362, "y": 308 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368188,7 +368123,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You uncovered a Tyrannosaurus Dino Bone!!", "requires_awardid": null, "requires_questid_completed": [], @@ -368205,12 +368140,10 @@ "id": 40, "notes": "Return Tyrannasaurus Bone to Mr Felton", "title": "Felton's Dino Bone #1", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368239,17 +368172,15 @@ { "id": 41, "notes": "Find Triceratops Bone that's buried on Turtle isle for felton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 567, "y": 292 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368264,7 +368195,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You uncovered a Triceratops Dinosaur Bone. Felton will be thrilled.", "requires_awardid": null, "requires_questid_completed": [], @@ -368281,12 +368212,10 @@ "id": 42, "notes": "Return Triceratops Dino Bone to Felton on flipperton", "title": "Felton's Dino Bone #2", - "requires_questid_npc": [ - 40 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368305,7 +368234,9 @@ "success_npc_chat": "Great work!!! I'm impressed you found it! Here, take $8000 for your troubles!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 40 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Joe", @@ -368315,13 +368246,11 @@ { "id": 43, "notes": "Asking Felton for a little more money after quest #2 gains you $1000!", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Forget it!", @@ -368345,13 +368274,11 @@ { "id": 44, "notes": "Felton will give a person a magnifying glass if they say they dont have one", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368380,17 +368307,15 @@ { "id": 45, "notes": "Tiny Pteradactle Bones In forest on dolphin Isle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 374, "y": 229 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368405,7 +368330,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Squinting through the lens, you manage to notice a tiny Pterodactyl Dinosaur Bone! Felton will be pleased.", "requires_awardid": null, "requires_questid_completed": [], @@ -368422,12 +368347,10 @@ "id": 46, "notes": "Return Felton a pterodactyl BOne", "title": "Felton's Dino Bone #3", - "requires_questid_npc": [ - 42 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368446,7 +368369,9 @@ "success_npc_chat": "Great work! You have proven yourself a worthy member of my research crew! Here is $5000.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 42 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Joe", @@ -368457,12 +368382,10 @@ "id": 47, "notes": "Pyramid Labyrinth Quest #2", "title": "Pyramid Treasure #2", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368496,12 +368419,10 @@ "id": 48, "notes": "Pyramid Labyrinth Quest #3", "title": "Pyramid Treasure #3", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368535,12 +368456,10 @@ "id": 49, "notes": "Pyramid Labyrinth Quest #4", "title": "Pyramid Treasure #4", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368574,12 +368493,10 @@ "id": 50, "notes": "Pyramid Labyrinth Quest #5", "title": "Pyramid Treasure #5", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368613,12 +368530,10 @@ "id": 51, "notes": "Ant Hill Quest #1 rewards", "title": "Ant Hill Quest #1", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed Ant Hill #1.", @@ -368629,7 +368544,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Ant Hill Quest #1! You earned $5000 and 50 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -368643,12 +368558,10 @@ "id": 52, "notes": "Ant Hill Quest #2", "title": "Ant Hill Quest #2", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed the Ant Hill #2 Quest!", @@ -368659,7 +368572,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Ant Hill #2 Quest! You earned $8000 and 50 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -368672,16 +368585,14 @@ { "id": 53, "notes": "Talking to karina to hear about lost Blanket in park", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -368689,7 +368600,7 @@ "warp_x": null, "warp_y": null, "success_message": "Karina has asked you to find her blanket.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -368702,13 +368613,11 @@ { "id": 54, "notes": "Getting the Dirty Karina blanket from Matty in park", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368737,13 +368646,11 @@ { "id": 55, "notes": "Eliza Cleans Karina's Dirty Blanket, gives clean one", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [ { @@ -368777,12 +368684,10 @@ "id": 56, "notes": "Return Karina's Blanket back to her all cleaned up", "title": "Baby Karina's Blankie", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -368815,13 +368720,11 @@ { "id": 57, "notes": "Evelynn will give $$ for honey comb", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -368850,13 +368753,11 @@ { "id": 58, "notes": "Charla Mae pays for oranges in Hotton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -368885,23 +368786,21 @@ { "id": 59, "notes": "Agree to pick oranges for Charla Mae", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 4, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Anything you could get for me would be a big help.", "requires_awardid": null, "requires_questid_completed": [], @@ -368915,13 +368814,11 @@ { "id": 60, "notes": "Dixie gives orange juice away", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -368929,7 +368826,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -368950,13 +368847,11 @@ { "id": 61, "notes": "agree to get crate of oranges for Dixie", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You already got this for me. Thanks.", @@ -368980,13 +368875,11 @@ { "id": 62, "notes": "Get the crate of oranges from Charla Mae", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369016,12 +368909,10 @@ "id": 63, "notes": "Giving the crate of oranges to Dixie", "title": "Dixie's Oranges", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369050,13 +368941,11 @@ { "id": 64, "notes": "Yancy gives away free cookies", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [ { @@ -369085,13 +368974,11 @@ { "id": 65, "notes": "Sasha gives you a sandwich to bring Lars for Dalton quest part1", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369120,13 +369007,11 @@ { "id": 66, "notes": "Give Lars sandwich from sasha, he gives you horshoe charm for sasha, part of Dalton quest", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369159,13 +369044,11 @@ { "id": 67, "notes": "give sasha horseshoe charm for Dalton's medicine Daltons Quest part 3", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369198,13 +369081,11 @@ { "id": 68, "notes": "Dalton Asks you to help get him medicine from Sasha in Treeton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "That'd be great. You already told me you'd try.", @@ -369229,12 +369110,10 @@ "id": 69, "notes": "Give Dalton his medicine", "title": "Dalton's Medicine", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369271,17 +369150,15 @@ { "id": 70, "notes": "Find Ryland's lost bow", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 578, "y": 246 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369297,7 +369174,7 @@ "warp_x": null, "warp_y": null, "success_message": "You found Ryland's Bow!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -369312,13 +369189,11 @@ { "id": 71, "notes": "Ryland asks for help finding his bow", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Won't you at least try finding my bow for me? It's very important to me, you know. You might try checking near a fallen log. I remember tripping over one before I lost my bow.", @@ -369343,12 +369218,10 @@ "id": 72, "notes": "Give Ryland his bow", "title": "Ryland's Bow", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369377,13 +369250,11 @@ { "id": 73, "notes": "Abigail gives out hot cocoa", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [ { @@ -369412,13 +369283,11 @@ { "id": 74, "notes": "Abigail asks you to take some hot cocoa to Heinrich", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369448,12 +369317,10 @@ "id": 75, "notes": "Give Heinrich his hot cocoa", "title": "Hot Cocoa for Heinrich", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369482,13 +369349,11 @@ { "id": 76, "notes": "Abigail asks for you to find her ice skates", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Yuo've already offered to find them! Please talk to Valerie!", @@ -369512,13 +369377,11 @@ { "id": 77, "notes": "Valarie gives away cookies", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [ { @@ -369547,13 +369410,11 @@ { "id": 78, "notes": "Valarie gives directions for finding Abigail's iceskates", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I've already told you. Now off you go. Santa might pop by at any moment!", @@ -369563,7 +369424,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Yes, I remember... I seem to remember seeing them near the pond to the north, behind Heinrich's cabin.", "requires_awardid": null, "requires_questid_completed": [], @@ -369577,17 +369438,15 @@ { "id": 79, "notes": "Find Abigails iceskates", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", "x": 462, "y": 29 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369619,12 +369478,10 @@ "id": 80, "notes": "Return Abigail's lost ice skates", "title": "Abigail's Lost Ice Skates", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369653,13 +369510,11 @@ { "id": 81, "notes": "A reward from Abigail", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369688,17 +369543,15 @@ { "id": 82, "notes": "Hoof/footprints near Sabella's house", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 427, "y": 336 }, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], "fail_npc_chat": "There seem to be prints that were here, but they're beginning to disappear.", @@ -369722,16 +369575,14 @@ { "id": 83, "notes": "Agree to help find Sabella's mare, Apples", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -369752,13 +369603,11 @@ { "id": 84, "notes": "Reuben has seen Apples", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I already told you to go see Faustus.", @@ -369782,13 +369631,11 @@ { "id": 85, "notes": "Agree to get pie from Sabella for Fuatus", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Aren't you going to get the pie?", @@ -369812,13 +369659,11 @@ { "id": 86, "notes": "Get apple pie from Sabella", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369847,13 +369692,11 @@ { "id": 87, "notes": "Give Sabella's pie to Faustus", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369882,13 +369725,11 @@ { "id": 88, "notes": "Elliott gives you Apples, Sabella's horse", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369896,7 +369737,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -369918,12 +369759,10 @@ "id": 89, "notes": "Give Sabella Apples back", "title": "Sabella's Mare, Apples", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -369952,13 +369791,11 @@ { "id": 90, "notes": "Reuben makes you a balloon animal", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 15, "items_required": [ { @@ -369987,16 +369824,14 @@ { "id": 91, "notes": "Agree to get balloon animals for Veronica in Shellton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 400, "items_gained": [], "quest_points": 0, @@ -370017,13 +369852,11 @@ { "id": 92, "notes": "Get balloon animals from Reuben", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 35, "items_required": [ { @@ -370053,12 +369886,10 @@ "id": 93, "notes": "Give Veronica the balloon animals", "title": "Veronica's Balloon Animals", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -370087,16 +369918,14 @@ { "id": 94, "notes": "Veronica gives you more money for the balloons", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 50, "items_gained": [], "quest_points": 0, @@ -370117,16 +369946,14 @@ { "id": 95, "notes": "Waverly sends you to ask Neighbors if they need help", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -370147,16 +369974,14 @@ { "id": 96, "notes": "Iona asks you to tell Waverly about her leaky roof", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -370178,15 +370003,13 @@ "id": 97, "notes": "Tell Waverly about Iona's leaky roof.", "title": "Waverly's Task", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 900, "items_gained": [], "quest_points": 10, @@ -370207,16 +370030,14 @@ { "id": 98, "notes": "Ryland asks for help finding his whet stone", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -370237,17 +370058,15 @@ { "id": 99, "notes": "Find an imprint of Ryland's whetstone and tracks leading back to town", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 548, "y": 235 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You see nothing of interest here.", @@ -370273,16 +370092,14 @@ { "id": 100, "notes": "Get sent to ask around town about Ryland's whetstone.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -370303,13 +370120,11 @@ { "id": 101, "notes": "Get Ryland's whetstone from Parry", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -370317,7 +370132,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -370339,12 +370154,10 @@ "id": 102, "notes": "Give Ryland his whetstone", "title": "Ryland's Lost Whetstone", - "requires_questid_npc": [ - 72 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -370352,7 +370165,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 75, @@ -370363,7 +370176,9 @@ "success_npc_chat": "Parry had it? Well, I'll be. Thank you so much. Seems I'm in your debt once again.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 72 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Jenn", @@ -370374,12 +370189,10 @@ "id": 103, "notes": "Autumn from Sunshine Meadows gives bag of oats and a cookie for reading to her son.", "title": "Entertain Autumn's Child", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -370412,13 +370225,11 @@ { "id": 104, "notes": "Autumn hands out her famous oatmeal", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -370447,24 +370258,22 @@ { "id": 105, "notes": "Autumn Gets upset at player who upsets child.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 19, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -370477,13 +370286,11 @@ { "id": 106, "notes": "Willow from Soaring Meadows gives you a glass of lemonade.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [ { @@ -370512,13 +370319,11 @@ { "id": 107, "notes": "You offer to apologize to sunny for Storm argument", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Thanks. You have already offered to do this, though.", @@ -370542,13 +370347,11 @@ { "id": 108, "notes": "You offer to tell Storm that Sunny has accepted his apology", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already offered to do this!", @@ -370573,12 +370376,10 @@ "id": 109, "notes": "Tell Storm that Sunny accepts the apology", "title": "Sunny and Storm's Marital Strife", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already helped us!", @@ -370602,17 +370403,15 @@ { "id": 110, "notes": "Dig up Harmony's harmonica", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 385, "y": 242 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -370644,12 +370443,10 @@ "id": 111, "notes": "Return harmonica to Harmony.", "title": "Harmony's Lost Harmonica", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -370682,16 +370479,14 @@ { "id": 112, "notes": "Nolan asks you to get a book from Cedric in Chillton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -370712,13 +370507,11 @@ { "id": 113, "notes": "Get Nolan's Book from Cedric", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -370748,12 +370541,10 @@ "id": 114, "notes": "Return Nolan his book", "title": "Nolan's Borrowed Book #1", - "requires_questid_npc": [ - 14 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -370772,7 +370563,9 @@ "success_npc_chat": "Well, let's take a look at it. Hmmm... Seems to be in perfect condition. Thank you! Here's a bit of a reward for you.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 14 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Jenn", @@ -370782,16 +370575,14 @@ { "id": 115, "notes": "Nolan asks you to get a book from Evelynn in Wington", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -370812,13 +370603,11 @@ { "id": 116, "notes": "Get Nolan's Book from Cadence", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -370848,12 +370637,10 @@ "id": 117, "notes": "Return Nolan his book", "title": "Nolan's Borrowed Book #2", - "requires_questid_npc": [ - 114 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -370872,7 +370659,9 @@ "success_npc_chat": "Ah, thank you! Here's a reward for your hard work. If you come back later, I'll probably have another errand for you to run.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 114 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Jenn", @@ -370882,16 +370671,14 @@ { "id": 118, "notes": "Nolan asks you to get a book from Eliza in Shellton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -370912,13 +370699,11 @@ { "id": 119, "notes": "Get Nolan's Book from Eliza", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -370948,12 +370733,10 @@ "id": 120, "notes": "Return Nolan his book", "title": "Nolan's Borrowed Book #3", - "requires_questid_npc": [ - 117 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -370961,7 +370744,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 25, @@ -370972,7 +370755,9 @@ "success_npc_chat": "That's wonderful! Again, I give you my thanks. And a small reward.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 117 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Jenn", @@ -370982,13 +370767,11 @@ { "id": 121, "notes": "Take a free nap at Sera's Igloo", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 33, + "max_repeats": 33, "money_cost": 0, "items_required": [ { @@ -371017,16 +370800,14 @@ { "id": 122, "notes": "Nolan asks you to get a book from Kaliska", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -371034,7 +370815,7 @@ "warp_x": null, "warp_y": null, "success_message": "Nolan has asked you to go get a book from Kaliska in Appleton.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -371047,16 +370828,14 @@ { "id": 123, "notes": "Jaelyn sends you to find Nolan's lost book", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -371064,7 +370843,7 @@ "warp_x": null, "warp_y": null, "success_message": "Jaelyn has asked you to find Nolan's lost book.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -371077,17 +370856,15 @@ { "id": 124, "notes": "Find Nolan's lost book", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 583, "y": 232 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371118,13 +370895,11 @@ { "id": 125, "notes": "Return to Jaelyn with Nolan's book", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371144,7 +370919,7 @@ "warp_x": null, "warp_y": null, "success_message": "Jaelyn gave you $200 for finding Nolan's lost book for her. Time to take the book back to Nolan.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -371158,12 +370933,10 @@ "id": 126, "notes": "Return Nolan his book", "title": "Nolan's Borrowed Book #4", - "requires_questid_npc": [ - 120 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371182,7 +370955,9 @@ "success_npc_chat": "Ah, thank you so much. Well, I think that's all of them. Here, take this as a reward for all your hard work!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 120 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Jenn", @@ -371193,12 +370968,10 @@ "id": 127, "notes": "Finish Fins Simple Painting and get a moderate reward", "title": "Painting for Fin", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already painted for Fin.", @@ -371222,16 +370995,14 @@ { "id": 128, "notes": "Cedric asks for help finding his axe", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -371239,7 +371010,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've agreed to help Cedric find his lost axe. Better start looking.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -371252,17 +371023,15 @@ { "id": 129, "notes": "Find the handle of Cedric's axe", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 461, "y": 47 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371293,13 +371062,11 @@ { "id": 130, "notes": "Cedric sends you to Treeton for a new axe blade", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371311,7 +371078,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -371319,7 +371086,7 @@ "warp_x": null, "warp_y": null, "success_message": "Cedric returns the axe handle to you. Guess it's time to head to Treeton and visit Lars the farrier.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -371332,13 +371099,11 @@ { "id": 131, "notes": "Lars makes a new axe blade", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371350,7 +371115,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -371358,7 +371123,7 @@ "warp_x": null, "warp_y": null, "success_message": "Lars gave you the fixed axe!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -371372,12 +371137,10 @@ "id": 132, "notes": "Return Cedric his new axe", "title": "Cedric's Axe", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371393,7 +371156,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Cedric's Quest! You earned $5000 and 75 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -371406,13 +371169,11 @@ { "id": 133, "notes": "Kele asks you to take a letter to Eliza in Shellton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371428,7 +371189,7 @@ "warp_x": null, "warp_y": null, "success_message": "Kele's given you a letter for Eliza. Better hurry up to Shellton and give it to her.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -371441,13 +371202,11 @@ { "id": 134, "notes": "Give letter to Eliza-get a letter to give to Kele", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371459,7 +371218,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -371467,7 +371226,7 @@ "warp_x": null, "warp_y": null, "success_message": "You gave Eliza her letter. Eliza gave you a letter for Kele!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -371481,12 +371240,10 @@ "id": 135, "notes": "Give Kele a letter from Eliza", "title": "Penpal letter for Kele", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371502,7 +371259,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Kele's Penpal Quest! You earned $2000 and 50 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -371515,13 +371272,11 @@ { "id": 136, "notes": "Tobias asks you to get him hazelnuts to make his delicious spread.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You already offered to go get the nuts.", @@ -371545,13 +371300,11 @@ { "id": 137, "notes": "You obtain Hazelnuts from Hazel for Tobias.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371581,12 +371334,10 @@ "id": 138, "notes": "You deliver hazelnuts to Tobias and get rewarded.", "title": "Hazelnuts for Tobias ", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371619,13 +371370,11 @@ { "id": 139, "notes": "Sell scorpion to Dakota", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -371654,13 +371403,11 @@ { "id": 140, "notes": "Octavio asks you to deliver a letter to his neighbor, Vianca", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371689,13 +371436,11 @@ { "id": 141, "notes": "Vianca gives you a rose to give to Octavio", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371707,7 +371452,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -371729,12 +371474,10 @@ "id": 142, "notes": "Give Rose to Octavio", "title": "Octavio's Love Letter", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -371742,7 +371485,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 25, @@ -371750,7 +371493,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Octavio's Love Letter Quest! You earned $2000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -371764,12 +371507,10 @@ "id": 143, "notes": "Complete a painting for Ricardo", "title": "Painting for Ricardo", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already successfully painted for Ricardo.", @@ -371794,12 +371535,10 @@ "id": 144, "notes": "Painting for Nadine in Earton", "title": "Painting for Nadine", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed Nadine's flower painting.", @@ -371824,12 +371563,10 @@ "id": 145, "notes": "Complete painting for Valarie", "title": "Painting for Valarie", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already successfully painted for Valarie.", @@ -371854,12 +371591,10 @@ "id": 146, "notes": "painting for kaliska in appleton", "title": "Painting for Kaliska", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already successfully painted for Kaliska.", @@ -371884,12 +371619,10 @@ "id": 147, "notes": "Complete painting for Mr. Tuttle in Shellton", "title": "Painting for Mr. Tuttle", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already successfully painted for Mr. Tuttle.", @@ -371914,12 +371647,10 @@ "id": 148, "notes": "Complete painting for Isadora in Horseshoe Village", "title": "Painting for Isadora", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already successfully painted for Isadora.", @@ -371944,12 +371675,10 @@ "id": 149, "notes": "Complete painting for Hannah in Wington", "title": "Painting for Hannah", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already successfully painted for Hannah.", @@ -371973,13 +371702,11 @@ { "id": 150, "notes": "Give Hannah a four leaf clover", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -372009,12 +371736,10 @@ "id": 151, "notes": "Complete painting for Fala in Santon", "title": "Painting for Fala", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed Fala's painting.", @@ -372039,12 +371764,10 @@ "id": 152, "notes": "Complete painting for Vianca in Treeton", "title": "Painting for Vianca", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed Vianca's painting.", @@ -372068,16 +371791,14 @@ { "id": 153, "notes": "Larissa sends you looking for her stolen cloak", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -372085,7 +371806,7 @@ "warp_x": null, "warp_y": null, "success_message": "Larissa has asked for your help finding her stolen cloak.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372098,16 +371819,14 @@ { "id": 154, "notes": "Jaelyn gives you a clue about Larissa's missing cloak", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -372115,7 +371834,7 @@ "warp_x": null, "warp_y": null, "success_message": "Nadine in Earton wore a pink cloak. You should go tell Larissa.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372128,16 +371847,14 @@ { "id": 155, "notes": "Larissa sends you to Earton to speak to Nadine", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -372145,7 +371862,7 @@ "warp_x": null, "warp_y": null, "success_message": "Time to go see if Nadine's pink cloak is really Larissa's!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372158,16 +371875,14 @@ { "id": 156, "notes": "Nadine sends you to talk to Valarie about the cloak", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -372175,7 +371890,7 @@ "warp_x": null, "warp_y": null, "success_message": "Time to head to Chillton. Let's hope Valarie has Larissa's cloak!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372188,13 +371903,11 @@ { "id": 157, "notes": "Valarie give you Larissa's pink cloak", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -372202,7 +371915,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -372210,7 +371923,7 @@ "warp_x": null, "warp_y": null, "success_message": "Valarie gave you Larissa's pink cloak. Better hurry and return it to her.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372224,12 +371937,10 @@ "id": 158, "notes": "Return Larissa's pink cloak", "title": "Larissa's Stolen Cloak", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -372237,7 +371948,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 8000, "items_gained": [], "quest_points": 100, @@ -372245,7 +371956,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Larissa's quest! You earned $8000 and 100 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372258,13 +371969,11 @@ { "id": 159, "notes": "Larissa gives you two gifts", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -372284,7 +371993,7 @@ "warp_x": null, "warp_y": null, "success_message": "Larissa gave you a gift for Nadine, and a gift for Valarie.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372297,13 +372006,11 @@ { "id": 160, "notes": "Give gift to Nadine", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -372311,7 +372018,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -372319,7 +372026,7 @@ "warp_x": null, "warp_y": null, "success_message": "You gave Nadine her gift from Larissa!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372332,13 +372039,11 @@ { "id": 161, "notes": "Give gift to Valarie", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -372346,7 +372051,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -372354,7 +372059,7 @@ "warp_x": null, "warp_y": null, "success_message": "You gave Valarie her gift from Larissa!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372368,12 +372073,10 @@ "id": 162, "notes": "Larissa rewards you for delivering the two gifts", "title": "Gifts from Larissa", - "requires_questid_npc": [ - 158 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, you haven't gotten both delivered, yet? Be sure to give one to Valerie and the other to Nadine.", @@ -372390,7 +372093,9 @@ 160, 161 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 158 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "Jenn", @@ -372400,13 +372105,11 @@ { "id": 163, "notes": "welcome willy gives magnifying glass", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -372435,13 +372138,11 @@ { "id": 164, "notes": "welcome willy gives binoculars", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -372470,13 +372171,11 @@ { "id": 165, "notes": "welcome willy gives shovel", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -372505,13 +372204,11 @@ { "id": 166, "notes": "welcome willy gives rake", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -372540,16 +372237,14 @@ { "id": 167, "notes": "Accalia asks for help finding Muffins", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -372557,7 +372252,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have agreed to help Accalia find her missing kitten.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372570,17 +372265,15 @@ { "id": 168, "notes": "Find kitten tracks outside", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 458, "y": 421 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -372606,16 +372299,14 @@ { "id": 169, "notes": "Accalia asks that you check on Muffins in the orchard", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -372623,7 +372314,7 @@ "warp_x": null, "warp_y": null, "success_message": "Accalia has asked you to check on Muffins in the orange orchard.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372636,16 +372327,14 @@ { "id": 172, "notes": "Mayor Temperence gives clue about Larissa's cloak", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -372653,7 +372342,7 @@ "warp_x": null, "warp_y": null, "success_message": "Jaelyn might have information about Larissa's missing cloak.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372666,16 +372355,14 @@ { "id": 170, "notes": "Check up on Muffins", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -372683,7 +372370,7 @@ "warp_x": null, "warp_y": null, "success_message": "Muffins seems to be doing a good job keeping herself out of trouble. That will make Accalia happy.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372697,15 +372384,13 @@ "id": 171, "notes": "Reward from Accalia", "title": "Missing Muffins", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 25, @@ -372713,7 +372398,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed the Missing Muffins quest! You earned $1000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -372728,13 +372413,11 @@ { "id": 173, "notes": "Lajita sends you in search of Mushrooms", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You've already gotten the mushrooms for me.", @@ -372745,7 +372428,7 @@ "warp_x": null, "warp_y": null, "success_message": "Lajita has sent you to find mushrooms in the eastern part of the forest.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372758,17 +372441,15 @@ { "id": 174, "notes": "Find Special Mushrooms", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 484, "y": 421 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -372799,13 +372480,11 @@ { "id": 175, "notes": "Give mushrooms to Lajita", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -372821,7 +372500,7 @@ "warp_x": null, "warp_y": null, "success_message": "You gave Lajita the special mushrooms.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372834,16 +372513,14 @@ { "id": 176, "notes": "Lajita sends you in search of herbs", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -372851,7 +372528,7 @@ "warp_x": null, "warp_y": null, "success_message": "Lajita has sent you to find herbs in the northern part of the forest.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372864,17 +372541,15 @@ { "id": 177, "notes": "Find Sun dried herbs", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 463, "y": 413 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -372905,13 +372580,11 @@ { "id": 178, "notes": "Give herbs to Lajita", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -372927,7 +372600,7 @@ "warp_x": null, "warp_y": null, "success_message": "You gave Lajita the sun dried herbs.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372940,16 +372613,14 @@ { "id": 179, "notes": "Lajita sends you in search of potatoes", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -372957,7 +372628,7 @@ "warp_x": null, "warp_y": null, "success_message": "Lajita has sent you to dig up some potatoes from in front of the gazebo.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -372970,17 +372641,15 @@ { "id": 180, "notes": "Find potatoes", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 473, "y": 420 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -373012,12 +372681,10 @@ "id": 181, "notes": "Give potatoes to lajita", "title": "Ingredients for Lajita's Stew", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -373033,7 +372700,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Lajita's Stew quest! You earned $5000 and 100 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -373046,13 +372713,11 @@ { "id": 182, "notes": "Lajita hands out stew", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 4, + "max_repeats": 4, "money_cost": 0, "items_required": [ { @@ -373081,13 +372746,11 @@ { "id": 183, "notes": "Pretend to eat Kendi's sand soup", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [], "fail_npc_chat": "No more! You ate it all. Now I need to make more.", @@ -373111,13 +372774,11 @@ { "id": 184, "notes": "Mandala asks you to clean her rock garden", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You've already done that for me. Come back later. I might have something else for you to do.", @@ -373128,7 +372789,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've agreed to rake the sand from Mandala's rock garden.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -373141,17 +372802,15 @@ { "id": 185, "notes": "Clear Mandala's rock garden", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 434, "y": 447 }, "tracked": true, - "repeats": 184, + "max_repeats": 184, "money_cost": 0, "items_required": [], "fail_npc_chat": "You've already done that for me. Come back later. I might have something else for you to do.", @@ -373176,12 +372835,10 @@ "id": 186, "notes": "Mandala give a fixes a reward", "title": "Mandala's Rock Garden", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -373201,7 +372858,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Mandala's Rock Garden quest! You were given a bean and rice burrito and a tall glass of lemonade. You earned 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -373215,12 +372872,10 @@ "id": 187, "notes": "play Mary Had a Little Lamb for Elaina", "title": "Play for Elaina", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already played this song for Elaina.", @@ -373245,12 +372900,10 @@ "id": 188, "notes": "play C scale for Jasper", "title": "Play for Jasper", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already played this song for Jasper.", @@ -373275,12 +372928,10 @@ "id": 189, "notes": "play Twinkle Twinkle for Yancy", "title": "Play for Yancy", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already played this song for Yancy.", @@ -373305,12 +372956,10 @@ "id": 190, "notes": "Play Three Blind Mice for Veronica", "title": "Play for Veronica", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already played this song for Veronica.", @@ -373335,12 +372984,10 @@ "id": 191, "notes": "Play Ode to Joy for Inara", "title": "Play for Inara", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already played this song for Inara.", @@ -373364,13 +373011,11 @@ { "id": 192, "notes": "Rainey gives letter", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -373399,13 +373044,11 @@ { "id": 193, "notes": "Cosmo give you letter", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -373439,12 +373082,10 @@ "id": 194, "notes": "Give Rainey letter from Cosmo", "title": "Rainey's Letter", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -373473,13 +373114,11 @@ { "id": 195, "notes": "Sell Lizard to Dakota", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -373508,13 +373147,11 @@ { "id": 196, "notes": "Leroy asks for help finding his gold nuggets", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Now, we've already struck our bargain! You better get searching for clues if you expect to find those nuggets.", @@ -373538,17 +373175,15 @@ { "id": 197, "notes": "Find some paw prints in the dust", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 521, "y": 456 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -373575,17 +373210,15 @@ { "id": 198, "notes": "Find some tracks at the base of the tree.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 519, "y": 456 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -373612,17 +373245,15 @@ { "id": 199, "notes": "Find tracks leading to the northwest", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 520, "y": 459 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -373649,17 +373280,15 @@ { "id": 200, "notes": "Find a clue in the rocks", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 517, "y": 458 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -373686,16 +373315,14 @@ { "id": 201, "notes": "Get a clue from Scamper", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -373703,7 +373330,7 @@ "warp_x": null, "warp_y": null, "success_message": "Scamper told you where to find the other squirrel.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -373716,17 +373343,15 @@ { "id": 202, "notes": "Find tracks that lead to the east", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 519, "y": 454 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -373753,17 +373378,15 @@ { "id": 203, "notes": "Find tracks on side of rock", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 523, "y": 454 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -373790,17 +373413,15 @@ { "id": 204, "notes": "Find a nugget via rake!", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 523, "y": 454 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -373831,17 +373452,15 @@ { "id": 205, "notes": "Find a clue by the rock", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 522, "y": 453 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -373868,17 +373487,15 @@ { "id": 206, "notes": "Find a clue in the fallen log", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 521, "y": 454 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -373905,17 +373522,15 @@ { "id": 207, "notes": "Following tracks to the northwest", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 521, "y": 452 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -373942,17 +373557,15 @@ { "id": 208, "notes": "Find a clue by the palm trees", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 518, "y": 450 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -373979,17 +373592,15 @@ { "id": 209, "notes": "Find a nugget!", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 518, "y": 450 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -374021,12 +373632,10 @@ "id": 210, "notes": "Give nuggets to Leroy", "title": "Mystery of Leroy's Lost Nuggets!", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -374055,16 +373664,14 @@ { "id": 211, "notes": "Sando asks for help finding Lucy", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -374072,7 +373679,7 @@ "warp_x": null, "warp_y": null, "success_message": "Sando has asked you to help find his dancing snake, Lucy.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -374085,16 +373692,14 @@ { "id": 212, "notes": "Loyada give a clue about Lucy", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -374102,7 +373707,7 @@ "warp_x": null, "warp_y": null, "success_message": "Loyada gave you a hint on where to find Lucy.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -374115,16 +373720,14 @@ { "id": 213, "notes": "Sando sends you to find Lucy", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -374132,7 +373735,7 @@ "warp_x": null, "warp_y": null, "success_message": "Sando has asked you to look under the rocks in town to find Lucy.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -374145,17 +373748,15 @@ { "id": 214, "notes": "Find Lucy", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 438, "y": 445 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -374187,12 +373788,10 @@ "id": 215, "notes": "Return Lucy to Sando", "title": "Lucy, the Dancing Snake", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -374223,16 +373822,14 @@ { "id": 216, "notes": "Sera asks for a coat pick up from Leroy", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -374240,7 +373837,7 @@ "warp_x": null, "warp_y": null, "success_message": "Sera has asked you to go find Leroy on Desert Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -374253,13 +373850,11 @@ { "id": 217, "notes": "Leroy gives coats for Sera", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -374275,7 +373870,7 @@ "warp_x": null, "warp_y": null, "success_message": "Leroy gave you a bundle of coats.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -374289,12 +373884,10 @@ "id": 218, "notes": "Give Sera coats", "title": "Sera's Special Delivery", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -374323,13 +373916,11 @@ { "id": 220, "notes": "Cara gives you flour", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -374337,7 +373928,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -374345,7 +373936,7 @@ "warp_x": null, "warp_y": null, "success_message": "Cara gave you some flour.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -374359,12 +373950,10 @@ "id": 221, "notes": "Give flour to Elaina", "title": "Flour for Elaina", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -374372,7 +373961,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 500, "items_gained": [], "quest_points": 25, @@ -374393,13 +373982,11 @@ { "id": 222, "notes": "Elaina hands out cookies", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 12, + "max_repeats": 12, "money_cost": 0, "items_required": [ { @@ -374428,13 +374015,11 @@ { "id": 223, "notes": "Trixie Traderton gives out orange samples.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 4, + "max_repeats": 4, "money_cost": 0, "items_required": [ { @@ -374463,13 +374048,11 @@ { "id": 224, "notes": "fishing clerk fries a little fish", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 5, "items_required": [ { @@ -374502,13 +374085,11 @@ { "id": 225, "notes": "fishing clerk fries a normal fish", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 10, "items_required": [ { @@ -374541,13 +374122,11 @@ { "id": 226, "notes": "fishing clerk fries a big fish", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 20, "items_required": [ { @@ -374580,16 +374159,14 @@ { "id": 227, "notes": "Violet in Earton asks for help finding binoculars", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -374610,17 +374187,15 @@ { "id": 228, "notes": "Find Violet's binoculars", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", "x": 534, "y": 164 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -374652,12 +374227,10 @@ "id": 229, "notes": "Give Violet her binoculars", "title": "Violet's Binoculars Quest", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -374686,16 +374259,14 @@ { "id": 230, "notes": "Felton asks you to find a T-rex bone", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -374703,7 +374274,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have been asked by Felton to find a buried T-Rex bone.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -374716,16 +374287,14 @@ { "id": 231, "notes": "Felton asks you to find a triceratops bone", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -374733,7 +374302,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were asked by Felton to go to Turtle Isle to find a buried Triceratops Bone.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -374746,16 +374315,14 @@ { "id": 232, "notes": "Felton asks you to find tiny pteridactyl bones", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -374763,7 +374330,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were asked by Felton to find Tiny Pterodactyl Bones in Blowhole Forest.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -374777,12 +374344,10 @@ "id": 233, "notes": "Ant Hill Quest #3 rewards", "title": "Ant Hill Quest #3", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed Ant Hill #3.", @@ -374793,7 +374358,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ant Hill Quest #3! You earned $5000 and 50 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -374807,12 +374372,10 @@ "id": 234, "notes": "Ant Hill Quest #4 rewards", "title": "Ant Hill Quest #4", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed Ant Hill #4.", @@ -374823,7 +374386,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ant Hill Quest #4! You earned $5000 and 50 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -374837,12 +374400,10 @@ "id": 235, "notes": "Ant Hill Quest #5 rewards", "title": "Ant Hill Quest #5", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed Ant Hill #5.", @@ -374853,7 +374414,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ant Hill Quest #5! You earned $5000 and 50 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -374867,12 +374428,10 @@ "id": 236, "notes": "Ant Hill Quest #6 rewards", "title": "Ant Hill Quest #6", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed Ant Hill #6.", @@ -374883,7 +374442,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ant Hill Quest #6! You earned $5000 and 50 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -374896,16 +374455,14 @@ { "id": 237, "notes": "Abril asks for help finding his lost horseshoe.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -374913,7 +374470,7 @@ "warp_x": null, "warp_y": null, "success_message": "Abril has asked for your help finding his lost horseshoe.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -374926,17 +374483,15 @@ { "id": 238, "notes": "Find half a horseshoe", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 549, "y": 373 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -374967,16 +374522,14 @@ { "id": 239, "notes": "Return Horseshoe to Abril", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -374984,7 +374537,7 @@ "warp_x": null, "warp_y": null, "success_message": "Abril has sent you to speak to his neighbors about the missing half of the horseshoe.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -374999,13 +374552,11 @@ { "id": 240, "notes": "Get Horseshoe from Deidra", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -375013,7 +374564,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -375021,7 +374572,7 @@ "warp_x": null, "warp_y": null, "success_message": "Deidra gave you a piece of a broken horseshoe!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -375034,16 +374585,14 @@ { "id": 241, "notes": "Abril sends you to appleton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -375051,7 +374600,7 @@ "warp_x": null, "warp_y": null, "success_message": "Abril has asked you to take the two broken pieces to Arthur, the blacksmith in Appleton.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -375064,13 +374613,11 @@ { "id": 242, "notes": "Arthur fixes horseshoe", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -375082,7 +374629,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -375090,7 +374637,7 @@ "warp_x": null, "warp_y": null, "success_message": "Arthur fixed the horseshoe!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -375104,12 +374651,10 @@ "id": 243, "notes": "Return Fixed Horseshoe to Abril", "title": "Broken Horseshoe", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -375117,7 +374662,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 75, @@ -375125,7 +374670,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Abril's Broken Horseshoe quest! You earned $5,000 and 75 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -375138,13 +374683,11 @@ { "id": 244, "notes": "Stella in Earton gives away smoked salmon", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 25, + "max_repeats": 25, "money_cost": 0, "items_required": [ { @@ -375173,13 +374716,11 @@ { "id": 245, "notes": "Deidra gives you Alberts inventory list. ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -375208,16 +374749,14 @@ { "id": 246, "notes": "Stella asks for sack of fish from Ernie Angler", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -375239,12 +374778,10 @@ "id": 247, "notes": "Returning Albert Junkers inventory list", "title": "Albert Junker's Missing List", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -375273,16 +374810,14 @@ { "id": 248, "notes": "Ernie Angler asks you to get worms for him.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -375303,13 +374838,11 @@ { "id": 249, "notes": "give Ernie Angler 25 earthworms.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -375343,12 +374876,10 @@ "id": 250, "notes": "Give Stella the sack of fish", "title": "Stella's Sack of Fish", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -375381,16 +374912,14 @@ { "id": 251, "notes": "Loyada sends you out searching for her lost necklace", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -375398,7 +374927,7 @@ "warp_x": null, "warp_y": null, "success_message": "Loyada has asked you to find her lost necklace.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -375411,16 +374940,14 @@ { "id": 252, "notes": "Nolan sends you to small shack on Hoof Isle for treasure map", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -375428,7 +374955,7 @@ "warp_x": null, "warp_y": null, "success_message": "Nolan has suggested you look for the deserted shack on Hoof Isle for a treasure map.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -375441,17 +374968,15 @@ { "id": 253, "notes": "Find Map/Get 1st Clue", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 557, "y": 360 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -375482,14 +375007,14 @@ { "id": 3638, "notes": "Edgar/Molten agrees to sponsor Farley's Extreme Makeover", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 0, @@ -375510,17 +375035,15 @@ { "id": 254, "notes": "Find 2nd clue behind inn in Wington", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 429, "y": 147 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -375547,17 +375070,15 @@ { "id": 255, "notes": "Find 3rd clue", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 386, "y": 246 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -375584,17 +375105,15 @@ { "id": 256, "notes": "Find 4th Clue", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 590, "y": 311 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -375621,17 +375140,15 @@ { "id": 257, "notes": "Find 5th Clue", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 465, "y": 430 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -375658,17 +375175,15 @@ { "id": 258, "notes": "Find the Emerald Necklace", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 456, "y": 34 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -375700,12 +375215,10 @@ "id": 259, "notes": "Return Necklace to Loyada", "title": "Hunt for the Emerald Necklace", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -375717,7 +375230,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 15000, "items_gained": [], "quest_points": 300, @@ -375725,7 +375238,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed the Hunt for the Emerald Necklace! You earned $15,000 and 300 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -375738,16 +375251,14 @@ { "id": 260, "notes": "Start Jilly's quest", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -375769,12 +375280,10 @@ "id": 261, "notes": "Jilly elf takes the candy canes", "title": "Jilly Elf Candy Cane quest", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -375803,17 +375312,15 @@ { "id": 262, "notes": "Unicorn Adventure Tree Pass-through Right Side", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 505, "y": 359 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -375823,7 +375330,7 @@ "goto_npc_chatpoint": -1, "warp_x": 503, "warp_y": 359, - "success_message": "", + "success_message": null, "success_npc_chat": "After carefully searching, you manage to find a small tunnel beneath the giant old tree and crawl through to the other side!", "requires_awardid": null, "requires_questid_completed": [], @@ -375837,17 +375344,15 @@ { "id": 263, "notes": "Unicorn Adventure Pass throguh old tree Left Side", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 503, "y": 359 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -375857,7 +375362,7 @@ "goto_npc_chatpoint": -1, "warp_x": 505, "warp_y": 359, - "success_message": "", + "success_message": null, "success_npc_chat": "After carefully searching, you manage to find a small tunnel beneath the giant old tree and crawl through to the other side!", "requires_awardid": null, "requires_questid_completed": [], @@ -375871,16 +375376,14 @@ { "id": 264, "notes": "Unicorn Poofs you away if you upset it.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -375902,12 +375405,10 @@ "id": 265, "notes": "Unicorn rewards you for kindness and jumps you bback to start", "title": "Tail Forest Mystery", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -375940,16 +375441,14 @@ { "id": 266, "notes": "Start Dilly Elf's quest", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -375971,12 +375470,10 @@ "id": 268, "notes": "Dilly the elf takes 25 snowballs", "title": "Dilly the Elf Snow Ball Quest", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376005,13 +375502,11 @@ { "id": 269, "notes": "Asked to find spider's brother", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already offered to find my brother! Good luck!", @@ -376036,12 +375531,10 @@ "id": 270, "notes": "Returning Spiders brother", "title": "Spider's Quest", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376070,16 +375563,14 @@ { "id": 277, "notes": "Helga asks you to pick cranberries", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -376087,7 +375578,7 @@ "warp_x": null, "warp_y": null, "success_message": "Helga needs 10 cranberries for her fruitcake. Better hurry!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -376101,12 +375592,10 @@ "id": 278, "notes": "you give helga 10 cranberries", "title": "Helga's Fruitcake", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376139,13 +375628,11 @@ { "id": 279, "notes": "Helga asks you to pick thimbleberries", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376160,7 +375647,7 @@ "goto_npc_chatpoint": 8, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Thanks, dear. :) You're being a really big help!", "requires_awardid": null, "requires_questid_completed": [], @@ -376174,13 +375661,11 @@ { "id": 281, "notes": "give Rupert of Chillton logs", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 9000, + "max_repeats": 9000, "money_cost": 0, "items_required": [ { @@ -376209,13 +375694,11 @@ { "id": 280, "notes": "Helga gives you tea", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -376223,7 +375706,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -376244,13 +375727,11 @@ { "id": 276, "notes": "Dakota Gives you spider's brother when asked", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376279,13 +375760,11 @@ { "id": 282, "notes": "Inara in Appleton gives out tea", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -376293,7 +375772,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -376301,7 +375780,7 @@ "warp_x": null, "warp_y": null, "success_message": "You drank some Huckleberry Tea.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -376314,13 +375793,11 @@ { "id": 283, "notes": "Ursala of Appleton gives out Apple Noodle Soup", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -376328,7 +375805,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -376349,13 +375826,11 @@ { "id": 284, "notes": "Ursala of Appleton gives out a piece of apple pie", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 8, + "max_repeats": 8, "money_cost": 0, "items_required": [ { @@ -376384,13 +375859,11 @@ { "id": 285, "notes": " Mona hands out a cookie for free, up to 3 times", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -376419,16 +375892,14 @@ { "id": 286, "notes": "Go to Genevieve and borrow some clay for mona", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -376449,13 +375920,11 @@ { "id": 287, "notes": "Genevieve gives you some clay", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376485,12 +375954,10 @@ "id": 288, "notes": "You give the clay to Mona", "title": "Clay for Mona", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376519,17 +375986,15 @@ { "id": 289, "notes": "find Hidden Saddle pad and Leaflet for Trigger", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 376, "y": 231 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376549,7 +376014,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found Trigger's Saddle Pad and a leaflet.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -376564,17 +376029,15 @@ { "id": 290, "notes": "find Trigger's saddle.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", "x": 545, "y": 354 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376590,7 +376053,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found Trigger's Saddle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -376605,13 +376068,11 @@ { "id": 291, "notes": "Trigger asks you to look for his saddle pad in flipperton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Good luck. Hurry back with my saddle pad.", @@ -376635,13 +376096,11 @@ { "id": 292, "notes": "You give Trigger his Saddle pad and leaflet", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376676,13 +376135,11 @@ { "id": 293, "notes": "Trigger Asks you to to find his bridle in Wington", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Hurry back with my bridle, please.", @@ -376706,13 +376163,11 @@ { "id": 294, "notes": "you give Trigger his Bridle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376728,7 +376183,7 @@ "warp_x": null, "warp_y": null, "success_message": "You gave Trigger his Bridle. You were given $3000.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -376741,13 +376196,11 @@ { "id": 295, "notes": "Trigger asks for you to find his saddle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Good luck finding my saddle. Remember that willow tree.", @@ -376772,12 +376225,10 @@ "id": 296, "notes": "Give Trigger his Saddle", "title": "Trigger's Tack", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376793,7 +376244,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have completed Trigger's Tack Quest. You earned $7,000 and 300 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -376806,13 +376257,11 @@ { "id": 297, "notes": "Waverly Info for Triggers Saddle pad.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already asked me. Go away, I'm busy.", @@ -376836,13 +376285,11 @@ { "id": 298, "notes": "Iris gives you information about Trigger's Bridle.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I told you already. Find Daf over to the west.", @@ -376866,13 +376313,11 @@ { "id": 299, "notes": "Daf gives you Trigger's Bridle.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376901,16 +376346,14 @@ { "id": 300, "notes": "Decide to get Ormand some stew", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -376918,7 +376361,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've taken it upon yourself to get some of Lajita's stew for Ormand.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -376931,13 +376374,11 @@ { "id": 301, "notes": "Get Stew from Lajita", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376953,7 +376394,7 @@ "warp_x": null, "warp_y": null, "success_message": "Lajita gave you a pot of stew.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -376967,12 +376408,10 @@ "id": 302, "notes": "Give Stew to Ormand", "title": "Stew for Ormand", - "requires_questid_npc": [ - 181 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -376980,7 +376419,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 25, @@ -376988,10 +376427,12 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Stew for Ormand! You earned $1,000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 181 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Jenn", @@ -377002,12 +376443,10 @@ "id": 303, "notes": "tanagrama #1", "title": "Tanagrama #1", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this puzzle.", @@ -377018,7 +376457,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Tanagrama #1. You earned $3000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -377032,12 +376471,10 @@ "id": 304, "notes": "tanagrama #2", "title": "Tanagrama #2", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this puzzle.", @@ -377048,7 +376485,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Tanagrama #2! You earned $3000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -377062,12 +376499,10 @@ "id": 305, "notes": "tanagrama #3", "title": "Tanagrama #3", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this puzzle.", @@ -377078,7 +376513,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Tanagrama #3! You earned $3000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -377092,12 +376527,10 @@ "id": 306, "notes": "tanagrama #4", "title": "Tanagrama #4", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this puzzle.", @@ -377108,7 +376541,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Tanagrama #4! You earned $3000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -377122,12 +376555,10 @@ "id": 307, "notes": "tanagrama #5", "title": "Tanagrama #5", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this puzzle.", @@ -377138,7 +376569,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Tanagrama #5! You earned $3000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -377152,12 +376583,10 @@ "id": 308, "notes": "tanagrama #6", "title": "Tanagrama #6", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this puzzle.", @@ -377168,7 +376597,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Tanagrama #6! You earned $3000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -377182,12 +376611,10 @@ "id": 309, "notes": "tanagrama #7", "title": "Tanagrama #7", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this puzzle.", @@ -377198,7 +376625,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Tanagrama #7! You earned $3000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -377212,12 +376639,10 @@ "id": 310, "notes": "tanagrama #8", "title": "Tanagrama #8", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this puzzle.", @@ -377228,7 +376653,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Tanagrama #8! You earned $3000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -377241,23 +376666,21 @@ { "id": 311, "notes": "RELEASED FROM PRISON", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": 54, "warp_y": 35, - "success_message": "", + "success_message": null, "success_npc_chat": "You have been released from the work area.", "requires_awardid": null, "requires_questid_completed": [], @@ -377271,13 +376694,11 @@ { "id": 377, "notes": "Find the Easter bunny's eggs", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Off you go, and remember, I don't often go past the tree stumps up north of here. That rake will be useful, too.", @@ -377301,16 +376722,14 @@ { "id": 312, "notes": "Albert Junker asks you to find his inventory list", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -377318,7 +376737,7 @@ "warp_x": null, "warp_y": null, "success_message": "Albert Junker asked you to go see Deidra about his missing inventory list.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -377331,13 +376750,11 @@ { "id": 313, "notes": "give Deidra 15 seashells for a necklace", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -377370,13 +376787,11 @@ { "id": 314, "notes": "give Deidra 15 pearls for a necklace", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -377409,13 +376824,11 @@ { "id": 316, "notes": "Patience gives you coffee and a cookie", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [ { @@ -377448,13 +376861,11 @@ { "id": 317, "notes": "Patience asks you to find her a seashell necklace", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "That's great that you're going to try to find a seashell necklace for me.", @@ -377479,12 +376890,10 @@ "id": 318, "notes": "Give Patience a Seashell Necklace", "title": "Seashell Necklace for Patience", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -377513,16 +376922,14 @@ { "id": 319, "notes": "Eunice asks you to get some cacti seeds", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -377530,7 +376937,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have been asked to retrieve Cacti Seeds for Eunice!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -377543,17 +376950,15 @@ { "id": 320, "notes": "Find Seeds for Eunice", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 551, "y": 453 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -377569,7 +376974,7 @@ "warp_x": null, "warp_y": null, "success_message": "You found a Packet of Cacti Seeds!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -377585,12 +376990,10 @@ "id": 322, "notes": "Sandcastle Moat #1 - Earton", "title": "Sandcastle Moat #1", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -377615,12 +377018,10 @@ "id": 321, "notes": "Give Seeds to Eunice", "title": "Cacti Seeds for Eunice", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -377654,12 +377055,10 @@ "id": 323, "notes": "Sandcastle Moat #2 Hoof isle", "title": "Sandcastle Moat #2", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -377684,12 +377083,10 @@ "id": 324, "notes": "Sandcastle Moat #3 Bird Isle", "title": "Sandcastle Moat #3", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -377714,12 +377111,10 @@ "id": 325, "notes": "Sandcastle Moat #4 Dolphin Tail", "title": "Sandcastle Moat #4", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -377744,12 +377139,10 @@ "id": 326, "notes": "Sandcastle Moat #5 Art Isle", "title": "Sandcastle Moat #5", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -377774,12 +377167,10 @@ "id": 327, "notes": "Sandcastle Moat #6 Snow Isle", "title": "Sandcastle Moat #6", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -377804,12 +377195,10 @@ "id": 328, "notes": "Sandcastle Moat #7 Turtle", "title": "Sandcastle Moat #7", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -377834,12 +377223,10 @@ "id": 329, "notes": "Sandcastle Moat #8 Cat L Ear", "title": "Sandcastle Moat #8", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -377864,12 +377251,10 @@ "id": 330, "notes": "Sandcastle Moat #9 Hare isle R Ear", "title": "Sandcastle Moat #9", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -377894,12 +377279,10 @@ "id": 331, "notes": "Sandcastle Moat #10 Flower Isle top notche", "title": "Sandcastle Moat #10", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -377923,23 +377306,21 @@ { "id": 332, "notes": "Caeralus kicks you out of his 'property'", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": 308, "warp_y": 303, - "success_message": "", + "success_message": null, "success_npc_chat": "*POOF* Somehow Caeralus kicked you back outside the forest maze.", "requires_awardid": null, "requires_questid_completed": [], @@ -377953,16 +377334,14 @@ { "id": 333, "notes": "caeralus asks you to find feathers for him", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -377983,17 +377362,15 @@ { "id": 334, "notes": "find a white feather", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 311, "y": 319 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -378024,17 +377401,15 @@ { "id": 335, "notes": "find a white feather", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 308, "y": 323 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -378065,17 +377440,15 @@ { "id": 336, "notes": "find a white feather", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 301, "y": 318 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -378106,17 +377479,15 @@ { "id": 337, "notes": "find a white feather", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 303, "y": 316 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -378147,17 +377518,15 @@ { "id": 338, "notes": "find a white feather", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 308, "y": 314 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -378189,12 +377558,10 @@ "id": 339, "notes": "Give Caeralus the feathers", "title": "Caeralus' Feathers", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -378223,16 +377590,14 @@ { "id": 340, "notes": "Caeralus asks you to get food from wington", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -378253,13 +377618,11 @@ { "id": 341, "notes": "Levi gives you feed for Caeralus", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -378267,7 +377630,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -378289,12 +377652,10 @@ "id": 342, "notes": "Give Caeralus special feed", "title": "Caeralus' Special Feed", - "requires_questid_npc": [ - 339 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -378313,7 +377674,9 @@ "success_npc_chat": "That's just great. Erebus was getting awfully hungry.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 339 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Miranda", @@ -378323,17 +377686,15 @@ { "id": 343, "notes": "Find Holly's miniature horse.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 468, "y": 34 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -378348,7 +377709,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You found Holly's miniature horse!", "requires_awardid": null, "requires_questid_completed": [], @@ -378364,16 +377725,14 @@ { "id": 344, "notes": "Holly asks you to find her miniature horse.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -378381,7 +377740,7 @@ "warp_x": null, "warp_y": null, "success_message": "You're off to search for Holly's missing miniature Shire horse.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -378395,12 +377754,10 @@ "id": 345, "notes": "Return Holly's minitature Shire horse", "title": "Holly's Lost Miniature Horse", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -378429,16 +377786,14 @@ { "id": 346, "notes": "Caeralus jumps you to Erebus, the Pegasus", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -378446,7 +377801,7 @@ "warp_x": 327, "warp_y": 300, "success_message": "*POOF* You have been jumped to a small, enclosed meadow.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -378459,16 +377814,14 @@ { "id": 347, "notes": "Eberus jumps you outside of the forest ring", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -378490,15 +377843,13 @@ "id": 348, "notes": "Erebus jumps you out of the forest ring at end of unicorn quest", "title": "Simple Message", - "requires_questid_npc": [ - 342 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 200, @@ -378509,7 +377860,9 @@ "success_npc_chat": "Here is a reward for your help. Thank you.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 342 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Miranda", @@ -378519,16 +377872,14 @@ { "id": 349, "notes": "Unicorn jumps you to Erebus", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -378549,13 +377900,11 @@ { "id": 350, "notes": "Lilac has asked you to find Gandalf and Shadowfax", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Have you found them yet? Gandalf's in the wood at the southern most point.", @@ -378579,13 +377928,11 @@ { "id": 351, "notes": "Gandalf asks you to find Shadowfax.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "STILL NOT FOUND HIM, HEY? HE'S UP ON THE BEACH ON THE NORTHWESTERN PETAL OF THE ISLAND.", @@ -378609,13 +377956,11 @@ { "id": 352, "notes": "you tell Shadowfax Gandalfs message", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Go along and see Gandalf now.", @@ -378642,12 +377987,10 @@ "id": 353, "notes": "Gandalf rewards you", "title": "Lilac's Tea Time", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You need to find Shadowfax.", @@ -378674,12 +378017,10 @@ "id": 354, "notes": "Ice Sculpture #1", "title": "Ice Sculpture #1", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Ice Sculpture.", @@ -378690,7 +378031,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ice Sculpture #1! You earned $4000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -378704,12 +378045,10 @@ "id": 355, "notes": "Ice Sculpture #2", "title": "Ice Sculpture #2", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this ice sculpture.", @@ -378720,7 +378059,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ice Sculpture #2! You earned $4000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -378734,12 +378073,10 @@ "id": 356, "notes": "Ice Sculpture #3", "title": "Ice Sculpture #3", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this ice sculpture.", @@ -378750,7 +378087,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ice Sculpture #3! You earned $4000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -378764,12 +378101,10 @@ "id": 357, "notes": "Ice Sculpture #4", "title": "Ice Sculpture #4", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this ice sculpture.", @@ -378780,7 +378115,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ice Sculpture #4! You earned $4000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -378794,12 +378129,10 @@ "id": 358, "notes": "Ice Sculpture #5", "title": "Ice Sculpture #5", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this ice sculpture.", @@ -378810,7 +378143,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ice Sculpture #5! You earned $4000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -378824,12 +378157,10 @@ "id": 359, "notes": "Ice Sculpture #6", "title": "Ice Sculpture #6", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this ice sculpture.", @@ -378840,7 +378171,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ice Sculpture #6! You earned $4000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -378854,12 +378185,10 @@ "id": 360, "notes": "Ice Sculpture #7", "title": "Ice Sculpture #7", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this ice sculpture.", @@ -378870,7 +378199,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ice Sculpture #7! You earned $4000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -378884,12 +378213,10 @@ "id": 361, "notes": "Ice Sculpture #8", "title": "Ice Sculpture #8", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this ice sculpture.", @@ -378900,7 +378227,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ice Sculpture #8! You earned $4000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -378914,12 +378241,10 @@ "id": 362, "notes": "Ice Sculpture #9", "title": "Ice Sculpture #9", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this ice sculpture.", @@ -378930,7 +378255,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ice Sculpture #9! You earned $4000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -378944,12 +378269,10 @@ "id": 363, "notes": "Ice Sculpture #10", "title": "Ice Sculpture #10", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this ice sculpture.", @@ -378960,7 +378283,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ice Sculpture #10! You earned $4000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -378973,16 +378296,14 @@ { "id": 364, "notes": "agree to find Thorne's dog, Tookers", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -379003,17 +378324,15 @@ { "id": 365, "notes": "find Tooker's buried bone", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 333, "y": 333 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379029,7 +378348,7 @@ "warp_x": null, "warp_y": null, "success_message": "You found a buried Dog Bone.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -379044,13 +378363,11 @@ { "id": 366, "notes": "give Tookers his bone", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379080,15 +378397,13 @@ "id": 367, "notes": "Tell Thorne about Tookers", "title": "Thorne's Dog", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 50, @@ -379111,13 +378426,11 @@ { "id": 368, "notes": "Quinn gives you a glass of water", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -379125,7 +378438,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -379133,7 +378446,7 @@ "warp_x": null, "warp_y": null, "success_message": "You drank a glass of water.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -379146,16 +378459,14 @@ { "id": 369, "notes": "agree to get a pail of water for quinn", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -379176,13 +378487,11 @@ { "id": 370, "notes": "Get pail of water from Luke", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379190,7 +378499,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -379212,12 +378521,10 @@ "id": 371, "notes": "Give Quinn the pail of water", "title": "Quinn's Water", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379225,7 +378532,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 25, @@ -379246,16 +378553,14 @@ { "id": 372, "notes": "Off to ask Evelynn for Gertrude's broom", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -379263,7 +378568,7 @@ "warp_x": null, "warp_y": null, "success_message": "Gertrude asks you to see if Evelynn borrowed her broom.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -379276,16 +378581,14 @@ { "id": 373, "notes": "Off to ask Iris for Gertrude's broom", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -379293,7 +378596,7 @@ "warp_x": null, "warp_y": null, "success_message": "Gertrude asks you to see if Iris borrowed her broom.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -379306,13 +378609,11 @@ { "id": 374, "notes": "Evelynn doesn't have Gertrude's broom", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I already said I didn't have Gertrude's broom.", @@ -379323,7 +378624,7 @@ "warp_x": null, "warp_y": null, "success_message": "Evelynn doesn't have the broom. You should probably see if there was anyone else Gertrude may have lent it to.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -379336,13 +378637,11 @@ { "id": 375, "notes": "Iris give you Gertrudes broom", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379350,7 +378649,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -379358,7 +378657,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were given Gertrude's Broom.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -379372,12 +378671,10 @@ "id": 376, "notes": "Returning Gertrude's broom.", "title": "Gertrude's Broom", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379407,12 +378704,10 @@ "id": 378, "notes": "Give the easter bunny her eggs", "title": "Easter Bunny's Egg Hunt", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379441,17 +378736,15 @@ { "id": 379, "notes": "egg here", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 301, "y": 243 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379467,7 +378760,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found an Easter Egg.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -379482,17 +378775,15 @@ { "id": 380, "notes": "egg here", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 302, "y": 245 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379508,7 +378799,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found an Easter Egg.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -379523,17 +378814,15 @@ { "id": 381, "notes": "egg here", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 300, "y": 240 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379549,7 +378838,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found an Easter Egg.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -379564,17 +378853,15 @@ { "id": 382, "notes": "egg here", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 301, "y": 238 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379590,7 +378877,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found an Easter Egg.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -379605,17 +378892,15 @@ { "id": 383, "notes": "egg here", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 302, "y": 241 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379631,7 +378916,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found an Easter Egg.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -379646,16 +378931,14 @@ { "id": 384, "notes": "tessa asks you to get pitch from karl", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -379676,16 +378959,14 @@ { "id": 385, "notes": "karl asks you to get a pail from daria", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -379706,13 +378987,11 @@ { "id": 386, "notes": "Daria gives you a pail", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379741,13 +379020,11 @@ { "id": 387, "notes": "give Karl the pail, he gives you the three pails of pitch", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379780,13 +379057,11 @@ { "id": 388, "notes": "give Tessa the pitch", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379815,13 +379090,11 @@ { "id": 389, "notes": "Tessa asks you to collect logs and get them made into planks.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Better get collecting. It might take you a while.", @@ -379845,13 +379118,11 @@ { "id": 390, "notes": "Rebecca makes planks for 10 logs", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -379884,13 +379155,11 @@ { "id": 391, "notes": "give Tessa the planks.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379919,16 +379188,14 @@ { "id": 392, "notes": "tessa asks you to get nails from liam", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -379949,13 +379216,11 @@ { "id": 393, "notes": "Liam gives you a bucket of nails", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -379985,12 +379250,10 @@ "id": 394, "notes": "give tessa the bucket of nails", "title": "Wington Tack in Shambles", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380019,16 +379282,14 @@ { "id": 395, "notes": "Daedalus asks you to find 25 small black feathers", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -380049,13 +379310,11 @@ { "id": 396, "notes": "Give Daedalus 25 feathers", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380084,16 +379343,14 @@ { "id": 397, "notes": "Daedalus asks you to find 20 peacock feathers", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -380114,13 +379371,11 @@ { "id": 398, "notes": "Give Daedalus 20 peacock feathers", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380149,16 +379404,14 @@ { "id": 399, "notes": "Daedalus asks you to get wax from Albert Junker.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -380179,16 +379432,14 @@ { "id": 400, "notes": "Asked be Genevieve to see Rebecca about getting a pottery wheel made", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 0, @@ -380209,13 +379460,11 @@ { "id": 401, "notes": "Albert Junker gives you some wax for Daedalus.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380244,13 +379493,11 @@ { "id": 402, "notes": "rebecca asks you to get 6 logs and metal pieces from earton blacksmith", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Run to the Earton blacksmith and talk to Franklin. Tell him what I'm making and he'll know what I need. Don't forget those 6 logs, too.", @@ -380275,12 +379522,10 @@ "id": 403, "notes": "Give Daedalus the wax from Albert Junkers store.", "title": "Daedalus' Wings", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380309,13 +379554,11 @@ { "id": 404, "notes": "Franklin gives metal pieces for rebecca to make pottery wheel", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380344,13 +379587,11 @@ { "id": 405, "notes": "give rebecca 6 logs and metal parts", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380383,13 +379624,11 @@ { "id": 406, "notes": "Rebecca gives you pottery wheel for $3000", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 3000, "items_required": [ { @@ -380419,12 +379658,10 @@ "id": 407, "notes": "give genevieve the pottery wheel", "title": "Genevieve's New Pottery Wheel", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380453,16 +379690,14 @@ { "id": 408, "notes": "Inara asks you to see Rebecca about making her new tea table", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 4000, "items_gained": [], "quest_points": 0, @@ -380483,16 +379718,14 @@ { "id": 409, "notes": "rebecca asks you to find 10 branches and a log for inara's tea table", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -380513,13 +379746,11 @@ { "id": 410, "notes": "give Rebecca 10 branches and a log.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380552,13 +379783,11 @@ { "id": 411, "notes": "Rebecca gives you Inara's finished table for $2000.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 2000, "items_required": [ { @@ -380588,12 +379817,10 @@ "id": 412, "notes": "give Inara her finished tea table", "title": "Inara's Tea Table", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380622,16 +379849,14 @@ { "id": 413, "notes": "Go get the Bunnys niblets", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -380652,13 +379877,11 @@ { "id": 414, "notes": "Give Easter Bunny her Niblets Order", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380687,16 +379910,14 @@ { "id": 415, "notes": "Go get Chocolate icing for the Easter Bunny.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -380717,13 +379938,11 @@ { "id": 416, "notes": "Give Bunny her Icing.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380752,13 +379971,11 @@ { "id": 417, "notes": "Offer to Get Bunny some wrapping paper from Mrs Santa.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I think you know where Mrs. Claus lives, so I'll leave you to it.", @@ -380783,12 +380000,10 @@ "id": 418, "notes": "Give Bunny her Wrapping Paper.", "title": "Easter Bunny's Shopping List", - "requires_questid_npc": [ - 378 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380807,7 +380022,9 @@ "success_npc_chat": "Thank you. Here is a nice reward for you.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 378 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Artemis", @@ -380817,13 +380034,11 @@ { "id": 419, "notes": "Ollie gives you niblets", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380831,7 +380046,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -380852,13 +380067,11 @@ { "id": 420, "notes": "Sasha give's you Bunnys icing.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380866,7 +380079,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -380887,13 +380100,11 @@ { "id": 421, "notes": "Mrs Claus give's you Wrapping Paper.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380901,7 +380112,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -380922,13 +380133,11 @@ { "id": 422, "notes": "Griffin sends people to prison for $100", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 100, "items_required": [], "fail_npc_chat": "You don't have $100. You'll have to come back when you do.", @@ -380953,12 +380162,10 @@ "id": 423, "notes": "Carrot Run #1", "title": "Carrot Run #1", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -380977,7 +380184,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You completed Carrot Run #1! You earned $3000 and 2 carrots and 25 quest points.", "requires_awardid": null, "requires_questid_completed": [], @@ -380992,12 +380199,10 @@ "id": 424, "notes": "Carrot Run #2", "title": "Carrot Run #2", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381016,7 +380221,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You completed Carrot Run #2! You earned $3000 and 2 carrots and 25 quest points.", "requires_awardid": null, "requires_questid_completed": [], @@ -381031,12 +380236,10 @@ "id": 425, "notes": "Carrot Run #3", "title": "Carrot Run #3", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381055,7 +380258,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You completed Carrot Run #3! You earned $4000 and 2 carrots and 25 quest points.", "requires_awardid": null, "requires_questid_completed": [], @@ -381070,12 +380273,10 @@ "id": 426, "notes": "Carrot Run #4", "title": "Carrot Run #4", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381094,7 +380295,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You completed Carrot Run #4! You earned $4000 and 2 carrots and 25 quest points.", "requires_awardid": null, "requires_questid_completed": [], @@ -381109,12 +380310,10 @@ "id": 427, "notes": "Carrot Run #5", "title": "Carrot Run #5", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381133,7 +380332,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You completed Carrot Run #5! You earned $6000 and 2 carrots and 50 quest points.", "requires_awardid": null, "requires_questid_completed": [], @@ -381148,12 +380347,10 @@ "id": 428, "notes": "Carrot Run #6", "title": "Carrot Run #6", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381172,7 +380369,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You completed Carrot Run #6! You earned $6000 and 2 carrots and 50 quest points.", "requires_awardid": null, "requires_questid_completed": [], @@ -381187,12 +380384,10 @@ "id": 429, "notes": "Carrot Run #7", "title": "Carrot Run #7", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381211,7 +380406,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You completed Carrot Run #7! You earned $8000 and 2 carrots and 50 quest points.", "requires_awardid": null, "requires_questid_completed": [], @@ -381226,12 +380421,10 @@ "id": 430, "notes": "Carrot Run #8", "title": "Carrot Run #8", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381250,7 +380443,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You completed Carrot Run #8! You earned $8000 and 2 carrots and 50 quest points.", "requires_awardid": null, "requires_questid_completed": [], @@ -381265,12 +380458,10 @@ "id": 431, "notes": "Carrot Run #9", "title": "Carrot Run #9", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381289,7 +380480,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You completed Carrot Run #9! You earned $10,000 and 2 carrots and 75 quest points.", "requires_awardid": null, "requires_questid_completed": [], @@ -381304,12 +380495,10 @@ "id": 432, "notes": "Carrot Run #10", "title": "Carrot Run #10", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381328,7 +380517,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You completed Carrot Run #10! You earned $10,000 and 2 carrots and 75 quest points.", "requires_awardid": null, "requires_questid_completed": [], @@ -381342,16 +380531,14 @@ { "id": 433, "notes": "tuttle asks you to get supplies from general store", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -381372,13 +380559,11 @@ { "id": 434, "notes": "get box of supplies from Pheobe", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381407,13 +380592,11 @@ { "id": 435, "notes": "gve tuttles the box of supplies", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381432,7 +380615,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Oh, thanks. Now, I need this delivered. You wouldn't be able to do that, would you?", "requires_awardid": null, "requires_questid_completed": [], @@ -381446,16 +380629,14 @@ { "id": 436, "notes": "tuttle jumps you to lilac isle to give bailey supplies", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -381477,12 +380658,10 @@ "id": 437, "notes": "give bailey the box of supplies", "title": "Mr. Tuttle's Delivery", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381490,7 +380669,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 4000, "items_gained": [], "quest_points": 50, @@ -381511,16 +380690,14 @@ { "id": 438, "notes": "tuttle send you to lilac isle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -381528,7 +380705,7 @@ "warp_x": 625, "warp_y": 320, "success_message": "You have been sent to Lilac Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -381541,16 +380718,14 @@ { "id": 439, "notes": "bailey sends you to rock isle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -381558,7 +380733,7 @@ "warp_x": 647, "warp_y": 329, "success_message": "You have been sent to Rock Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -381571,16 +380746,14 @@ { "id": 440, "notes": "rocco sends you back to turtle isle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -381601,16 +380774,14 @@ { "id": 441, "notes": "bailey sends you to Turtle Isle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -381618,7 +380789,7 @@ "warp_x": 608, "warp_y": 320, "success_message": "You were sent back to Turtle Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -381631,13 +380802,11 @@ { "id": 442, "notes": "Rocco's buried treasure", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I've already told you. If you forgot, it's not my fault.", @@ -381661,17 +380830,15 @@ { "id": 443, "notes": "rocco's buried treasure", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 646, "y": 327 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381691,7 +380858,7 @@ "warp_x": null, "warp_y": null, "success_message": "You found 2 diamonds and $5000!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -381707,12 +380874,10 @@ "id": 444, "notes": "Pyramid Labyrinth Quest #6", "title": "Pyramid Treasure #6", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381746,12 +380911,10 @@ "id": 445, "notes": "Pyramid Labyrinth Quest #7", "title": "Pyramid Treasure #7", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381788,7 +380951,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381825,7 +380988,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -381859,12 +381022,10 @@ "id": 448, "notes": "play jumping scale for Sandra", "title": "Play for Sandra", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already played this song for Sandra.", @@ -381889,12 +381050,10 @@ "id": 449, "notes": "play a scale in thirds for Dixie", "title": "Play for Dixie", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already played this song for Dixie.", @@ -381919,12 +381078,10 @@ "id": 450, "notes": "Play Morning Mood for Heinrich", "title": "Play for Heinrich", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already played this song for Heinrich.", @@ -381949,12 +381106,10 @@ "id": 451, "notes": "Sandcastle Moat #11 SE of Santon", "title": "Sandcastle Moat #11", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -381979,12 +381134,10 @@ "id": 452, "notes": "Sandcastle Moat #12 Desert Isle bottom left", "title": "Sandcastle Moat #12", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -382009,12 +381162,10 @@ "id": 453, "notes": "Sandcastle Moat #13 smallest Sand isle", "title": "Sandcastle Moat #13", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -382039,12 +381190,10 @@ "id": 454, "notes": "Sandcastle Moat #14 2nd sand isle", "title": "Sandcastle Moat #14", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -382069,12 +381218,10 @@ "id": 455, "notes": "Sandcastle Moat #15 Last sand isle", "title": "Sandcastle Moat #15", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -382098,13 +381245,11 @@ { "id": 456, "notes": "Clementine Crate give out a free glass of lemonade", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -382133,16 +381278,14 @@ { "id": 457, "notes": "Sabella asks you to go pick up a package of horseshoes for her.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -382163,13 +381306,11 @@ { "id": 458, "notes": "Arthur gives you Apples' horseshoes.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382177,7 +381318,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -382199,12 +381340,10 @@ "id": 459, "notes": "Give Sabella Apple's horseshoes.", "title": "Apples' Horseshoes", - "requires_questid_npc": [ - 89 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382212,7 +381351,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 800, "items_gained": [], "quest_points": 25, @@ -382223,7 +381362,9 @@ "success_npc_chat": "Oh, thank you! Here's a little something for your troubles.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 89 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Bonsaiwolf", @@ -382233,16 +381374,14 @@ { "id": 460, "notes": "Salvador asks you to get markers from Percy", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -382263,13 +381402,11 @@ { "id": 461, "notes": "Get Markers from Percy", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382299,12 +381436,10 @@ "id": 462, "notes": "Give Markers to Salvador", "title": "Markers for an Artist", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382312,7 +381447,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 50, @@ -382320,7 +381455,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Markers for an Artist! You earned $3000 and 50 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -382333,17 +381468,15 @@ { "id": 463, "notes": "You find Gritty's grains of sand", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 530, "y": 257 }, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [ { @@ -382374,16 +381507,14 @@ { "id": 464, "notes": "Gritty asks you to find his blue grains of sand", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -382405,12 +381536,10 @@ "id": 465, "notes": "give Gritty his grains of sand", "title": "Gritty's Sand", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382439,16 +381568,14 @@ { "id": 466, "notes": "posy asks you to find flowers for her", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -382470,12 +381597,10 @@ "id": 467, "notes": "give Posy wildflowers and a rose", "title": "Posy's Wildflowers", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382508,16 +381633,14 @@ { "id": 468, "notes": "posy asks you to get her daisies", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -382539,12 +381662,10 @@ "id": 469, "notes": "give posy daisies and a rose", "title": "Posy's Daisies", - "requires_questid_npc": [ - 467 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382567,7 +381688,9 @@ "success_npc_chat": "Thank you so much. These are perfect. Here's a little something for your troubles.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 467 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Miranda", @@ -382577,13 +381700,11 @@ { "id": 470, "notes": "Salvador gives you the letter", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382599,7 +381720,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were given $2000 and the letter for Hidalgo.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -382613,12 +381734,10 @@ "id": 471, "notes": "you give Hidalgo the letter", "title": "Salvador's Letter Quest", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382649,13 +381768,11 @@ { "id": 472, "notes": "Odysseus gives you the plans.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382663,7 +381780,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -382684,13 +381801,11 @@ { "id": 473, "notes": "Rebecca needs 30 logs and 5 thin sticks to make the wooden horse.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382698,7 +381813,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -382719,13 +381834,11 @@ { "id": 474, "notes": "Rebecca makes you woodern horse", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 3000, "items_required": [ { @@ -382763,12 +381876,10 @@ "id": 475, "notes": "You give Odysseus the horse.", "title": "Odysseus' Trojan Miniature Horse", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382797,13 +381908,11 @@ { "id": 476, "notes": "Odysseus gives you the horse to take to Mona", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382811,7 +381920,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -382835,12 +381944,10 @@ "id": 477, "notes": "You give Mona the Horse ", "title": "Odysseus' Delivery", - "requires_questid_npc": [ - 475 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382848,7 +381955,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 6000, "items_gained": [], "quest_points": 50, @@ -382860,6 +381967,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 475, 476 ], "hide_reply_on_fail": false, @@ -382871,16 +381979,14 @@ { "id": 478, "notes": "Daria asks you to find the leader of the cat pack", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -382888,7 +381994,7 @@ "warp_x": null, "warp_y": null, "success_message": "Daria has asked you to find the cat pack leader.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -382901,16 +382007,14 @@ { "id": 479, "notes": "Wolf asks you to get medicine from the store", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -382918,7 +382022,7 @@ "warp_x": null, "warp_y": null, "success_message": "Wolf has asked you to go get medicine from the General Store.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -382931,13 +382035,11 @@ { "id": 480, "notes": "Get Sent to the vet for medicine", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "Wolf, huh? I bet that's why mice have started making homes in my stock room. I'd love to help, but I don't have any medicine in stock. Why don't you run over to the vet and ask Dr. Fletcher if he has any?", @@ -382961,13 +382063,11 @@ { "id": 481, "notes": "Get medicine", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -382975,7 +382075,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -382983,7 +382083,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were given Kitten Medicine for Wolf's kitten!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -382996,13 +382096,11 @@ { "id": 482, "notes": "Give medicine to Wolf", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -383010,7 +382108,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -383018,7 +382116,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've given Wolf the medicine for his kitten.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -383032,15 +382130,13 @@ "id": 483, "notes": "Return with news to Daria", "title": "Daria's Mice Trouble", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 50, @@ -383048,7 +382144,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Daria's Mice Trouble quest! You earned $2,500 and 50 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -383063,13 +382159,11 @@ { "id": 484, "notes": "Agree to help Rosemary by asking Veronica her favourite colour", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Have you asked Veronica her favorite color yet? Please try to hurry. I don't want to miss her birthday!", @@ -383093,16 +382187,14 @@ { "id": 485, "notes": "Veronica tells you her favourite colour", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -383125,13 +382217,11 @@ { "id": 486, "notes": "Tell Rosemary Veronica's favourite colour", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -383139,7 +382229,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -383162,16 +382252,14 @@ { "id": 487, "notes": "Agree to pick up the red dress from Rachel's Boutique for Rosemary", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 300, "items_gained": [], "quest_points": 0, @@ -383192,13 +382280,11 @@ { "id": 488, "notes": "Pick up the red dress from Rachel's Boutique for Rosemary", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 300, "items_required": [ { @@ -383230,12 +382316,10 @@ "id": 489, "notes": "Give the Red Dress to Rosemary", "title": "Rosemary's Present", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -383270,16 +382354,14 @@ { "id": 490, "notes": "Rebecca tells you what she needs to make a saddle form", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -383300,13 +382382,11 @@ { "id": 491, "notes": "give rebecca the wood for the saddle form", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [ { @@ -383339,13 +382419,11 @@ { "id": 492, "notes": "Rebecca makes the saddle form for you", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 300, "items_required": [ { @@ -383374,16 +382452,14 @@ { "id": 493, "notes": "spider tells you about a treasure", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -383404,17 +382480,15 @@ { "id": 494, "notes": "#1 palm tree clue to spider's treasure", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 465, "y": 360 }, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], "fail_npc_chat": "The writing in the web is fading. You can't quite read it anymore.", @@ -383440,17 +382514,15 @@ { "id": 495, "notes": "#2 palm tree clue to spider's treasure", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 452, "y": 359 }, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], "fail_npc_chat": "The writing in the web is fading. You can't quite read it anymore.", @@ -383476,17 +382548,15 @@ { "id": 496, "notes": "#3 rocks pile clue to spider's treasure", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 446, "y": 359 }, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], "fail_npc_chat": "The writing in the web is fading. You can't quite read it anymore.", @@ -383513,16 +382583,14 @@ "id": 497, "notes": "dig up spider's treasure", "title": "Spider's Treasure", - "requires_questid_npc": [ - 270 - ], + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 428, "y": 356 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -383542,6 +382610,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 270, 496 ], "hide_reply_on_fail": false, @@ -383553,16 +382622,14 @@ { "id": 498, "notes": "palila asks you to go see rebecca about her wood boxes", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 0, @@ -383583,16 +382650,14 @@ { "id": 499, "notes": "rebecca asks you to get wood while she makes the boxes", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -383613,13 +382678,11 @@ { "id": 500, "notes": "rebecca gives you the boxes for wood", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -383657,12 +382720,10 @@ "id": 501, "notes": "give Palila the bag of wooden boxes", "title": "Palila's Boxes", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -383691,13 +382752,11 @@ { "id": 502, "notes": "Palila asks you to deliver a box for her", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -383705,7 +382764,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -383727,12 +382786,10 @@ "id": 503, "notes": "Give Odysseus the box from Palila", "title": "Palila's Delivery #1", - "requires_questid_npc": [ - 501 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -383751,7 +382808,9 @@ "success_npc_chat": "Thank you. Tell Palila it is beautiful, as usual. Here's a little something for your trouble.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 501 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Miranda", @@ -383761,13 +382820,11 @@ { "id": 504, "notes": "Palila asks you to deliver a box to Accalia", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -383775,7 +382832,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -383797,12 +382854,10 @@ "id": 505, "notes": "give the wood box to Accalia", "title": "Palila's Delivery #2", - "requires_questid_npc": [ - 503 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -383821,7 +382876,9 @@ "success_npc_chat": "This is just great. Thank you. It is the perfect size for my cat's food. Here's a little something for your trouble.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 503 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Miranda", @@ -383831,13 +382888,11 @@ { "id": 506, "notes": "Palila gives you a box to deliver to Kaliska in Appleton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -383845,7 +382900,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -383866,13 +382921,11 @@ { "id": 507, "notes": "Kaliska asks you to deliver the box to Larissa", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -383906,12 +382959,10 @@ "id": 508, "notes": "Give Larissa the wood box", "title": "Palila's Delivery #3", - "requires_questid_npc": [ - 505 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -383919,7 +382970,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 50, @@ -383930,7 +382981,9 @@ "success_npc_chat": "Oh! It's so beautiful! Thanks for bringing this for me. I absolutely love it.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 505 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Miranda", @@ -383940,16 +382993,14 @@ { "id": 509, "notes": "Palila gives money for all the deliveries you did for her.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 0, @@ -383972,13 +383023,11 @@ { "id": 510, "notes": "floria hands out tea", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -383986,7 +383035,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -384007,13 +383056,11 @@ { "id": 511, "notes": "Floria asks you to have a necklace made for a friend", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -384021,7 +383068,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -384042,13 +383089,11 @@ { "id": 512, "notes": "give Sandra the amethyst necklace", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -384082,12 +383127,10 @@ "id": 513, "notes": "give Floria the note from Sandra", "title": "Floria's Gift", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -384095,7 +383138,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 150, @@ -384116,13 +383159,11 @@ { "id": 514, "notes": "Allaire gives $50 for feathers", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -384151,13 +383192,11 @@ { "id": 515, "notes": "Allaire gives $100 for a peacock feather", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -384186,13 +383225,11 @@ { "id": 516, "notes": "Allaire asks you to bring a note to Erebus and get a bag of feathers", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -384200,7 +383237,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -384221,13 +383258,11 @@ { "id": 517, "notes": "Caeralus gives you a bag of feathers and sends you to erebus", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -384235,7 +383270,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -384256,13 +383291,11 @@ { "id": 518, "notes": "Give Erebus Allaire's note and he jumps you back to Allaire.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -384292,12 +383325,10 @@ "id": 519, "notes": "Give Allaire the bag of feathers", "title": "Allaire's Feathers", - "requires_questid_npc": [ - 348 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -384316,7 +383347,9 @@ "success_npc_chat": "Oh, thank you so much. They're lovely.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 348 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "Miranda", @@ -384326,16 +383359,14 @@ { "id": 520, "notes": "Agree to help Demetrius with his poem", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -384343,7 +383374,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have agreed to help Demetrius with his poem.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -384356,16 +383387,14 @@ { "id": 521, "notes": "Be asked by Demetrius to search around the willow tree", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -384373,7 +383402,7 @@ "warp_x": null, "warp_y": null, "success_message": "Demetrius has asked you to search around the weeping willow.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -384386,16 +383415,14 @@ { "id": 522, "notes": "Accept Robin's Invitation to his home", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -384403,7 +383430,7 @@ "warp_x": 646, "warp_y": 143, "success_message": "Robin invited you to his home!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -384418,16 +383445,14 @@ { "id": 523, "notes": "Attempt to hit saddle isle ogre #1", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -384448,23 +383473,21 @@ { "id": 524, "notes": "Saddle Isle Unicorn Kicks you out of forest", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": 637, "warp_y": 171, - "success_message": "", + "success_message": null, "success_npc_chat": "*** POOF *** Somehow the Unicorn sent you away!!", "requires_awardid": null, "requires_questid_completed": [], @@ -384478,24 +383501,22 @@ { "id": 525, "notes": "Saddle Isle Unicorn Start of Ogre #1 quest MARKER", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -384508,24 +383529,22 @@ { "id": 526, "notes": "You have tea at Robin's house", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -384538,13 +383557,11 @@ { "id": 527, "notes": "Have tea with Robin", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -384552,7 +383569,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -384573,13 +383590,11 @@ { "id": 528, "notes": "Robin gives you some Cake to take home", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -384587,7 +383602,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -384595,7 +383610,7 @@ "warp_x": null, "warp_y": null, "success_message": "Robin gave you a piece of Cake.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -384608,16 +383623,14 @@ { "id": 529, "notes": "Robin jumps you out of his house", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -384625,7 +383638,7 @@ "warp_x": 646, "warp_y": 144, "success_message": "You find yourself back in the open, beside the willow tree.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -384638,16 +383651,14 @@ { "id": 530, "notes": "Robin tells you about the willow tree's name", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -384655,7 +383666,7 @@ "warp_x": null, "warp_y": null, "success_message": "Robin has told you how to name the willow tree!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -384668,16 +383679,14 @@ { "id": 531, "notes": "Offer to find the 5 ruby necklaces the Ogre wants to leave unicorn alone MARKER", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -384685,7 +383694,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have offered to bring 5 gold Ruby Necklaces to the Ogre of Saddle Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -384698,13 +383707,11 @@ { "id": 532, "notes": "Give the ogre the 5 gold ruby necklaces", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -384734,12 +383741,10 @@ "id": 533, "notes": "Unicorns reward for removing ogre", "title": "Mystic Forest Myth #1", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -384770,24 +383775,22 @@ { "id": 534, "notes": "Offer to Help Young Unicorn on Saddle Isle MARKER", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -384800,13 +383803,11 @@ { "id": 535, "notes": "Ask the YOung Ogre to go off into the Forest, leaving the unicorn alone.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already asked the Ogre this.", @@ -384816,7 +383817,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Okay... I will... Just don't be mad still...", "requires_awardid": null, "requires_questid_completed": [], @@ -384830,24 +383831,22 @@ { "id": 536, "notes": "tell young unicorn that the young ogre is gone now. MARKER", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 5, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -384861,12 +383860,10 @@ "id": 537, "notes": "Mother unicorn rewards for helping child unicorn with young ogre", "title": "Mystic Forest Myth #2", - "requires_questid_npc": [ - 533 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -384886,6 +383883,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 533, 535 ], "hide_reply_on_fail": false, @@ -384897,16 +383895,14 @@ { "id": 538, "notes": "Rhianna asks you to go get her son for her and get cotton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -384927,13 +383923,11 @@ { "id": 539, "notes": "Tell Robert to go home to his mom", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "Ah, man. I was having so much fun, too.", @@ -384958,12 +383952,10 @@ "id": 540, "notes": "give Rhianna the cotton", "title": "Rhianna's Son", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -384993,15 +383985,13 @@ "id": 541, "notes": "Give Demetrius the tree's name ", "title": "Demetrius' Poetry Woes", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 50, @@ -385009,7 +383999,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Demetrius' Poem Quest! You earned $3000 and 50 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -385022,17 +384012,15 @@ { "id": 542, "notes": "Dig to get into Robin's house", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 646, "y": 144 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -385043,7 +384031,7 @@ "warp_x": 646, "warp_y": 143, "success_message": "You got into Robin's house!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -385058,16 +384046,14 @@ { "id": 543, "notes": "Agree to help Robin find his Wishing Box", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -385075,7 +384061,7 @@ "warp_x": null, "warp_y": null, "success_message": "Robin has asked you to find his Wishing Box in the forest.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -385088,13 +384074,11 @@ { "id": 544, "notes": "Rose gives you the Wishing Box", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385102,7 +384086,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -385110,7 +384094,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were given Robin's Wishing Box.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -385125,13 +384109,11 @@ { "id": 545, "notes": "You give the Wishing Box to Robin", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385147,7 +384129,7 @@ "warp_x": null, "warp_y": null, "success_message": "You gave the Wishing Box to Robin.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -385160,24 +384142,22 @@ { "id": 546, "notes": "Dieter's riddle #1", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 5, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -385190,13 +384170,11 @@ { "id": 551, "notes": "Give Dieter item to answer riddle #3", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385225,13 +384203,11 @@ { "id": 547, "notes": "Give Dieter item to answer riddle #1", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385260,24 +384236,22 @@ { "id": 548, "notes": "Dieter's riddle #2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 10, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -385290,24 +384264,22 @@ { "id": 550, "notes": "Dieter's riddle #3", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 5, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -385320,13 +384292,11 @@ { "id": 549, "notes": "Give Dieter item to answer riddle #2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385359,24 +384329,22 @@ { "id": 552, "notes": "Dieter's riddle #4", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 5, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -385389,13 +384357,11 @@ { "id": 553, "notes": "Give Dieter item to answer riddle #4", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385424,24 +384390,22 @@ { "id": 554, "notes": "Dieter's riddle #5", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 5, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -385454,13 +384418,11 @@ { "id": 555, "notes": "Give Dieter item to answer riddle #5", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385489,24 +384451,22 @@ { "id": 556, "notes": "Dieter's riddle #6", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 5, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -385519,13 +384479,11 @@ { "id": 557, "notes": "Give Dieter item to answer riddle #6", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385554,24 +384512,22 @@ { "id": 558, "notes": "Dieter's riddle #7", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 5, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -385584,13 +384540,11 @@ { "id": 559, "notes": "Give Dieter item to answer riddle #7", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385619,24 +384573,22 @@ { "id": 560, "notes": "Dieter's riddle #8", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 5, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -385649,13 +384601,11 @@ { "id": 561, "notes": "Give Dieter item to answer riddle #8", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385684,24 +384634,22 @@ { "id": 562, "notes": "Dieter's riddle #9", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 5, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -385714,13 +384662,11 @@ { "id": 563, "notes": "Give Dieter item to answer riddle #9", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385749,24 +384695,22 @@ { "id": 564, "notes": "Dieter's riddle #10", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 5, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -385780,12 +384724,10 @@ "id": 565, "notes": "Give Dieter item to answer riddle #10", "title": "Dieter's Scavenger Hunt", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385814,13 +384756,11 @@ { "id": 566, "notes": "You get your wish for a Dinosaur Bone from Robin.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385828,7 +384768,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -385836,7 +384776,7 @@ "warp_x": null, "warp_y": null, "success_message": "Robin gave you the Dinosaur Bone you wished for!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -385851,13 +384791,11 @@ { "id": 567, "notes": "You get your wish of a Mouse from Robin.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385865,7 +384803,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -385873,7 +384811,7 @@ "warp_x": null, "warp_y": null, "success_message": "Robin gave you the pet Mouse you wished for!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -385888,13 +384826,11 @@ { "id": 568, "notes": "You get your wish of a Seashell Necklace from Robin.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -385902,7 +384838,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -385910,7 +384846,7 @@ "warp_x": null, "warp_y": null, "success_message": "Robin gave you the Seashell Necklace you wished for!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -385925,16 +384861,14 @@ { "id": 569, "notes": "Get Password at Rider/Saddle bridge correct", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -385956,15 +384890,13 @@ "id": 570, "notes": "Get money from Robin and complete his quest.", "title": "Robin's Lost Trinket", - "requires_questid_npc": [ - 541 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 50, @@ -385972,10 +384904,11 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Robin's Quest! You earned $1000 and 50 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 541, 545 ], "hide_reply_on_fail": false, @@ -385987,16 +384920,14 @@ { "id": 572, "notes": "Will asks you to bring him some food and water", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -386004,7 +384935,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have agreed to get some food and water for Will.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -386017,13 +384948,11 @@ { "id": 577, "notes": "Martha gives you a smore", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 4, + "max_repeats": 4, "money_cost": 0, "items_required": [ { @@ -386052,13 +384981,11 @@ { "id": 578, "notes": "Martha gives you food and water to take to Will", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -386066,7 +384993,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -386074,7 +385001,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were given a pack filled with food and water.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -386089,13 +385016,11 @@ { "id": 579, "notes": "Give Will the food and water.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -386103,7 +385028,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -386111,7 +385036,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have given Will the pack with food and water.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -386125,12 +385050,10 @@ "id": 580, "notes": "Snow Cave #1", "title": "Snow Cave #1", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already successfully completed this cave.", @@ -386155,12 +385078,10 @@ "id": 581, "notes": "Snow Cave #2", "title": "Snow Cave #2", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already successfully completed this cave.", @@ -386185,12 +385106,10 @@ "id": 582, "notes": "Snow Cave #3", "title": "Snow Cave #3", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already successfully completed this cave.", @@ -386215,12 +385134,10 @@ "id": 583, "notes": "Snow Cave #4", "title": "Snow Cave #4", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already successfully completed this cave.", @@ -386245,12 +385162,10 @@ "id": 584, "notes": "Snow Cave #5", "title": "Snow Cave #5", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already successfully completed this cave.", @@ -386275,12 +385190,10 @@ "id": 585, "notes": "Snow Cave #6", "title": "Snow Cave #6", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already successfully completed this cave.", @@ -386305,12 +385218,10 @@ "id": 586, "notes": "Snow Cave #7", "title": "Snow Cave #7", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already successfully completed this cave.", @@ -386335,12 +385246,10 @@ "id": 587, "notes": "Snow Cave #8", "title": "Snow Cave #8", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already successfully completed this cave.", @@ -386365,12 +385274,10 @@ "id": 588, "notes": "Snow Cave #9", "title": "Snow Cave #9", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already successfully completed this cave.", @@ -386394,16 +385301,14 @@ { "id": 589, "notes": "You agree to find and dig up Will's money", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -386411,7 +385316,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have been asked to find Will's buried money on Horse Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -386424,16 +385329,14 @@ { "id": 590, "notes": "Agree to get bugs for Karl", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -386455,12 +385358,10 @@ "id": 591, "notes": "Give Karl a scorpion and grasshopper", "title": "Karl's Preservation", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -386494,12 +385395,10 @@ "id": 592, "notes": "Play an original song for Kyleigh", "title": "Play for Kyleigh", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already played this song for Kyleigh.", @@ -386523,24 +385422,22 @@ { "id": 593, "notes": "agree to play the song for Kyleigh, go find clues", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -386553,13 +385450,11 @@ { "id": 594, "notes": "Oswald gives you a reward for letting him know Kyleigh liked his song", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -386593,12 +385488,10 @@ "id": 595, "notes": "Play Sing Sweet Nightingale for Anika and Soren", "title": "Play for Soren", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already played this song for Soren.", @@ -386622,13 +385515,11 @@ { "id": 596, "notes": "Yorick gives stew", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -386636,7 +385527,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -386657,16 +385548,14 @@ { "id": 597, "notes": "Agree to get cloth for Linnea", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -386688,12 +385577,10 @@ "id": 598, "notes": "Give Linnea 5 pieces of cloth", "title": "Linnea's Cloth", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -386722,13 +385609,11 @@ { "id": 599, "notes": "Agree to get dying materials for Linnea", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I need 20 blackberries and 20 raspberries. They both grow on bushes, so make sure you check those, not the grass.", @@ -386753,12 +385638,10 @@ "id": 600, "notes": "Give Linnea blackberries and raspberries", "title": "Linnea's Dye", - "requires_questid_npc": [ - 598 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -386781,7 +385664,9 @@ "success_npc_chat": "Oh, you found some. Great. Thank you. Here's a bit for your trouble.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 598 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Miranda", @@ -386791,17 +385676,15 @@ { "id": 601, "notes": "You dig up Will's money", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 609, "y": 238 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -386812,7 +385695,7 @@ "warp_x": null, "warp_y": null, "success_message": "You dug up Will's buried money, a total of $5000.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -386827,16 +385710,14 @@ { "id": 602, "notes": "Agree to get gems for Karl", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -386858,12 +385739,10 @@ "id": 603, "notes": "Give Karl the gems and agates", "title": "Karl's Gems", - "requires_questid_npc": [ - 591 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -386886,7 +385765,9 @@ "success_npc_chat": "That's great. Thanks for all your help. Here's a little something for your trouble.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 591 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Miranda", @@ -386896,16 +385777,14 @@ { "id": 604, "notes": "Agree to get manifests from ghost ships for Captain Jack", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -386913,7 +385792,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were asked by Captain Jack to get three Ship Manifests from the Ghost Ships.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -386926,13 +385805,11 @@ { "id": 605, "notes": "Give ghost thirty sapphires", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -386965,24 +385842,22 @@ { "id": 606, "notes": "Agree to get ghost 30 sapphires", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -386995,24 +385870,22 @@ { "id": 607, "notes": "Agree to get ghost 30 emeralds", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -387025,13 +385898,11 @@ { "id": 608, "notes": "Give Ghost 30 emeralds", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387064,24 +385935,22 @@ { "id": 609, "notes": "Agree to give ghost 30 rubies.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -387094,13 +385963,11 @@ { "id": 610, "notes": "Give Ghost 30 Rubies", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387134,12 +386001,10 @@ "id": 611, "notes": "Give Captain Jack the Manifests", "title": "Captain Jack's Manifests", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387172,16 +386037,14 @@ { "id": 612, "notes": "Bridge Troll puts you back on Rider Isle side of Bridge", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -387202,16 +386065,14 @@ { "id": 613, "notes": "Pirate guard jumps from skull to middle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -387232,16 +386093,14 @@ { "id": 614, "notes": "Pirate guard jumps from bones to middle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -387262,16 +386121,14 @@ { "id": 615, "notes": "Password: Matey, from middle isle to Crossbones", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -387292,16 +386149,14 @@ { "id": 616, "notes": "Password:landlubber, jumps from middle island to skull", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -387322,16 +386177,14 @@ { "id": 617, "notes": "Agree to dig around shipwrecks for chests", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -387352,17 +386205,15 @@ { "id": 618, "notes": "dig up a chest by ship parts", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 898, "y": 102 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387393,17 +386244,15 @@ { "id": 619, "notes": "dig up a chest by ship parts", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 909, "y": 118 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387434,17 +386283,15 @@ { "id": 620, "notes": "dig up a chest by ship parts", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 886, "y": 59 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387475,17 +386322,15 @@ { "id": 621, "notes": "dig up a chest by ship parts", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 934, "y": 110 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387516,17 +386361,15 @@ { "id": 622, "notes": "dig up a chest by ship parts", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 863, "y": 81 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387558,12 +386401,10 @@ "id": 623, "notes": "Give Cap'n Solomon the chests", "title": "Captain Solomon's Chests", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387596,17 +386437,15 @@ { "id": 638, "notes": "Dig up an anchor for black bart", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 956, "y": 77 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387637,16 +386476,14 @@ { "id": 624, "notes": "Agree to find Maddog's hat", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -387667,17 +386504,15 @@ { "id": 625, "notes": "Find Maddog Robert's hat", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 937, "y": 37 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387708,16 +386543,14 @@ { "id": 626, "notes": "Agree to make Maddog Robert a new hat", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -387738,13 +386571,11 @@ { "id": 627, "notes": "Give Barb Sower the old hat and she tells you what's needed to make a new one", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387773,13 +386604,11 @@ { "id": 628, "notes": "Give Barb 2 cloth and 20 raspberries for new pirate hat", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387817,12 +386646,10 @@ "id": 629, "notes": "Give Maddog his new hat", "title": "Maddog Robert's Hat", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387859,16 +386686,14 @@ { "id": 630, "notes": "Agree to warn people about Bill's falling sky", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -387889,13 +386714,11 @@ { "id": 631, "notes": "Shimm gives you a note tells you to get a giant coconut", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387903,7 +386726,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -387925,12 +386748,10 @@ "id": 632, "notes": "Give Bill the note and the coconut", "title": "One Eyed Bill's Doomsday", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -387967,16 +386788,14 @@ { "id": 633, "notes": "Crossbones ship to Bird Isle ship", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -387984,7 +386803,7 @@ "warp_x": 447, "warp_y": 125, "success_message": "You are now near Bird Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -387997,16 +386816,14 @@ { "id": 634, "notes": "Skull ship to Saddle Isle ship", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388014,7 +386831,7 @@ "warp_x": 705, "warp_y": 154, "success_message": "You are now near Saddle Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -388027,16 +386844,14 @@ { "id": 635, "notes": "Saddle Isle ship to Skull Ship", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388044,7 +386859,7 @@ "warp_x": 961, "warp_y": 46, "success_message": "You are now near the skull on Pirate Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -388057,16 +386872,14 @@ { "id": 636, "notes": "Bird Isle Ship to Crossbones Ship", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388074,7 +386887,7 @@ "warp_x": 894, "warp_y": 98, "success_message": "You are now near the crossbones on Pirate Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -388087,16 +386900,14 @@ { "id": 637, "notes": "Agree to get more anchors for black bart", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388117,17 +386928,15 @@ { "id": 639, "notes": "Dig up an anchor for black bart", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 932, "y": 39 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388158,17 +386967,15 @@ { "id": 640, "notes": "Dig up an anchor for black bart", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 873, "y": 90 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388200,12 +387007,10 @@ "id": 643, "notes": "Give Black Bart the Anchors", "title": "Black Bart's Collection", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388242,17 +387047,15 @@ { "id": 641, "notes": "Dig up an anchor for black bart", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 936, "y": 111 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388284,12 +387087,10 @@ "id": 644, "notes": "Jenning's Deck Swab", "title": "Jenning's Deck Swab", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388323,12 +387124,10 @@ "id": 645, "notes": "Roger's Deck Swab", "title": "Roger's Deck Swab", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388362,12 +387161,10 @@ "id": 646, "notes": "George's Deck Swab", "title": "George's Deck Swab", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388401,12 +387198,10 @@ "id": 647, "notes": "Breanan's Deck Swab", "title": "Breanan's Deck Swab", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388439,16 +387234,14 @@ { "id": 648, "notes": "Agree to get cat treats for Britt", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388469,13 +387262,11 @@ { "id": 649, "notes": "Get treats from Iggy Chewtoy", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388483,7 +387274,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388505,12 +387296,10 @@ "id": 650, "notes": "Give Britt the cat treats", "title": "Britt's Cat Treats", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388539,16 +387328,14 @@ { "id": 651, "notes": "Agree to help find Matti using Mikko's dog", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388569,16 +387356,14 @@ { "id": 652, "notes": "tell barney you'll meet him at the 2nd spot", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388586,7 +387371,7 @@ "warp_x": null, "warp_y": null, "success_message": "You agreed to meet Barney at the other snow cave to the west.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -388599,16 +387384,14 @@ { "id": 653, "notes": "Tell Barney you'll meet him at the 3rd spot", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388616,7 +387399,7 @@ "warp_x": null, "warp_y": null, "success_message": "You agreed to meet Barney at the next snow cave to the west.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -388629,16 +387412,14 @@ { "id": 654, "notes": "Tell Barney you meet him at 4th spot where Matti is", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388646,7 +387427,7 @@ "warp_x": null, "warp_y": null, "success_message": "You agreed to meet Barney at the next snow cave to the southwest.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -388659,16 +387440,14 @@ { "id": 655, "notes": "Tell Matti to follow Barney to Mikko's", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388676,7 +387455,7 @@ "warp_x": null, "warp_y": null, "success_message": "You told Matti to follow Barney back home.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -388690,15 +387469,13 @@ "id": 656, "notes": "Mikko gives reward for finding Matti", "title": "Mikko's Lost Friend", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 8000, "items_gained": [], "quest_points": 50, @@ -388706,7 +387483,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Mikko's Lost Friend! You earned $8,000 and 50 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -388719,13 +387496,11 @@ { "id": 657, "notes": "Agree to bring a note and rose to cate", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388737,7 +387512,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388758,13 +387533,11 @@ { "id": 658, "notes": "Give Cate the note and rose", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388797,13 +387570,11 @@ { "id": 659, "notes": "Get a note and gold coin from Cate", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388815,7 +387586,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388837,12 +387608,10 @@ "id": 660, "notes": "Give Nathaniel Cate's 'gifts'", "title": "Squalid Nathaniel's Note", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388883,16 +387652,14 @@ { "id": 661, "notes": "Agree to find things for Penelope to do (gives out bridge password)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388913,13 +387680,11 @@ { "id": 662, "notes": "Demetrius gives you a small collection of poems to bring to Penelope", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -388927,7 +387692,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -388935,7 +387700,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were given a Small Collection of Poems.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -388949,12 +387714,10 @@ "id": 663, "notes": "Give Will his money and finish his quest", "title": "The Shipwrecked Sailor", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 5000, "items_required": [ { @@ -388985,13 +387748,11 @@ { "id": 664, "notes": "Give Penelope poems from demetrius", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -389020,13 +387781,11 @@ { "id": 665, "notes": "Get magic book from Robin", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -389034,7 +387793,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -389042,7 +387801,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were given a Magical Book.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -389055,13 +387814,11 @@ { "id": 666, "notes": "Give Penelope Robin's magical book", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -389090,13 +387847,11 @@ { "id": 667, "notes": "Get riddle book from Dieter", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -389104,7 +387859,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -389112,7 +387867,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were given a Book of Riddles.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -389125,13 +387880,11 @@ { "id": 668, "notes": "Give riddle book from Dieter to Penelope", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -389160,13 +387913,11 @@ { "id": 669, "notes": "Get smores from Martha", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -389174,7 +387925,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -389182,7 +387933,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were given 3 Smores.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -389195,13 +387946,11 @@ { "id": 670, "notes": "Give Penelope 3 smores", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -389230,13 +387979,11 @@ { "id": 671, "notes": "Get mystical book from Oswald", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -389244,7 +387991,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -389252,7 +387999,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were given a Mystical Book.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -389265,13 +388012,11 @@ { "id": 672, "notes": "Give mystical book to Penelope", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -389300,13 +388045,11 @@ { "id": 673, "notes": "get new chatpoint after you've collected everything for penelope", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 10, + "max_repeats": 10, "money_cost": 0, "items_required": [], "fail_npc_chat": "Did you talk to Robin yet? He's that nifty little elf that lives in the willow tree.", @@ -389316,7 +388059,7 @@ "goto_npc_chatpoint": 18, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Thank you so much. That means a lot to me. I have a lot of things to read and do now. Hopefully I'll be out of my mother's hair now.", "requires_awardid": null, "requires_questid_completed": [], @@ -389333,15 +388076,13 @@ "id": 674, "notes": "Paige gives reward for poem book", "title": "Penelope's Distraction #1", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 25, @@ -389363,15 +388104,13 @@ "id": 675, "notes": "Paige gives reward for giving Penelope magic book", "title": "Penelope's Distraction #5", - "requires_questid_npc": [ - 541 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 50, @@ -389382,7 +388121,9 @@ "success_npc_chat": "That's just great. Thank you. Here's a little something for your trouble.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 541 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Miranda", @@ -389393,15 +388134,13 @@ "id": 676, "notes": "Paige gives reward for giving riddle book to penelope", "title": "Penelope's Distraction #2", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 25, @@ -389423,15 +388162,13 @@ "id": 677, "notes": "Paige gives reward for giving Penelope smores", "title": "Penelope's Distraction #3", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 25, @@ -389453,15 +388190,13 @@ "id": 678, "notes": "Paige gives reward for giving Penelope mystical book", "title": "Penelope's Distraction #4", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 25, @@ -389482,13 +388217,11 @@ { "id": 679, "notes": "Joe Longbeard sends you to Earton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 500, "items_required": [], "fail_npc_chat": "I need $500. Ye are short.", @@ -389512,13 +388245,11 @@ { "id": 680, "notes": "crossbones pirate jumps you to pirate ship", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -389547,13 +388278,11 @@ { "id": 681, "notes": "Skull pirate jumps you to pirate ship", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -389582,24 +388311,22 @@ { "id": 682, "notes": "Oswald tells you Kyleigh's some he wrote", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -389612,16 +388339,14 @@ { "id": 683, "notes": "Agree to buy a yellow present for Svea to give to her sister.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -389642,13 +388367,11 @@ { "id": 684, "notes": "Stella styles sells you a yellow dress", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 700, "items_required": [ { @@ -389678,12 +388401,10 @@ "id": 685, "notes": "Give Svea the yellow dress", "title": "Svea's Birthday Gift", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -389712,16 +388433,14 @@ { "id": 686, "notes": "Agree to get Svea's present for Signe (red dress)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -389742,13 +388461,11 @@ { "id": 687, "notes": "Stella Styles sells you the red dress", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 700, "items_required": [ { @@ -389778,12 +388495,10 @@ "id": 688, "notes": "Give Signe the dress", "title": "Signe's Birthday Gift", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -389812,16 +388527,14 @@ { "id": 689, "notes": "Agree to help Kier", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -389829,7 +388542,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have agreed to find 17 Peacock Feathers for Kier.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -389843,12 +388556,10 @@ "id": 690, "notes": "Give Kier 17 Peacock Feathers and complete his quest", "title": "Kier's Dream", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -389883,16 +388594,14 @@ { "id": 691, "notes": "Dusty sends you to Dust Isle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -389913,16 +388622,14 @@ { "id": 692, "notes": "Fitzgerald sends you back", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -389943,16 +388650,14 @@ { "id": 693, "notes": "Agree to find Leuko, the eagle, for Nina", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -389973,16 +388678,14 @@ { "id": 694, "notes": "Mrs. Claus sends player to find carrot treats for the Reindeer", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1000, + "max_repeats": 1000, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -390003,13 +388706,11 @@ { "id": 695, "notes": "Player gives carrot treats to the reindeer.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -390038,16 +388739,14 @@ { "id": 696, "notes": "Offering to get cattails for Arbuckle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1000, + "max_repeats": 1000, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390069,12 +388768,10 @@ "id": 697, "notes": "returning 10 cat tails to Arbuckle", "title": "Arbuckle's Cattails", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -390103,16 +388800,14 @@ { "id": 698, "notes": "Agree to tell Nina why Leuko left and tell her she's injured", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390133,16 +388828,14 @@ { "id": 699, "notes": "Agree to get medicine from Appleton vet", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390163,13 +388856,11 @@ { "id": 700, "notes": "Get bird medicine from Henry Heimlich", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -390177,7 +388868,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390199,12 +388890,10 @@ "id": 701, "notes": "Give Eagle medicine to Nina", "title": "Nina's Bird Woes", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -390234,12 +388923,10 @@ "id": 702, "notes": "Mrs. Claus Rewards Player for bringing carrot treats to Reindeer", "title": "Reindeer's Treats", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Please do hurry and give the reindeer his carrot treats.", @@ -390265,16 +388952,14 @@ { "id": 703, "notes": "Scurvy Gums Morgan asks you to get 10 giant coconuts", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390282,7 +388967,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have been asked to find 10 Giant Coconuts for Scurvy Gums Morgan.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -390295,13 +388980,11 @@ { "id": 704, "notes": "Give Scurvy Gums Morgan 10 giant coconuts", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -390330,13 +389013,11 @@ { "id": 705, "notes": "get giant coconuts from Scurvy Gums Morgan to deliver to Windy Pick", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -390344,7 +389025,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390352,7 +389033,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were given 10 Giant Coconuts for Windy Pick and $1000 for traveling money.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -390366,12 +389047,10 @@ "id": 706, "notes": "Deliver giant coconuts to Windy Pick", "title": "Scurvy Gums' Delivery", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -390401,12 +389080,10 @@ "id": 707, "notes": "Sandcastle Moat #16 Dust Isle", "title": "Sandcastle Moat #16", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -390431,12 +389108,10 @@ "id": 708, "notes": "Sandcastle Moat #17 Snowball Isle", "title": "Sandcastle Moat #17", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -390461,12 +389136,10 @@ "id": 709, "notes": "Sandcastle Moat #18 Ice Isle", "title": "Sandcastle Moat #18", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -390491,12 +389164,10 @@ "id": 710, "notes": "Sandcastle Moat #19 Crossbones east end bone", "title": "Sandcastle Moat #19", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -390520,16 +389191,14 @@ { "id": 711, "notes": "Agree to get hay for Dwight Staebulman", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390550,13 +389219,11 @@ { "id": 712, "notes": "Give Dwight Staebulman 40 hay bales", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -390585,16 +389252,14 @@ { "id": 713, "notes": "Agree to get 20 ferns and 20 dandelions for Dwight Staebulman", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390616,12 +389281,10 @@ "id": 714, "notes": "Give Dwight Staebulman ferns and dandelions", "title": "Staebulman's Homemade Feed", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -390658,13 +389321,11 @@ { "id": 715, "notes": "Give Eddie food", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -390693,16 +389354,14 @@ { "id": 716, "notes": "Crazy Eddie sends you to Saddle Isle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390710,7 +389369,7 @@ "warp_x": 700, "warp_y": 188, "success_message": "Crazy Eddie sent you to Saddle Isle!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -390723,16 +389382,14 @@ { "id": 717, "notes": "Atreyu - Accept his Quest to find Artax", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390753,16 +389410,14 @@ { "id": 718, "notes": "Elizabeth asks you to get 50 pinecones", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390770,7 +389425,7 @@ "warp_x": null, "warp_y": null, "success_message": "Elizabeth asked you to get 50 Pinecones!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -390783,13 +389438,11 @@ { "id": 719, "notes": "GIve 50 pinecones to Elizabeth", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [ { @@ -390818,16 +389471,14 @@ { "id": 720, "notes": "Falcor First Island Jump", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390848,16 +389499,14 @@ { "id": 721, "notes": "Falcor Second Island Jump", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390878,16 +389527,14 @@ { "id": 722, "notes": "Falcor Third Island Jump", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390908,16 +389555,14 @@ { "id": 723, "notes": "Falcor Fourth Island Jump", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390938,16 +389583,14 @@ { "id": 724, "notes": "Falcor Fifth Island Jump", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390968,16 +389611,14 @@ { "id": 725, "notes": "Falcor Island Jump Home", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -390998,13 +389639,11 @@ { "id": 726, "notes": "Sara gives you a strawberry", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 15, + "max_repeats": 15, "money_cost": 0, "items_required": [ { @@ -391033,16 +389672,14 @@ { "id": 727, "notes": "Hudson sends you to Sara's vacation home", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -391050,7 +389687,7 @@ "warp_x": 689, "warp_y": 256, "success_message": "Hudson sent you to Sara's Island Retreat!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -391063,13 +389700,11 @@ { "id": 728, "notes": "Bring Artax Home to Atreyu", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already done this.", @@ -391080,7 +389715,7 @@ "warp_x": 601, "warp_y": 298, "success_message": "You have returned Artax home. You should talk to Atreyu now.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -391094,15 +389729,13 @@ "id": 729, "notes": "Talk to atreyu for reward after recovering his horse Artax", "title": "Atreyu's Steed", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 100, @@ -391125,16 +389758,14 @@ { "id": 730, "notes": "Agree to help Leuko find her missing egg", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -391155,17 +389786,15 @@ { "id": 731, "notes": "Find squirrel prints, hint to Leuko's egg", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 292, "y": 382 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -391191,17 +389820,15 @@ { "id": 732, "notes": "Find squirrel footpronts looking for Leuko's missing egg", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 287, "y": 384 }, "tracked": false, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -391227,13 +389854,11 @@ { "id": 733, "notes": "Get Leuko's egg from Scooter", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391241,7 +389866,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -391263,12 +389888,10 @@ "id": 734, "notes": "Give Leuko her egg", "title": "Leuko's Missing Egg", - "requires_questid_npc": [ - 701 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391284,7 +389907,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 75, @@ -391295,7 +389918,9 @@ "success_npc_chat": "Haawk. (She grabs a couple things by her talons and throws them down to you after grabbing her egg.)", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 701 + ], "hide_reply_on_fail": false, "difficulty": "Advanced", "author": "Miranda", @@ -391305,16 +389930,14 @@ { "id": 735, "notes": "Offer to dig up soft rocks for Atreyu Quest #2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -391335,17 +389958,15 @@ { "id": 736, "notes": "DIg Up a soft rock for Atreyu Quest #2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 620, "y": 295 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391360,7 +389981,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You found a Soft Rock! This should be just what Atreyu was looking for.", "requires_awardid": null, "requires_questid_completed": [], @@ -391376,17 +389997,15 @@ { "id": 737, "notes": "DIg Up a soft rock for Atreyu Quest #2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 641, "y": 287 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391401,7 +390020,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You found a Soft Rock! This should be just what Atreyu was looking for.", "requires_awardid": null, "requires_questid_completed": [], @@ -391417,17 +390036,15 @@ { "id": 738, "notes": "DIg Up a soft rock for Atreyu Quest #2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 642, "y": 276 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391442,7 +390059,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You found a Soft Rock! This should be just what Atreyu was looking for.", "requires_awardid": null, "requires_questid_completed": [], @@ -391458,17 +390075,15 @@ { "id": 739, "notes": "DIg Up a soft rock for Atreyu Quest #2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 641, "y": 277 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391483,7 +390098,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You found a Soft Rock! This should be just what Atreyu was looking for.", "requires_awardid": null, "requires_questid_completed": [], @@ -391499,17 +390114,15 @@ { "id": 740, "notes": "DIg Up a soft rock for Atreyu Quest #2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 625, "y": 280 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391524,7 +390137,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You found a Soft Rock! This should be just what Atreyu was looking for.", "requires_awardid": null, "requires_questid_completed": [], @@ -391540,17 +390153,15 @@ { "id": 741, "notes": "DIg Up a soft rock for Atreyu Quest #2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 626, "y": 280 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391565,7 +390176,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You found a Soft Rock! This should be just what Atreyu was looking for.", "requires_awardid": null, "requires_questid_completed": [], @@ -391581,17 +390192,15 @@ { "id": 742, "notes": "DIg Up a soft rock for Atreyu Quest #2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 626, "y": 281 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391606,7 +390215,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You found a Soft Rock! This should be just what Atreyu was looking for.", "requires_awardid": null, "requires_questid_completed": [], @@ -391623,12 +390232,10 @@ "id": 743, "notes": "Atreyu Accepts the 7 Soft Rocks to complete Quest", "title": "Atreyu's Hard Candy", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391657,16 +390264,14 @@ { "id": 744, "notes": "Agree to get Pip ferns for his home", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -391688,12 +390293,10 @@ "id": 745, "notes": "Give Pip 10 ferns", "title": "Pip's Dolphin Isle Shelter", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391730,16 +390333,14 @@ { "id": 746, "notes": "Agree to get acorns and mushrooms for Pip", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -391761,12 +390362,10 @@ "id": 747, "notes": "Give Pip acorns and mushrooms", "title": "Pip's Food", - "requires_questid_npc": [ - 745 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391797,7 +390396,9 @@ "success_npc_chat": "Chip chip. (Pushes a couple of things towards you.)", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 745 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Miranda", @@ -391807,16 +390408,14 @@ { "id": 748, "notes": "Agree to find Joanna's riding crop", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -391837,17 +390436,15 @@ { "id": 749, "notes": "Find Joanna's Riding Crop", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 330, "y": 236 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391879,12 +390476,10 @@ "id": 750, "notes": "Give Joanna her riding crop", "title": "Joanna's Lost Crop", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391913,16 +390508,14 @@ { "id": 751, "notes": "Agree to find Leuko's missing egg", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -391943,13 +390536,11 @@ { "id": 752, "notes": "take a plate back to Sandra for Flavius", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -391957,7 +390548,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -391965,7 +390556,7 @@ "warp_x": null, "warp_y": null, "success_message": "Flavius has asked you to give Sandra her plate back. Better hurry.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -391978,13 +390569,11 @@ { "id": 753, "notes": "give Sandra back her plate.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392013,17 +390602,15 @@ { "id": 754, "notes": "Find acorn shells and a way into the elf's home", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 263, "y": 367 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You see a small hole here. Maybe you should dig to make it slightly bigger so you'll fit.", @@ -392049,17 +390636,15 @@ { "id": 755, "notes": "Dig to get into Gidget's Home", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 263, "y": 367 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "Carefully digging around the tree, you see a tunnel, but can't quite seem to get in there.", @@ -392083,16 +390668,14 @@ { "id": 756, "notes": "off to find Flavius's glasses", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -392113,16 +390696,14 @@ { "id": 757, "notes": "Agree to get a new egg for gidget", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -392143,13 +390724,11 @@ { "id": 758, "notes": "Get Easter egg from Easter Bunny for Gidget", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392157,7 +390736,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -392178,17 +390757,15 @@ { "id": 759, "notes": "you find Flavius's glasses", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 390, "y": 215 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392219,13 +390796,11 @@ { "id": 760, "notes": "Give Gidget the easter egg", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392258,16 +390833,14 @@ { "id": 761, "notes": "flavius gives you $500 for trixie", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 500, "items_gained": [], "quest_points": 0, @@ -392289,12 +390862,10 @@ "id": 762, "notes": "Give Leuko her egg", "title": "Leuko's Stolen Egg", - "requires_questid_npc": [ - 734 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392306,7 +390877,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 200, @@ -392317,7 +390888,9 @@ "success_npc_chat": "Haaaw! (Leuko gladly takes the egg from you and throws you a couple things.)", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 734 + ], "hide_reply_on_fail": false, "difficulty": "Advanced", "author": "Miranda", @@ -392327,13 +390900,11 @@ { "id": 763, "notes": "give Flavius his glasses", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392362,13 +390933,11 @@ { "id": 764, "notes": "give trixie $500 to pay Flavius's account", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [], "fail_npc_chat": "You don't have $500. Maybe you should come back later when you have it.", @@ -392393,12 +390962,10 @@ "id": 765, "notes": "Flavius gives you the reward", "title": "Flavius' Treasure", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392406,7 +390973,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 100, @@ -392427,16 +390994,14 @@ { "id": 766, "notes": "Viola asks you to get apples from Windy Pick on Ice isle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -392457,13 +391022,11 @@ { "id": 767, "notes": "Windy gives you a bushel of apples for Viola", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392471,7 +391034,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -392493,12 +391056,10 @@ "id": 768, "notes": "You deliver the apples to Viola", "title": "Apples for Viola", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392527,17 +391088,15 @@ { "id": 769, "notes": "Find an important note for Greig", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 502, "y": 335 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392566,13 +391125,11 @@ { "id": 770, "notes": "Give the note to Greig", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392605,16 +391162,14 @@ { "id": 771, "notes": "Agree to find Grieg's glasses in the cotton field", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -392635,17 +391190,15 @@ { "id": 772, "notes": "Find Greig's glasses", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 509, "y": 308 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392676,13 +391229,11 @@ { "id": 773, "notes": "Give Greig his glasses", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392711,16 +391262,14 @@ { "id": 774, "notes": "Agree to look for Greig's watch", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -392741,17 +391290,15 @@ { "id": 775, "notes": "Find Greig's watch", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 473, "y": 334 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392783,12 +391330,10 @@ "id": 776, "notes": "Give Greig his watch", "title": "Forgetful Greig", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -392818,12 +391363,10 @@ "id": 777, "notes": "Jungle Temple #1", "title": "Jungle Temple #1", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -392848,12 +391391,10 @@ "id": 778, "notes": "Jungle Temple #2", "title": "Jungle Temple #2", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -392878,12 +391419,10 @@ "id": 779, "notes": "Jungle Temple #3", "title": "Jungle Temple #3", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -392908,12 +391447,10 @@ "id": 780, "notes": "Jungle Temple #4", "title": "Jungle Temple #4", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -392938,12 +391475,10 @@ "id": 781, "notes": "Jungle Temple #5", "title": "Jungle Temple #5", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -392968,12 +391503,10 @@ "id": 782, "notes": "Jungle Temple #6", "title": "Jungle Temple #6", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -392998,12 +391531,10 @@ "id": 783, "notes": "Jungle Temple #7", "title": "Jungle Temple #7", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -393028,12 +391559,10 @@ "id": 784, "notes": "Jungle Temple #8", "title": "Jungle Temple #8", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -393058,12 +391587,10 @@ "id": 785, "notes": "Jungle Temple #9", "title": "Jungle Temple #9", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -393088,12 +391615,10 @@ "id": 786, "notes": "Jungle Temple #10", "title": "Jungle Temple #10", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -393117,13 +391642,11 @@ { "id": 787, "notes": "answer 1st jungle riddle correctly", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "Wrong answer! Not going through this time.", @@ -393147,13 +391670,11 @@ { "id": 788, "notes": "answer 2nd jungle riddle correctly", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "Wrong answer! Not going through this time.", @@ -393177,13 +391698,11 @@ { "id": 789, "notes": "answer 3rd jungle riddle correctly", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "Wrong answer! Not going through this time.", @@ -393207,23 +391726,21 @@ { "id": 790, "notes": "Exit jungle tunnels", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": 195, "warp_y": 326, - "success_message": "", + "success_message": null, "success_npc_chat": "You have exited the jungle.", "requires_awardid": null, "requires_questid_completed": [], @@ -393237,23 +391754,21 @@ { "id": 791, "notes": "Exit jungle tunnels", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": 205, "warp_y": 305, - "success_message": "", + "success_message": null, "success_npc_chat": "You have exited the jungle.", "requires_awardid": null, "requires_questid_completed": [], @@ -393267,16 +391782,14 @@ { "id": 792, "notes": "Accept the Statue of the Tumetai quest from Witherton Jones", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -393297,13 +391810,11 @@ { "id": 793, "notes": "Azmaguru gives you a statue", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393311,7 +391822,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -393332,13 +391843,11 @@ { "id": 794, "notes": "Guma-Guma Gives player a statue", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393346,7 +391855,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -393367,13 +391876,11 @@ { "id": 795, "notes": "Texcatlypoca gives player a statue", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393381,7 +391888,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -393402,13 +391909,11 @@ { "id": 796, "notes": "Engolo-mbe gives player a tribal statue.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393416,7 +391921,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -393437,13 +391942,11 @@ { "id": 797, "notes": "Suhai gives player a tribal statue", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393451,7 +391954,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -393472,13 +391975,11 @@ { "id": 798, "notes": "Witherton Jones checks for all 5 statues", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393508,12 +392009,10 @@ "id": 799, "notes": "Player solves the last puzzle, finding the real statue.", "title": "Witherton Jones and the Statues of the Tumetai", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must first bring me the statues.", @@ -393539,17 +392038,15 @@ { "id": 800, "notes": "Secret Ancient Stone Treasure (only mentioned in library book)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 228, "y": 261 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393568,7 +392065,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You have uncovered a SECRET ancient buried treasure! 10 Topaz and 5 Emeralds.", "requires_awardid": null, "requires_questid_completed": [], @@ -393582,17 +392079,15 @@ { "id": 801, "notes": "Secret Ancient Stone Treasure (only mentioned in library book)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 244, "y": 199 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393611,7 +392106,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You have uncovered a SECRET ancient buried treasure! 10 Small Gems and 10 Amethysts.", "requires_awardid": null, "requires_questid_completed": [], @@ -393625,17 +392120,15 @@ { "id": 802, "notes": "Secret Ancient Stone Treasure (only mentioned in library book)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 172, "y": 185 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393654,7 +392147,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You have uncovered a SECRET ancient buried treasure! 10 Sapphires and 5 Amethysts.", "requires_awardid": null, "requires_questid_completed": [], @@ -393668,17 +392161,15 @@ { "id": 803, "notes": "Secret Ancient Stone Treasure (only mentioned in library book)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 298, "y": 130 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393697,7 +392188,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You have uncovered a SECRET ancient buried treasure! 3 Pearls and 6 Amethysts.", "requires_awardid": null, "requires_questid_completed": [], @@ -393711,17 +392202,15 @@ { "id": 804, "notes": "Secret Ancient Stone Treasure (only mentioned in library book)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 293, "y": 80 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393740,7 +392229,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You have uncovered a SECRET ancient buried treasure! 10 Topaz and 5 Amethysts.", "requires_awardid": null, "requires_questid_completed": [], @@ -393754,17 +392243,15 @@ { "id": 805, "notes": "Secret Ancient Stone Treasure (only mentioned in library book)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 290, "y": 98 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393783,7 +392270,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You have uncovered a SECRET ancient buried treasure! 10 Sapphires and 5 Amethysts.", "requires_awardid": null, "requires_questid_completed": [], @@ -393797,17 +392284,15 @@ { "id": 806, "notes": "Secret Ancient Stone Treasure (only mentioned in library book)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 244, "y": 71 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393822,7 +392307,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You have uncovered a SECRET ancient buried treasure! A dinosaur bone.", "requires_awardid": null, "requires_questid_completed": [], @@ -393836,17 +392321,15 @@ { "id": 807, "notes": "Secret Ancient Stone Treasure (only mentioned in library book)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 167, "y": 148 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393865,7 +392348,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You have uncovered a SECRET ancient buried treasure! 15 Gold Ores and 15 Silver Ores.", "requires_awardid": null, "requires_questid_completed": [], @@ -393879,13 +392362,11 @@ { "id": 810, "notes": "Accept Nilans 100 Walnut Collection Quest", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You already said you'd bring me 50 walnuts.", @@ -393909,17 +392390,15 @@ { "id": 809, "notes": "Secret Ancient Stone Treasure (only mentioned in library book)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 131, "y": 276 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393934,7 +392413,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You have uncovered a SECRET ancient buried treasure! A Diamond.", "requires_awardid": null, "requires_questid_completed": [], @@ -393948,13 +392427,11 @@ { "id": 811, "notes": "Deliver the first set of 50 walnuts to Nilan", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -393984,12 +392461,10 @@ "id": 812, "notes": "Deliver the second set of 50 walnuts to Nilan", "title": "Nilan's Jungle Trap Hideout", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -394024,16 +392499,14 @@ { "id": 813, "notes": "Offer to get Plant food for shawnah", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -394055,12 +392528,10 @@ "id": 814, "notes": "Bring Plant food to shawnah", "title": "Shawnah's Unique Plant Food", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -394089,16 +392560,14 @@ { "id": 815, "notes": "Wild flowers for Tulippe", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -394120,12 +392589,10 @@ "id": 816, "notes": "Give wildflowers to Tulippe", "title": "Tulippe's Wildflowers", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -394154,13 +392621,11 @@ { "id": 817, "notes": "Samora Bets you $1000 that you can't answer her questions", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 1000, "items_required": [], "fail_npc_chat": "You do not have the $1000 for this challenge. Come back when you do, please!", @@ -394185,12 +392650,10 @@ "id": 818, "notes": "Samora Congratulates you for winning her challenge", "title": "Samora's Science Challenge", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this! (bug)", @@ -394214,13 +392677,11 @@ { "id": 819, "notes": "Hans Bets you $1000 that you can't answer her questions", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 1000, "items_required": [], "fail_npc_chat": "You do not have the $1000 for this challenge. Come back when you do, please!", @@ -394245,12 +392706,10 @@ "id": 820, "notes": "Hans Congratulates you for winning his challenge", "title": "Hans' Horse Breed Challenge", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this! (bug)", @@ -394274,13 +392733,11 @@ { "id": 821, "notes": "Cookie asks you to get bananas from Cupcake ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -394288,7 +392745,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 500, "items_gained": [], "quest_points": 0, @@ -394309,13 +392766,11 @@ { "id": 822, "notes": "You deliver bananas to Cookie", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -394349,12 +392804,10 @@ "id": 845, "notes": "Deliver Milk to Cookie", "title": "Cookie's Banana Pudding", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -394383,13 +392836,11 @@ { "id": 823, "notes": "Cupcake sends you back to Cookie with bananas", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -394401,7 +392852,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 250, "items_gained": [], "quest_points": 0, @@ -394422,13 +392873,11 @@ { "id": 824, "notes": "Cupcake sends you to get the stolen bananas", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I really need you to find the bananas. I just don't have time to do it.", @@ -394452,17 +392901,15 @@ { "id": 825, "notes": "1st Clue in the search for bananas", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 196, "y": 302 }, "tracked": true, - "repeats": 6, + "max_repeats": 6, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -394489,17 +392936,15 @@ { "id": 826, "notes": "2nd Clue in the missing bananas", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 194, "y": 304 }, "tracked": true, - "repeats": 6, + "max_repeats": 6, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -394526,17 +392971,15 @@ { "id": 827, "notes": "3rd clue in the missing bananas", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 183, "y": 308 }, "tracked": true, - "repeats": 6, + "max_repeats": 6, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -394563,7 +393006,7 @@ { "id": 828, "notes": "Finding the bunch of bananas", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -394571,7 +393014,7 @@ "y": 314 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -394602,13 +393045,11 @@ { "id": 829, "notes": "Return Bananas to Cupcake", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -394641,13 +393082,11 @@ { "id": 830, "notes": "Give Sandra 10 blueberries", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -394676,13 +393115,11 @@ { "id": 831, "notes": "Give Sandra 10 cranberries", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -394711,13 +393148,11 @@ { "id": 832, "notes": "Give Sandra 10 huckleberries", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -394746,13 +393181,11 @@ { "id": 833, "notes": "Give Sandra 10 raspberries", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -394781,13 +393214,11 @@ { "id": 834, "notes": "Give Sandra 10 strawberries", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -394816,13 +393247,11 @@ { "id": 835, "notes": "Give Sandra 10 thimbleberries", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -394851,13 +393280,11 @@ { "id": 836, "notes": "Give Sandra 10 blackberries", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -394886,13 +393313,11 @@ { "id": 837, "notes": "Agree to deliver a crate of jam jars to Ursala", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -394900,7 +393325,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -394921,13 +393346,11 @@ { "id": 838, "notes": "Give crate of jam jars to Ursala", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -394956,13 +393379,11 @@ { "id": 840, "notes": "Cookie sends you to get milk from Cinnamon", - "title": "", - "requires_questid_npc": [ - 822 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -394970,7 +393391,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 500, "items_gained": [], "quest_points": 0, @@ -394981,7 +393402,9 @@ "success_npc_chat": "Great! Please get 4 glasses of milk from Cinnamon. Here is a little something to help you on your way.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 822 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -394992,12 +393415,10 @@ "id": 839, "notes": "Give Ursala's money to Sandra", "title": "Sandra's Jam", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 2500, "items_required": [], "fail_npc_chat": "You don't have enough money. Ursala owes me $2500. You must have spent it. I hope you go make some to cover her bill, since she trusted you with that money.", @@ -395021,13 +393442,11 @@ { "id": 841, "notes": "Cinnamon gives milk to thirsty players.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -395035,7 +393454,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -395056,13 +393475,11 @@ { "id": 842, "notes": "Cinnamon asks you to take a letter to Cupcake", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395091,13 +393508,11 @@ { "id": 843, "notes": "Cinnamon gives milk for Cookie", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395105,7 +393520,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -395127,12 +393542,10 @@ "id": 844, "notes": "Deliver Letter to Cupcake", "title": "Cinnamon's Letter", - "requires_questid_npc": [ - 842 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395144,7 +393557,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 500, "items_gained": [], "quest_points": 25, @@ -395155,7 +393568,9 @@ "success_npc_chat": "Thanks! I can hardly wait to read it.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 842 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Pam", @@ -395165,13 +393580,11 @@ { "id": 846, "notes": "Give Krista 10 Dandelions", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -395200,13 +393613,11 @@ { "id": 847, "notes": "Give Krista 10 Branches", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -395235,13 +393646,11 @@ { "id": 848, "notes": "Agree to deliver baskets to Tulippe. ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395249,7 +393658,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -395270,13 +393679,11 @@ { "id": 849, "notes": "Give bundle of baskets to Tulippe", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395306,12 +393713,10 @@ "id": 850, "notes": "Give Tulippe's money to Krista", "title": "Krista's Baskets", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 750, "items_required": [], "fail_npc_chat": "You don't have enough money. Her bill was for $750. Did you go shopping on your way back?", @@ -395335,13 +393740,11 @@ { "id": 851, "notes": "Agree to get medicine for Lief", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Thanks anyway, I am sure I will be able to get there soon.", @@ -395365,13 +393768,11 @@ { "id": 852, "notes": "Agree to pick up oats from Oliver for Temperance", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Stop back here when you get them. I think 5 should do it.", @@ -395395,13 +393796,11 @@ { "id": 853, "notes": "Get bags of oats from Oliver", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 900, "items_required": [ { @@ -395430,13 +393829,11 @@ { "id": 854, "notes": "Agree to take bags of oats to Trina and get sent to Mare Isle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395470,12 +393867,10 @@ "id": 855, "notes": "Give bags of oats to Trina", "title": "Temperance's Sister", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395504,16 +393899,14 @@ { "id": 856, "notes": "Temperence sends you to Mare Isle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -395534,13 +393927,11 @@ { "id": 857, "notes": "Pick up medicine for Lief", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395548,7 +393939,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -395569,17 +393960,15 @@ { "id": 858, "notes": "Dig to get to the nearby island", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 627, "y": 227 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -395603,17 +393992,15 @@ { "id": 859, "notes": "Dig to go back to Mare Isle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 623, "y": 222 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -395638,12 +394025,10 @@ "id": 860, "notes": "Give Lief his medicine", "title": "Lief's Allergy Medicine Delivery", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395672,17 +394057,15 @@ { "id": 861, "notes": "Dig up a treasure on Palm Isle", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 620, "y": 219 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395715,13 +394098,11 @@ { "id": 862, "notes": "Nomasonto gives you tea", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -395729,7 +394110,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -395750,13 +394131,11 @@ { "id": 863, "notes": "Agree to deliver Stable for Parry", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395786,12 +394165,10 @@ "id": 864, "notes": "Deliver Holly's Letter to Parry", "title": "Parry's Long Lost Love", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395820,13 +394197,11 @@ { "id": 865, "notes": "Deliver Stable to Holly", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395834,7 +394209,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -395855,13 +394230,11 @@ { "id": 866, "notes": "Holly asks you to deliver a letter to Parry", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395890,13 +394263,11 @@ { "id": 867, "notes": "Kilye gives you the Embroidered Saddle Pad", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395904,7 +394275,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 750, "items_gained": [], "quest_points": 0, @@ -395926,12 +394297,10 @@ "id": 868, "notes": "Goodwin gets the saddle pad", "title": "Kilye's Embroidered Saddle Pad", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395960,13 +394329,11 @@ { "id": 869, "notes": "get a bridle from Kilye", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -395974,7 +394341,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1500, "items_gained": [], "quest_points": 0, @@ -395995,13 +394362,11 @@ { "id": 870, "notes": "Give the bridle to Kilye to alter", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -396009,7 +394374,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -396030,13 +394395,11 @@ { "id": 871, "notes": "Get resized bridle from Kilye", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -396044,7 +394407,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1500, "items_gained": [], "quest_points": 0, @@ -396065,13 +394428,11 @@ { "id": 872, "notes": "Ward takes the unaltered bridle...", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -396101,12 +394462,10 @@ "id": 873, "notes": "Ward gets his finished bridle", "title": "Kilye's Teke Bridle ", - "requires_questid_npc": [ - 868 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -396114,7 +394473,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 4000, "items_gained": [], "quest_points": 50, @@ -396125,7 +394484,9 @@ "success_npc_chat": "Kilye's already been paid, but here's something for you.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 868 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "SpottedRose", @@ -396135,13 +394496,11 @@ { "id": 874, "notes": "Ward gives you the bridle with marks where it needs to be altered.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -396149,7 +394508,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1500, "items_gained": [], "quest_points": 0, @@ -396170,23 +394529,21 @@ { "id": 875, "notes": "Action for Holly to go to chatpoint ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 0, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Thank you so much!", "requires_awardid": null, "requires_questid_completed": [], @@ -396200,23 +394557,21 @@ { "id": 876, "notes": "Set future chatpoint for Kilye", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 0, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Wonderful! I'm glad he's happy with it. Thanks for all your help!", "requires_awardid": null, "requires_questid_completed": [], @@ -396230,16 +394585,14 @@ { "id": 877, "notes": "Agree to get 15 ebony logs for xamba", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -396260,13 +394613,11 @@ { "id": 878, "notes": "Give 15 logs of Ebony Wood to xamba", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -396295,16 +394646,14 @@ { "id": 879, "notes": "Dolly sends you to the pottery", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -396326,12 +394675,10 @@ "id": 880, "notes": "Dolly gets her new mugs.", "title": "Dolly's Handmade Mugs", - "requires_questid_npc": [ - 407 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -396350,7 +394697,9 @@ "success_npc_chat": "(Dolly pulls out one of the mugs and carefully unwraps it, and holds it up, turning it in her hands.) Oh! Oh, thank you so much, these are just, just perfect! Wonderful! You're a gem! Here, please take this with my gratitude and complements.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 407 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "SpottedRose", @@ -396360,13 +394709,11 @@ { "id": 881, "notes": "Genevieve gives you mugs for Dolly.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 600, "items_required": [ { @@ -396395,13 +394742,11 @@ { "id": 882, "notes": "Minnie asks for walnuts and acorns.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "Would you like a loaf of nut bread? Give me ten walnuts and ten acorns, and I'll make you one straight away, then you can sell it to Pablo!", @@ -396425,13 +394770,11 @@ { "id": 883, "notes": "Give Minnie 10 acorns and 10 Walnuts so she can make Bricks... uh, Bread.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [ { @@ -396468,13 +394811,11 @@ { "id": 884, "notes": "Give Pablo Walnut-Acorn Bread Bricks", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -396503,13 +394844,11 @@ { "id": 885, "notes": "Agree to bring oboe to Anika", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -396517,7 +394856,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -396538,13 +394877,11 @@ { "id": 886, "notes": "Give oboe to Anika", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -396574,12 +394911,10 @@ "id": 887, "notes": "Give Xamba the money for Anika's bill", "title": "Xamba's Wooden Instrument", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 10000, "items_required": [], "fail_npc_chat": "You don't have $10,000. You spent her money? Awful, awful. Don't come back until you can pay her bill. Go go.", @@ -396603,13 +394938,11 @@ { "id": 889, "notes": "Caelin Bets you $1000 that you can't answer her questions", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 1000, "items_required": [], "fail_npc_chat": "You do not have the $1000 for this challenge. Come back when you do, please!", @@ -396634,12 +394967,10 @@ "id": 888, "notes": "Caelin Congratulates you for winning her challenge", "title": "Caelin's Horse Breed Challenge", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this! (bug)", @@ -396663,16 +394994,14 @@ { "id": 890, "notes": "The King of Hotzeplotz, Part 1: go search for metals.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 100, "items_gained": [], "quest_points": 0, @@ -396693,13 +395022,11 @@ { "id": 891, "notes": "Give Grey Slate his ores, sends you for 5 diamonds and 24 small gems.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -396732,16 +395059,14 @@ { "id": 892, "notes": "Grey Slate sends you for gems.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 150, "items_gained": [], "quest_points": 0, @@ -396762,16 +395087,14 @@ { "id": 893, "notes": "Grey Slate sends you for peacock feathers. He doesn't argue taste with King Phil.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 100, "items_gained": [], "quest_points": 0, @@ -396792,13 +395115,11 @@ { "id": 894, "notes": "Grey Slate takes feathers", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -396827,13 +395148,11 @@ { "id": 896, "notes": "King Phil's Scepter sends you to Hotzeplotz!", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -396845,7 +395164,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -396866,16 +395185,14 @@ { "id": 895, "notes": "Grey Slate's Penultimate Request", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 100, "items_gained": [], "quest_points": 0, @@ -396896,13 +395213,11 @@ { "id": 897, "notes": "King Phil gets his crown!", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [ { @@ -396939,16 +395254,14 @@ { "id": 898, "notes": "King Phil sends you back to Sir Slate", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -396970,12 +395283,10 @@ "id": 899, "notes": "King Phil's Payment.", "title": "Grey Slate's Gaudy Crown", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -397004,16 +395315,14 @@ { "id": 900, "notes": "Kilye gives instructions for making a blue cloth", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -397034,13 +395343,11 @@ { "id": 901, "notes": "Kilye makes you a royal blue cloth.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 200, "items_required": [ { @@ -397077,13 +395384,11 @@ { "id": 902, "notes": "Give Grey Slate his blue cloth", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -397112,13 +395417,11 @@ { "id": 903, "notes": "Grey Slate Gets His Gems", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -397151,13 +395454,11 @@ { "id": 904, "notes": "Barnacle Ben gives dirty jolly rogers to be fixed and cleaned. ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -397165,7 +395466,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -397187,12 +395488,10 @@ "id": 908, "notes": "give Barnacle Ben back the jolly rogers", "title": "Barnacle Ben's Home Improvement", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -397231,13 +395530,11 @@ { "id": 905, "notes": "gives Eliza dirty jolly rogers in exchange for washed ones", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -397272,16 +395569,14 @@ { "id": 906, "notes": "Accept the Quest 8 Wonders of the Horse Isles", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 0, @@ -397302,13 +395597,11 @@ { "id": 907, "notes": "give cleaned jolly rogers to Barb Sower to mend", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -397343,13 +395636,11 @@ { "id": 909, "notes": "King Phil's Ferrets Steal Your (His) Treasure!", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 5000, "items_required": [ { @@ -397378,13 +395669,11 @@ { "id": 910, "notes": "King Phil's Ferrets Substitute the real necklace with paste!", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -397417,17 +395706,15 @@ { "id": 911, "notes": "The Treasure of Hotzeplotz", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 705, "y": 263 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -397443,7 +395730,7 @@ "warp_x": null, "warp_y": null, "success_message": "You found a small box with a magnificent Pearl Necklace of perfectly matching pearls and $5,000 inside!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -397458,13 +395745,11 @@ { "id": 912, "notes": "sell hay and coconuts to Donna Alligheri", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -397497,13 +395782,11 @@ { "id": 913, "notes": "King Phil Makes You A Knight, Already!", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -397536,16 +395819,14 @@ { "id": 914, "notes": "starting Barnacle Ben's Decorating Quest", - "title": "", - "requires_questid_npc": [ - 908 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1500, "items_gained": [], "quest_points": 0, @@ -397556,7 +395837,9 @@ "success_npc_chat": "Aye, that seems reasonable - har you go. ", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 908 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -397566,13 +395849,11 @@ { "id": 915, "notes": "Buying art from Pablo for Barnacle Ben ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -397609,16 +395890,14 @@ { "id": 922, "notes": "King Phil's Scepter sends you to Hotzeplotz! (regular return)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -397640,12 +395919,10 @@ "id": 916, "notes": "Deliver art to Barncacle Ben from Pable on Art Isle", "title": "Barnacle Ben's Decorating Quest", - "requires_questid_npc": [ - 908 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -397669,6 +395946,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 908, 915 ], "hide_reply_on_fail": true, @@ -397680,16 +395958,14 @@ { "id": 917, "notes": "Agrees to do Barnacle Ben's Decorating Quest - no travel money", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -397710,17 +395986,15 @@ { "id": 918, "notes": "Find Wonder Number One", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 313, "y": 191 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -397746,13 +396020,11 @@ { "id": 919, "notes": "Tucker gives you the Sketch for Wonder #1", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -397760,7 +396032,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -397781,17 +396053,15 @@ { "id": 920, "notes": "Find Wonder #2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 395, "y": 85 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -397802,7 +396072,7 @@ "warp_x": null, "warp_y": null, "success_message": "Searching for details, you find a clue! Posy holds the sketch for which you search.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -397817,13 +396087,11 @@ { "id": 921, "notes": "Donna Hayes asks you to get supplies", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "It really takes a load off my mind knowing that I've got a new supplier! And please remember--I need both the hay and the coconuts delivered together, because my helpers don't like to set up the hay-lifters too many times. Come back soon!", @@ -397847,13 +396115,11 @@ { "id": 1084, "notes": "Give the Star of Solomon to Opal.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -397882,16 +396148,14 @@ { "id": 923, "notes": "King Phil sends you back to Sir Slate (Normal Return)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -397912,13 +396176,11 @@ { "id": 924, "notes": "Kilye makes you a royal blue cloth. (already completed her quests)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 200, "items_required": [ { @@ -397955,16 +396217,14 @@ { "id": 925, "notes": "King Phil sends trespassers to prison", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -397985,16 +396245,14 @@ { "id": 926, "notes": "Old Horse Rejects your offer of a treat.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -398015,13 +396273,11 @@ { "id": 927, "notes": "OId Ellie accepts your offer of a carrot. ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -398054,13 +396310,11 @@ { "id": 928, "notes": "Old Dude accepts your offer of an apple. ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -398093,13 +396347,11 @@ { "id": 929, "notes": "Old Kate accepts your offer of daisies. ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -398132,13 +396384,11 @@ { "id": 930, "notes": "Old Decaf accepts your offer of wildflowers. ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -398171,17 +396421,15 @@ { "id": 931, "notes": "Haven Isle Shipwreck? A Possibility!", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", "x": 659, "y": 314 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search carefully, but all you see are seabirds and a frighteningly high sea.", @@ -398205,17 +396453,15 @@ { "id": 932, "notes": "Haven Isle--Find the Planks.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 660, "y": 317 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -398246,17 +396492,15 @@ { "id": 933, "notes": "Haven Isle--Find Bucket and Rope", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 662, "y": 317 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -398287,17 +396531,15 @@ { "id": 934, "notes": "Haven Isle--Find Chest of Doubloons", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 656, "y": 315 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -398328,13 +396570,11 @@ { "id": 935, "notes": "Give Ruthie the planks", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -398363,13 +396603,11 @@ { "id": 936, "notes": "Give Ruthie the bucket and rope", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -398399,12 +396637,10 @@ "id": 937, "notes": "Give Ruthie the doubloons ", "title": "Ruthie's Doubloons", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -398433,13 +396669,11 @@ { "id": 938, "notes": "Ruthie gives you apples and daisies.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -398472,13 +396706,11 @@ { "id": 939, "notes": "Ruthie gives you carrots and wildflowers.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -398511,13 +396743,11 @@ { "id": 940, "notes": "Ruthie tells you to go look for usable stuff", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Didn't you find anything? Please look again!", @@ -398541,16 +396771,14 @@ { "id": 952, "notes": "Agree to find Halien's mancala board", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -398572,12 +396800,10 @@ "id": 941, "notes": "Vole Hole #1", "title": "Vole Hole #1", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this vole hole.", @@ -398602,12 +396828,10 @@ "id": 942, "notes": "Vole Hole #2", "title": "Vole Hole #2", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this vole hole.", @@ -398632,12 +396856,10 @@ "id": 943, "notes": "Vole Hole #3", "title": "Vole Hole #3", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this vole hole.", @@ -398662,12 +396884,10 @@ "id": 944, "notes": "Vole Hole #4", "title": "Vole Hole #4", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this vole hole.", @@ -398692,12 +396912,10 @@ "id": 945, "notes": "Vole Hole #5", "title": "Vole Hole #5", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this vole hole.", @@ -398722,12 +396940,10 @@ "id": 946, "notes": "Vole Hole #6", "title": "Vole Hole #6", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this vole hole.", @@ -398751,13 +396967,11 @@ { "id": 947, "notes": "By Boat To Half Haven", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 400, "items_required": [], "fail_npc_chat": "Sorry, you've not got enough money to make that crossing worthwhile.", @@ -398781,23 +396995,21 @@ { "id": 948, "notes": "Ruthie asks you to take treats to her horses.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Take them some treats to start. Now, they all like different things, and don't offer them what they don't like--they're very old and kind of crotchety.", "requires_awardid": null, "requires_questid_completed": [], @@ -398811,16 +397023,14 @@ { "id": 949, "notes": "Ruthie asks for Lucky Hay", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -398841,13 +397051,11 @@ { "id": 950, "notes": "Ruthie buys Lucky Horse Hay", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -398877,15 +397085,13 @@ "id": 951, "notes": "Ruthie's Horses Are All Good.", "title": "Ruthie's Retirees", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 25, @@ -398906,16 +397112,14 @@ { "id": 953, "notes": "Offered to pick up carrots for the Easter Bunny.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -398937,12 +397141,10 @@ "id": 954, "notes": "Gave carrots to Easter Bunny.", "title": "Supplies for the Easter Bunny", - "requires_questid_npc": [ - 418 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -398961,7 +397163,9 @@ "success_npc_chat": "Fantabulicious! I really appreciate your help. Take this with my gratitude.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 418 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Tempest", @@ -398971,17 +397175,15 @@ { "id": 955, "notes": "Find Halian's broken mancala board", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 293, "y": 81 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399012,13 +397214,11 @@ { "id": 956, "notes": "Tell Halian about the broken Mancala board", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399047,13 +397247,11 @@ { "id": 957, "notes": "Agree to get Halian's Mancala board fixed", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399061,7 +397259,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -399082,16 +397280,14 @@ { "id": 958, "notes": "Offer to have baby crib made for Magnolia", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 4000, "items_gained": [], "quest_points": 0, @@ -399112,13 +397308,11 @@ { "id": 959, "notes": "Give Xamba the broken board.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399147,13 +397341,11 @@ { "id": 960, "notes": "Give finished crib to Magnolia", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399182,13 +397374,11 @@ { "id": 961, "notes": "Give Xamba 5 ebony logs", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399217,13 +397407,11 @@ { "id": 962, "notes": "Xamba gives you finished mancala board", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -399253,12 +397441,10 @@ "id": 963, "notes": "Give completed mancala board to Halian", "title": "Halian's Mancala Board", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399287,16 +397473,14 @@ { "id": 964, "notes": "Rebecca asks you to get 15 logs and 5 branches for a crib.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -399317,13 +397501,11 @@ { "id": 965, "notes": "Give Rebecca 15 logs and 5 branches for baby crib", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399356,13 +397538,11 @@ { "id": 966, "notes": "Rebecca gives you a finished crib for $3000", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 3000, "items_required": [ { @@ -399391,13 +397571,11 @@ { "id": 967, "notes": "Posy gives you the sketch", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399405,7 +397583,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -399428,16 +397606,14 @@ { "id": 968, "notes": "Offer to have PINK bedding made for Magnolia", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -399458,13 +397634,11 @@ { "id": 969, "notes": "Bagel Mit Shmeer for Grey Slate", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 100, "items_required": [ { @@ -399497,16 +397671,14 @@ { "id": 970, "notes": "Offer to have BLUE crib bedding made for Magnolia.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -399527,16 +397699,14 @@ { "id": 971, "notes": "Offer to have PURPLE crib bedding made for Magnolia.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -399557,16 +397727,14 @@ { "id": 972, "notes": "Offer to have YELLOW crib bedding made for Magnolia.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -399587,17 +397755,15 @@ { "id": 973, "notes": "Find Wonder #3", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 623, "y": 58 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -399608,7 +397774,7 @@ "warp_x": null, "warp_y": null, "success_message": "Searching for details, you found a clue! Mikko holds the sketch for which you search.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -399624,12 +397790,10 @@ "id": 974, "notes": "Give finished crib bedding to Magnolia.", "title": "Magnolia's Nursery", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399658,16 +397822,14 @@ { "id": 975, "notes": "Barb Sower asks you to collect items for PINK crib bedding", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -399688,16 +397850,14 @@ { "id": 976, "notes": "Barb Sower asks you to collect items for BLUE crib bedding.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -399718,16 +397878,14 @@ { "id": 977, "notes": "Barb Sower asks you to collect items for PURPLE crib bedding", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -399748,16 +397906,14 @@ { "id": 978, "notes": "Barb Sower asks you to collect items for YELLOW crib bedding", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -399778,13 +397934,11 @@ { "id": 979, "notes": "Give items for PINK baby bedding to Barb", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399817,13 +397971,11 @@ { "id": 980, "notes": "Give items for BLUE baby bedding to Barb", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399856,13 +398008,11 @@ { "id": 981, "notes": "Give items for PURPLE baby bedding to Barb", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399895,13 +398045,11 @@ { "id": 982, "notes": "Give items for YELLOW baby bedding to Barb", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399934,13 +398082,11 @@ { "id": 983, "notes": "Receive baby crib bedding from Barb Sower", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -399948,7 +398094,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -399969,13 +398115,11 @@ { "id": 984, "notes": "Gray Slate Eats His Lunch", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [ { @@ -400008,13 +398152,11 @@ { "id": 985, "notes": "Grey Slate Orders Lunch", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "Okay, I'd like a double mocha latte with whipped cream and sprinkles, and a toasted onion bagel with cream cheese and lox.", @@ -400039,12 +398181,10 @@ "id": 986, "notes": "Pass Cadee's Grammar Challenge", "title": "Cadee's Grammar Challenge", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, dear...", @@ -400068,13 +398208,11 @@ { "id": 987, "notes": "Pass Cadee's Extra Credit Question", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Aaaaa-choo!", @@ -400098,16 +398236,14 @@ { "id": 988, "notes": "Alati asks you to gather 2 logs and 8 skinny branches", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -400128,13 +398264,11 @@ { "id": 989, "notes": "Give Alati 2 logs and 8 branches.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -400167,16 +398301,14 @@ { "id": 990, "notes": "Alati asks you to get two stones cut from Rocco", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -400197,13 +398329,11 @@ { "id": 991, "notes": "Give two round stones to Alati", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -400232,16 +398362,14 @@ { "id": 992, "notes": "Opal tells you she'll set the broken case in the sun for you to examine.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -400262,17 +398390,15 @@ { "id": 993, "notes": "The Clue of the Broken Display Case", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 423, "y": 146 }, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -400299,16 +398425,14 @@ { "id": 994, "notes": "Alati asks you to have three porcelain rings made.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -400329,13 +398453,11 @@ { "id": 995, "notes": "Give three porcelain rings to Alati", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -400365,12 +398487,10 @@ "id": 996, "notes": "Alati gives you a reward for helping him out.", "title": "Alati's Invention", - "requires_questid_npc": [ - 407 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -400378,7 +398498,7 @@ "quantity": 25 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 250, @@ -400389,7 +398509,9 @@ "success_npc_chat": "Here, I want you to have these. Please take them with my gratitude. You've given me confidence in myself again! And now, I must get my quicksand shoes to work properly!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 407 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Tempest", @@ -400399,16 +398521,14 @@ { "id": 997, "notes": "Rocco begins work on Alati's stones.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -400429,13 +398549,11 @@ { "id": 998, "notes": "Rocco gives you the stones to take to Alati", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -400443,7 +398561,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -400464,16 +398582,14 @@ { "id": 999, "notes": "Genevieve tells you to talk to Kiah to find clay", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -400494,13 +398610,11 @@ { "id": 1000, "notes": "You give Genevieve clay for Alati's rings", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -400529,13 +398643,11 @@ { "id": 1001, "notes": "Genevieve gives you three porcelain rings for Alati's invention.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 3000, "items_required": [ { @@ -400564,17 +398676,15 @@ { "id": 1002, "notes": "Red jamuti clay here", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 299, "y": 96 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -400590,7 +398700,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found a lump of Red Jamuti Clay.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -400605,17 +398715,15 @@ { "id": 1003, "notes": "Red jamuti clay here", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 299, "y": 92 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -400631,7 +398739,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found a lump of Red Jamuti Clay.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -400646,17 +398754,15 @@ { "id": 1004, "notes": "Red jamuti clay here", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 297, "y": 90 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -400672,7 +398778,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found a lump of Red Jamuti Clay.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -400687,17 +398793,15 @@ { "id": 1005, "notes": "Red jamuti clay here", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 294, "y": 94 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -400713,7 +398817,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found a lump of Red Jamuti Clay.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -400728,17 +398832,15 @@ { "id": 1006, "notes": "Red jamuti clay here", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 293, "y": 96 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -400754,7 +398856,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found a lump of Red Jamuti Clay.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -400769,17 +398871,15 @@ { "id": 1007, "notes": "Red jamuti clay here", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 296, "y": 93 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -400795,7 +398895,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found a lump of Red Jamuti Clay.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -400810,13 +398910,11 @@ { "id": 1008, "notes": "The Clue of the Small, Dark Man", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, dear, I hope she's still there.", @@ -400840,13 +398938,11 @@ { "id": 1009, "notes": "Miss Mabel Examines The First Clue", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], "fail_npc_chat": "Do you mean to tell me you have lost this clue? Please go and find it at once. I cannot overemphasize its importance.", @@ -400870,11 +398966,11 @@ { "id": 1190, "notes": "The Treasure of the Solomons, Uncovered! (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "The treasure! The treasure of the Solomon Family! Buried these long centuries! Thar it be!", @@ -400884,7 +398980,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "The treasure! The treasure of the Solomon Family! Buried these long centuries! Thar it be!", "requires_awardid": null, "requires_questid_completed": [], @@ -400898,13 +398994,11 @@ { "id": 1010, "notes": "Opal Gives You The Torn Piece of Cloth", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -400933,13 +399027,11 @@ { "id": 1011, "notes": "Miss Mabel Examines The First Clue", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -400968,13 +399060,11 @@ { "id": 1072, "notes": "Give Mrs Claus Dasher and Dancer's Harnesses", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -401007,13 +399097,11 @@ { "id": 1012, "notes": "Miss Mabel Sends You Out For More Clues.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, dear...", @@ -401037,13 +399125,11 @@ { "id": 1013, "notes": "Rocco's gives design plans for new sign ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -401051,7 +399137,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -401072,13 +399158,11 @@ { "id": 1014, "notes": "Give Rocco's design plans to Smiddy Jones", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -401107,16 +399191,14 @@ { "id": 1015, "notes": "Agree to get items Smiddy Jones needs to work on Rocco's sign. ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -401137,13 +399219,11 @@ { "id": 1016, "notes": "Give Smiddy Jones the agate and ore for Rocco's sign", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -401177,12 +399257,10 @@ "id": 1017, "notes": "Complete Water Math for Clara", "title": "Clara's Water Problem", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this for Clara.", @@ -401206,13 +399284,11 @@ { "id": 1018, "notes": "take Rocco's sign plans to Xamba at Smiddy's request. ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -401241,13 +399317,11 @@ { "id": 1019, "notes": "Give wood frame and post to Smiddy Jones and get completed sign", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -401280,13 +399354,11 @@ { "id": 1020, "notes": "Agree to find ebony wood for Xamba ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -401315,13 +399387,11 @@ { "id": 1021, "notes": "Get completed wood frame and post from Xamba", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -401355,12 +399425,10 @@ "id": 1022, "notes": "Give Rocco Shale back his completed new rock shop sign. ", "title": "Rocco Shale's New Rock Shop Sign ", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -401394,12 +399462,10 @@ "id": 1023, "notes": "Help Livia do the frog puzzle", "title": "Livia's Frogs", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this puzzle.", @@ -401424,12 +399490,10 @@ "id": 1024, "notes": "Help Integra change the guards", "title": "Integra's Puzzle", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this puzzle.", @@ -401453,16 +399517,14 @@ { "id": 1025, "notes": "Caren Hart sends you to Nizhoni and Sakyo's.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -401483,13 +399545,11 @@ { "id": 1026, "notes": "Nizhoni sends you to find Sahkyo", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 4, + "max_repeats": 4, "money_cost": 0, "items_required": [], "fail_npc_chat": "Good boy.", @@ -401499,7 +399559,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "(Nizhoni gestures toward the door, and you get up and go outside to look for Sahkyo.)", "requires_awardid": null, "requires_questid_completed": [], @@ -401513,24 +399573,22 @@ { "id": 1027, "notes": "Track Humpty Dumpty", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 0, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -401543,16 +399601,14 @@ { "id": 1028, "notes": "Nizhoni sends you in search of calumet material.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -401574,12 +399630,10 @@ "id": 1029, "notes": "Help Integra arrange the stars", "title": "Materia's Stars", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this puzzle.", @@ -401603,13 +399657,11 @@ { "id": 1030, "notes": "The Clue of the Jacket Pockets", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], "fail_npc_chat": "Please, I'm very busy right now, I have to get back to work.", @@ -401633,13 +399685,11 @@ { "id": 1031, "notes": "The Clue Of The Dogs In The Night-Time.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh. Well, sorry, that's all I know.", @@ -401663,13 +399713,11 @@ { "id": 1032, "notes": "The Clue of the Odd Shoes", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 42, + "max_repeats": 42, "money_cost": 0, "items_required": [], "fail_npc_chat": "But we already went over this, surely.", @@ -401693,13 +399741,11 @@ { "id": 1033, "notes": "The Clue of the Odd Shoes, Part II", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I've told you all I'm gonna. Now leave me be.", @@ -401723,13 +399769,11 @@ { "id": 1034, "notes": "The Clue of the Silver Blaze", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], "fail_npc_chat": "Didn't we already have this conversation?", @@ -401753,16 +399797,14 @@ { "id": 1035, "notes": "Santa asks you to get string of flashing christmas lights made for Mrs. Claus", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -401783,13 +399825,11 @@ { "id": 1036, "notes": "Ask Aura Hayward to make Mrs. Claus a string of flashing lights. ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 2000, "items_required": [ { @@ -401826,13 +399866,11 @@ { "id": 1040, "notes": "The Clue of the Blue-Green Dye", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Nope, can't remember.", @@ -401856,13 +399894,11 @@ { "id": 1041, "notes": "Discussed: The dogs in the night-time.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I don't like to repeat myself.", @@ -401872,7 +399908,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Oh... yes. Yes, that is certainly a possibility. If a thief had some kind of a pet whom he knew would cause a disturbance... well, then...", "requires_awardid": null, "requires_questid_completed": [], @@ -401887,12 +399923,10 @@ "id": 1037, "notes": "Take string of flashing lights back to Santa", "title": "Santa's Anniversary Gift", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -401925,13 +399959,11 @@ { "id": 1038, "notes": "The Clue of the Mingled Sands", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, wait... I just remembered something I have to do right now. Talk to you soon!", @@ -401955,13 +399987,11 @@ { "id": 1039, "notes": "The Clue of the Jacket is discussed (tracking only).", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "We've already gone over this, haven't we?", @@ -401971,7 +400001,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "We have already noted that the one person identified as a possible suspect was dressed very noticeably. People might be on the lookout for the old jacket.", "requires_awardid": null, "requires_questid_completed": [], @@ -401985,16 +400015,14 @@ { "id": 1076, "notes": "Anani tells you a sheep swam to an island north-ish from hers.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -402002,7 +400030,7 @@ "warp_x": null, "warp_y": null, "success_message": "Anani informs you one of the Golden Sheep may be on an island near hers.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -402015,13 +400043,11 @@ { "id": 1042, "notes": "Discussed: The Oddly Shaped Shoes", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Please, let's not go over this again.", @@ -402031,7 +400057,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Yes. That certainly indicates an inexperienced, or possibly simply inept, smithy. I know of no such person on these islands.", "requires_awardid": null, "requires_questid_completed": [], @@ -402045,13 +400071,11 @@ { "id": 1043, "notes": "Discussed: The Uneven Wear", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "This is all, you know, getting rather tiresome for me.", @@ -402061,7 +400085,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Because whoever shoed the horse subsequently--that is, assuming anyone did--would certainly have noticed the signs of damage when they trimmed the feet.", "requires_awardid": null, "requires_questid_completed": [], @@ -402075,13 +400099,11 @@ { "id": 1044, "notes": "Discussed: The Mingled Sands", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Could you please come back another time?", @@ -402091,7 +400113,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Exactly! Art Isle! One gallop cross-country on Art Isle would lead you through coarse, brown beach sand, snow and ice, and fine, golden desert sand within a very short time.", "requires_awardid": null, "requires_questid_completed": [], @@ -402105,13 +400127,11 @@ { "id": 1045, "notes": "Discussed: The Silver Blaze.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "My dear, we've gone over this.", @@ -402121,7 +400141,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "She saw a moving animal in the dark. She may have believed she saw an Appaloosa because they are so much more common on these isles than Zebras, and we do have some very loud Patterned Leopards here.", "requires_awardid": null, "requires_questid_completed": [], @@ -402135,13 +400155,11 @@ { "id": 1046, "notes": "Discussed: The Blue-Green Dye", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "No, I may be entirely wrong here. I need some time to think.", @@ -402151,7 +400169,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Unless it was used as a saddlepad afterward, or sewn into one, or...", "requires_awardid": null, "requires_questid_completed": [], @@ -402165,23 +400183,21 @@ { "id": 1047, "notes": "Follow up the last clue.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "And the fact that there was still ice, or just water, to be found shows that the trip from Art Isle was made in haste.", "requires_awardid": null, "requires_questid_completed": [], @@ -402195,13 +400211,11 @@ { "id": 1048, "notes": "Candide hands out fruit.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [ { @@ -402234,16 +400248,14 @@ { "id": 1049, "notes": "Candide asks you to find his Golden Sheep.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -402264,16 +400276,14 @@ { "id": 1050, "notes": "Rafiki hints that Galvin knows where a sheep is", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -402281,7 +400291,7 @@ "warp_x": null, "warp_y": null, "success_message": "Rafiki hints that Galvin may know where a sheep is.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -402294,16 +400304,14 @@ { "id": 1108, "notes": "Galvin sends you to Deidra to make a peacock feather necklace for Nina.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 500, "items_gained": [], "quest_points": 0, @@ -402324,16 +400332,14 @@ { "id": 1051, "notes": "Galvin tells you one of the golden sheep is with Nina.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -402354,17 +400360,15 @@ { "id": 1053, "notes": "You find a clue to a golden sheep on the road.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 376, "y": 357 }, "tracked": true, - "repeats": 50, + "max_repeats": 50, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -402391,16 +400395,14 @@ { "id": 1052, "notes": "Nina suggest searching the road outside for clues to the missing sheep.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -402421,13 +400423,11 @@ { "id": 1054, "notes": "Ms Mabel Sends You In Search Of The Perp!", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, dear. Sorry, I seemed to have lost my train of thought.", @@ -402451,13 +400451,11 @@ { "id": 1055, "notes": "The Clue of the Crumpled Map", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], "fail_npc_chat": "No. That's my souvenir of a very odd night.", @@ -402467,7 +400465,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "That's what I thought at first. But look closely.", "requires_awardid": null, "requires_questid_completed": [], @@ -402481,16 +400479,14 @@ { "id": 1056, "notes": "You find Nephele, the golden sheep, the first time.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -402498,7 +400494,7 @@ "warp_x": null, "warp_y": null, "success_message": "Nephele will not follow you home. Better return to Candide and let him know.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -402511,13 +400507,11 @@ { "id": 1057, "notes": "Candide asks you to make apple treats for his sheep.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -402546,13 +400540,11 @@ { "id": 1058, "notes": "Give apple treat to sheep Nephele", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -402581,16 +400573,14 @@ { "id": 1059, "notes": "Agree to help Mrs Claus with anniversary gift", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -402611,16 +400601,14 @@ { "id": 1060, "notes": "Talk to Kilye to find out what she needs to make harnesses", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -402641,16 +400629,14 @@ { "id": 1061, "notes": "Talk to Barb Sower about making reindeer harnesses. ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -402671,13 +400657,11 @@ { "id": 1062, "notes": "Bring items back to Barb Sower for the reindeer harnesses", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -402714,13 +400698,11 @@ { "id": 1063, "notes": "Tell Kilye you have the plain reindeer harnesses", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have the harnesses yet. Remember to go and see Barb Sower in Shellton to get them made. ", @@ -402746,13 +400728,11 @@ { "id": 1064, "notes": "Get red reindeer harness made", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -402785,13 +400765,11 @@ { "id": 1065, "notes": "Get yellow harness made & pick up red harness. ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -402828,13 +400806,11 @@ { "id": 1066, "notes": "Get purple harness made & pick up yellow harness", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -402871,13 +400847,11 @@ { "id": 1067, "notes": "Get blue harness made and pick up purple harness", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -402914,13 +400888,11 @@ { "id": 1068, "notes": "Get green harness made and pick up blue harness", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -402957,13 +400929,11 @@ { "id": 1069, "notes": "Get black harness made and pick up green harness", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -403000,13 +400970,11 @@ { "id": 1070, "notes": "get white harness made and pick up black harness. ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -403043,13 +401011,11 @@ { "id": 1071, "notes": "Pick up both the white and brown harnesses. ", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -403090,13 +401056,11 @@ { "id": 1091, "notes": "Remy gives you bagels and knishes for King Phil", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 600, "items_required": [ { @@ -403125,13 +401089,11 @@ { "id": 1073, "notes": "Give Mrs Claus Prancer's and Vixen's Harnesses", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -403164,13 +401126,11 @@ { "id": 1074, "notes": "Give Mrs Claus Comet and Cupid's Harnesses", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -403204,12 +401164,10 @@ "id": 1075, "notes": "Give Mrs Claus Donner and Blitzen's harnesses", "title": "Mrs. Claus' Anniversary Gift ", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -403246,16 +401204,14 @@ { "id": 1077, "notes": "You find Athamos, the golden sheep, the first time.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -403263,7 +401219,7 @@ "warp_x": null, "warp_y": null, "success_message": "Athamos will not follow you home. Better return to Candide and let him know.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -403276,13 +401232,11 @@ { "id": 1078, "notes": "Give apple treat to sheep Athamos.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -403311,16 +401265,14 @@ { "id": 1079, "notes": "Sara Sends You To The Solomon Island", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -403341,13 +401293,11 @@ { "id": 1080, "notes": "Give Eddie another strawberry in exchange for information about the sheep.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 15, + "max_repeats": 15, "money_cost": 0, "items_required": [ { @@ -403376,13 +401326,11 @@ { "id": 1081, "notes": "You take the Star of Solomon from Flo.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -403411,13 +401359,11 @@ { "id": 1082, "notes": "You take the Beryl from Flo.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -403446,16 +401392,14 @@ { "id": 1083, "notes": "King Phil sends you to get him some lunch.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -403477,15 +401421,13 @@ "id": 1086, "notes": "End of Quest: Opal Sandstone's Stolen Sapphire: Ms. Mabel Investigates", "title": "Opal Sandstone's Sapphire: Ms Mabel Investigates", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 300, @@ -403506,13 +401448,11 @@ { "id": 1085, "notes": "Give Diamonds and Sapphires to Opal", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -403541,13 +401481,11 @@ { "id": 1087, "notes": "A gift from Ms. Mabel", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -403559,7 +401497,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -403580,23 +401518,21 @@ { "id": 1088, "notes": "King Phil points you in the direction of a golden sheep.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You will find the sheep mooning about near the palm tree at the very northern tip of this island. Good luck to you, Sir!", "requires_awardid": null, "requires_questid_completed": [], @@ -403610,13 +401546,11 @@ { "id": 1089, "notes": "Give King Phil his bagels and knishes", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -403645,13 +401579,11 @@ { "id": 1090, "notes": "Flo and the Denuement (for tracking only.)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], "fail_npc_chat": "Very good thinking, that is. I be impressed.", @@ -403661,7 +401593,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Very good thinking, that is. I be impressed.", "requires_awardid": null, "requires_questid_completed": [], @@ -403675,16 +401607,14 @@ { "id": 1092, "notes": "You find Phrixia, the golden sheep, the first time.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -403692,7 +401622,7 @@ "warp_x": null, "warp_y": null, "success_message": "Phrixia will not follow you home. Better return to Candide and let him know.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -403705,13 +401635,11 @@ { "id": 1093, "notes": "Give apple treat to sheep Phrixia", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -403740,16 +401668,14 @@ { "id": 1094, "notes": "Demetrius sends you to Crescent Isle.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -403770,16 +401696,14 @@ { "id": 1095, "notes": "Luna informs you a sheep is on her island.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -403800,16 +401724,14 @@ { "id": 1096, "notes": "You find Helle, the golden sheep, the first time.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -403817,7 +401739,7 @@ "warp_x": null, "warp_y": null, "success_message": "Helle will not follow you home. Better return to Candide and let him know.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -403830,13 +401752,11 @@ { "id": 1097, "notes": "Give apple treat to sheep Helle.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -403865,16 +401785,14 @@ { "id": 1098, "notes": "Return Nephele to Candide", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -403882,7 +401800,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have reunited Nephele with Candide!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -403895,16 +401813,14 @@ { "id": 1099, "notes": "You return Athamos to Candide", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -403912,7 +401828,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have reunited Athamos with Candide!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -403925,16 +401841,14 @@ { "id": 1100, "notes": "You return Phrixia to Candide", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -403942,7 +401856,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have reunited Phrixia with Candide!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -403955,16 +401869,14 @@ { "id": 1101, "notes": "You return Helle to Candide", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -403972,7 +401884,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have reunited Helle with Candide!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -403985,23 +401897,21 @@ { "id": 1102, "notes": "Give first sheep to Candide", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 25, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Marvelous! Let's see which one it is...", "requires_awardid": null, "requires_questid_completed": [], @@ -404015,23 +401925,21 @@ { "id": 1103, "notes": "Give second sheep to Candide", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 28, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Another sheep found! Let's see which one it is...", "requires_awardid": null, "requires_questid_completed": [], @@ -404045,16 +401953,14 @@ { "id": 1109, "notes": "Deidre asks you to get 15 peacock feathers.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -404075,23 +401981,21 @@ { "id": 1104, "notes": "You give a third sheep to Candide", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 30, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Yet another returned to the fold! Let's see which one it is...", "requires_awardid": null, "requires_questid_completed": [], @@ -404105,13 +402009,11 @@ { "id": 1105, "notes": "Give final sheep to Candide", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "The final sheep has returned! Let's see which one it is...", @@ -404121,7 +402023,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "The final sheep has returned! Let's see which one it is...", "requires_awardid": null, "requires_questid_completed": [], @@ -404142,7 +402044,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You haven't found all of the sheep yet? Best to go back out and search some more.", @@ -404171,23 +402073,21 @@ { "id": 1107, "notes": "Liam the Farrier Tells You Your Minute Is Up (tracking only)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9, + "max_repeats": 9, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "There, that's your minute. I got work to do.", "requires_awardid": null, "requires_questid_completed": [], @@ -404201,13 +402101,11 @@ { "id": 1110, "notes": "Deidra gives you a feather necklace in exchange for 15 peacock feathers.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -404240,13 +402138,11 @@ { "id": 1111, "notes": "Deidra gives you a feather necklace in exchange for 15 peacock feathers.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -404279,16 +402175,14 @@ { "id": 1112, "notes": "Galvin asks you to deliver the necklace to Nina.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -404296,7 +402190,7 @@ "warp_x": null, "warp_y": null, "success_message": "Galvin asked you to deliver the necklace to Nina on Tail Isle. You earned $2000.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -404310,12 +402204,10 @@ "id": 1113, "notes": "You give the feather necklace to Nina", "title": "Galvin's Birthday Present", - "requires_questid_npc": [ - 1106 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -404334,7 +402226,9 @@ "success_npc_chat": "Wow, thank you! I will wear this with pride! I will send a note to my brother to thank him. I appreciate you going to all this trouble!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1106 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "Tempest", @@ -404344,13 +402238,11 @@ { "id": 1114, "notes": "Sumiko Accepts Your Offer Of Help", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 10, + "max_repeats": 10, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, well, fine.", @@ -404374,13 +402266,11 @@ { "id": 1115, "notes": "Sumiko asks for 4 buckets and 4 feed tubs.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, forget it, then.", @@ -404404,13 +402294,11 @@ { "id": 1116, "notes": "Sumiko Buckets: Aura Hayward gives you a 3 buckets.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -404439,13 +402327,11 @@ { "id": 1117, "notes": "Sumiko Buckets: Harry Holterz sells you a bucket and a tub.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 200, "items_required": [ { @@ -404474,16 +402360,14 @@ { "id": 1118, "notes": "Kiah asks you to bring her valerian root.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -404491,7 +402375,7 @@ "warp_x": null, "warp_y": null, "success_message": "Kiah has asked you to bring her Valerian Roots.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -404504,13 +402388,11 @@ { "id": 1119, "notes": "Sumiko Buckets: Staebulman gives you a bucket and a tub.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -404543,13 +402425,11 @@ { "id": 1120, "notes": "Sumiko Buckets: Donna Hayes sells you a feed tub.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 150, "items_required": [ { @@ -404557,7 +402437,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -404579,12 +402459,10 @@ "id": 1121, "notes": "Sumiko Gets Her Buckets and Tubs ", "title": "Sumiko's Buckets", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -404621,17 +402499,15 @@ { "id": 1122, "notes": "Find a valerian plant.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 309, "y": 113 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -404642,7 +402518,7 @@ "warp_x": null, "warp_y": null, "success_message": "You see a small green plant with fragrant pink flowers. This must be the plant Kiah was talking about! It looks like either a shovel or a rake will get you the roots.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -404657,17 +402533,15 @@ { "id": 1123, "notes": "Dig up the valerian plant.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 309, "y": 113 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -404683,7 +402557,7 @@ "warp_x": null, "warp_y": null, "success_message": "You dig up a Valerian Plant!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -404699,13 +402573,11 @@ { "id": 1131, "notes": "Sumiko Saddles: Tessa sells you an old saddle for cheap.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 100, "items_required": [ { @@ -404734,17 +402606,15 @@ { "id": 1124, "notes": "Use the rake to get valerian roots.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 309, "y": 113 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -404760,7 +402630,7 @@ "warp_x": null, "warp_y": null, "success_message": "You carefully rake away some dirt and snip off a few of the roots of the plant, leaving the rest of it alone.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -404776,13 +402646,11 @@ { "id": 1125, "notes": "Give Kiah the valerian plant", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -404811,13 +402679,11 @@ { "id": 1126, "notes": "Give Kiah valerian roots", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -404846,13 +402712,11 @@ { "id": 1127, "notes": "Sumiko asks for Halters with Leads, and used saddles.", - "title": "", - "requires_questid_npc": [ - 1121 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "What was I talking about again?", @@ -404866,7 +402730,9 @@ "success_npc_chat": "I need halters with leads, and used saddles, preferably child-sized; four of each. Here's money for expenses.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1121 + ], "hide_reply_on_fail": true, "difficulty": null, "author": null, @@ -404876,13 +402742,11 @@ { "id": 1128, "notes": "Sumiko Saddles: Belinda sells you a child's saddle.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -404911,13 +402775,11 @@ { "id": 1129, "notes": "Sumiko Saddles: Bridgett gives your 4 halters with leads.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -404946,13 +402808,11 @@ { "id": 1130, "notes": "Sumiko Saddles: Goodwin gives you two Aussie saddles.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -404982,12 +402842,10 @@ "id": 1132, "notes": "Sumiko Saddles: End of Saddle Part. ", "title": "Sumiko's Saddles", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405024,16 +402882,14 @@ { "id": 1133, "notes": "Kiah sends you after neem bark.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -405041,7 +402897,7 @@ "warp_x": null, "warp_y": null, "success_message": "Kiah has asked you to gather bark from a neem tree.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -405054,13 +402910,11 @@ { "id": 1134, "notes": "Give Kiah large neem bark.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405089,16 +402943,14 @@ { "id": 1135, "notes": "Kiah sends you after a jungle treasure.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -405119,13 +402971,11 @@ { "id": 1136, "notes": "Sumiko Mounting Station: Instructions to player", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I need you to go buy me Belinda Buckett's mounting block.", @@ -405149,13 +402999,11 @@ { "id": 1137, "notes": "Sumiko Mounting Block: Buy for $10,000", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 10000, "items_required": [], "fail_npc_chat": "Aw, who do you think you're dealing with?! You don't have $10,000 on you!", @@ -405179,13 +403027,11 @@ { "id": 1138, "notes": "Sumiko Mounting Block: Buy for $5,000", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 5000, "items_required": [], "fail_npc_chat": "Cheapskate! Who are you kidding?! You don't even have the money she said she gave you!", @@ -405209,13 +403055,11 @@ { "id": 1139, "notes": "Sumiko Mounting Block: Buy for $2,500", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 2500, "items_required": [], "fail_npc_chat": "You haven't got the money! Who do you think you're kidding? Get out of here!", @@ -405239,24 +403083,22 @@ { "id": 1140, "notes": "Buy the mount from Talia", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -405269,24 +403111,22 @@ { "id": 1141, "notes": "Give Nicolette a paint base (tracking only, actions 1342 and 1323 chain to this.)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -405299,13 +403139,11 @@ { "id": 1142, "notes": "Nizhoni checks to see that you've brought her all the right materials.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Some materials are still missing. Come back when you have them all.", @@ -405335,12 +403173,10 @@ "id": 1143, "notes": "Sumiko Mounting Block: End ", "title": "Sumiko's Custom Mounting Block", - "requires_questid_npc": [ - 1132 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405359,7 +403195,9 @@ "success_npc_chat": "Well, thank you so much for all your work on behalf of the Appleton Riding for the Handicapped Center! Please accept this small reward, I hope you will find it useful.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1132 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "SpottedRose", @@ -405369,13 +403207,11 @@ { "id": 1144, "notes": "Nicolette will pay $30 each for copper ores.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, would you? I'll pay you $30 each for copper ores! Bring as much as you can, I can always use it!", @@ -405399,13 +403235,11 @@ { "id": 1145, "notes": "Nicolette buys copper ore", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -405434,17 +403268,15 @@ { "id": 1146, "notes": "Small Piece of Amber 1", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 473, "y": 188 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405459,7 +403291,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find a small Piece of amber. It looks like it is the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -405475,17 +403307,15 @@ { "id": 1147, "notes": "Small Piece of Amber 2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 473, "y": 190 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405500,7 +403330,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find a small Piece of amber. It looks like it is the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -405516,17 +403346,15 @@ { "id": 1148, "notes": "Small Piece of Amber 3", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 472, "y": 188 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405541,7 +403369,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find a small Piece of amber. It looks like it is the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -405557,17 +403385,15 @@ { "id": 1149, "notes": "Small Piece Of Amber 4", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 470, "y": 190 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405582,7 +403408,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find a small Piece of amber. It looks like it is the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -405598,13 +403424,11 @@ { "id": 1166, "notes": "Give Nizhoni the Beaded Periwinkle Shells", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405641,17 +403465,15 @@ { "id": 1150, "notes": "Large Piece of Amber", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 475, "y": 187 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405666,7 +403488,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You've found a large and beautiful Piece of Amber, just the right size for a pipe bowl.", "requires_awardid": null, "requires_questid_completed": [], @@ -405682,17 +403504,15 @@ { "id": 1151, "notes": "Small fire opal 1", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 957, "y": 403 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405707,7 +403527,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find a small pebble of Black Fire Opal. It looks like the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -405723,17 +403543,15 @@ { "id": 1152, "notes": "Small fire opal 2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 955, "y": 403 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405748,7 +403566,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find a small pebble of Black Fire Opal. It looks like the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -405764,17 +403582,15 @@ { "id": 1153, "notes": "Small fire opal 3", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 955, "y": 406 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405789,7 +403605,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find a small pebble of Black Fire Opal. It looks like the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -405805,17 +403621,15 @@ { "id": 1154, "notes": "Small fire opal 4", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 958, "y": 406 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405830,7 +403644,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find a small pebble of Black Fire Opal. It looks like the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -405846,17 +403660,15 @@ { "id": 1155, "notes": "Large Fire Opal", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 959, "y": 404 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405871,7 +403683,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find a large chunk of Black Fire Opal filled with beautiful flecks of fiery red , perfect for carving into a pipe bowl.", "requires_awardid": null, "requires_questid_completed": [], @@ -405887,17 +403699,15 @@ { "id": 1156, "notes": "Small Aquamarine 1", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 217, "y": 341 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405912,7 +403722,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find an Aquamarine crystal. It looks like the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -405928,17 +403738,15 @@ { "id": 1157, "notes": "Small Aquamarine 2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 220, "y": 342 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405953,7 +403761,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find an Aquamarine crystal. It looks like the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -405969,17 +403777,15 @@ { "id": 1158, "notes": "Small Aquamarine 3", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 217, "y": 345 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -405994,7 +403800,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find an Aquamarine crystal. It looks like the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -406010,17 +403816,15 @@ { "id": 1159, "notes": "Small Aquamarine 4", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 221, "y": 341 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -406035,7 +403839,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find an Aquamarine crystal. It looks like the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -406051,17 +403855,15 @@ { "id": 1160, "notes": "Large Aquamarine Crystal", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 215, "y": 343 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -406076,7 +403878,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find a large crystal of the most beautiful pure blue aquamarine. Just what Nizhoni wanted!", "requires_awardid": null, "requires_questid_completed": [], @@ -406092,17 +403894,15 @@ { "id": 1161, "notes": "Small beaded periwinkle shell 1", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 704, "y": 277 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -406117,7 +403917,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find a small Beaded Periwinkle Shell. It looks like the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -406133,17 +403933,15 @@ { "id": 1162, "notes": "Small beaded periwinkle shell 2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 702, "y": 278 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -406158,7 +403956,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find a small Beaded Periwinkle Shell. But it is too small for anything except, perhaps, a bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -406174,17 +403972,15 @@ { "id": 1163, "notes": "Small beaded periwinkle shell 3", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 701, "y": 279 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -406199,7 +403995,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find a small Beaded Periwinkle Shell. It looks like the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -406215,17 +404011,15 @@ { "id": 1164, "notes": "Small beaded periwinkle shell 4", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 697, "y": 280 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -406240,7 +404034,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find a small Beaded Periwinkle Shell. It looks like the perfect size for a small bead.", "requires_awardid": null, "requires_questid_completed": [], @@ -406256,17 +404050,15 @@ { "id": 1165, "notes": "Large Beaded Periwinkle Shell", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 697, "y": 278 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -406281,7 +404073,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You find an enormous Beaded Periwinkle Shell; it's almost already the perfect shape for a pipe bowl.", "requires_awardid": null, "requires_questid_completed": [], @@ -406297,13 +404089,11 @@ { "id": 1167, "notes": "Give Nizhoni the Aquamarine", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -406340,13 +404130,11 @@ { "id": 1168, "notes": "Give Nizhoni the Amber", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -406383,13 +404171,11 @@ { "id": 1169, "notes": "Give Nizhoni the Black Fire Opals", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 4, + "max_repeats": 4, "money_cost": 0, "items_required": [ { @@ -406426,13 +404212,11 @@ { "id": 1170, "notes": "Nizhoni sends you to have beads made.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Please leave me for a while.", @@ -406456,11 +404240,11 @@ { "id": 1171, "notes": "Nicolette makes you four Small Periwinkle beads.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -406493,11 +404277,11 @@ { "id": 1172, "notes": "Nicolette makes you four Aquamarine beads.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -406530,11 +404314,11 @@ { "id": 1173, "notes": "Nicolette makes you four Amber beads.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -406567,11 +404351,11 @@ { "id": 1174, "notes": "Nicolette makes you four Black Fire Opal beads.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -406604,11 +404388,11 @@ { "id": 1180, "notes": "Give Nizhoni Oranges and Apples.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -406641,21 +404425,21 @@ { "id": 1175, "notes": "Beads Have Been Made for Nizhoni (tracker only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Good luck with those beads!", "requires_awardid": null, "requires_questid_completed": [], @@ -406669,11 +404453,11 @@ { "id": 1176, "notes": "Nizhoni Examines the Periwinkle Shell and Aquamarine Beads (tracking only).", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -406706,11 +404490,11 @@ { "id": 1177, "notes": "Nizhoni Examines the Amber and Black Fire Opal Beads (for tracking only).", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -406743,11 +404527,11 @@ { "id": 1178, "notes": "Give Nizhoni 4 Strong, Skinny Branches.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -406776,11 +404560,11 @@ { "id": 1179, "notes": "Agree to help Humpty with his True Love", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": " I must say, my heart is all aflutter now at the thought of seeing my fair Patience again. ", @@ -406804,11 +404588,11 @@ { "id": 4575, "notes": "Nizhoni checks to see that you've spoken with all four Spirit Horses", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have not yet completed the task of honoring all four Spirit Horses with the calumets. Come back when you have.", @@ -406818,7 +404602,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Yes, I can see it in your hair, how it sparkles. That is good. All is well. And what have you gained from the experience?", "requires_awardid": null, "requires_questid_completed": [ @@ -406837,11 +404621,11 @@ { "id": 1181, "notes": "Flo Withego Takes The Cloth.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -406874,7 +404658,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Minigame Quest.", @@ -406885,7 +404669,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Cloud Coins #1! You earned $5000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -406902,7 +404686,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Minigame Quest.", @@ -406913,7 +404697,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Cloud Coins #2! You earned $5000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -406930,7 +404714,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Minigame Quest.", @@ -406941,7 +404725,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Cloud Coins #3! You earned $5000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -406958,7 +404742,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Minigame Quest.", @@ -406969,7 +404753,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Cloud Coins #4! You earned $5000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -406986,7 +404770,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Minigame Quest.", @@ -406997,7 +404781,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Cloud Coins #5! You earned $5000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -407014,7 +404798,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Minigame Quest.", @@ -407025,7 +404809,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Cloud Coins #6! You earned $5000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -407042,7 +404826,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Minigame Quest.", @@ -407053,7 +404837,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Cloud Coins #7! You earned $5000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -407070,7 +404854,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Minigame Quest.", @@ -407081,7 +404865,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Cloud Coins #8! You earned $5000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -407094,11 +404878,11 @@ { "id": 1191, "notes": "Gidget gives you the stone.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -407106,7 +404890,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -407127,11 +404911,11 @@ { "id": 1192, "notes": "Gidget gives you the nut.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -407139,7 +404923,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -407160,11 +404944,11 @@ { "id": 1193, "notes": "Meet the Big Bad Wolf (tracking only, so you can talk about him).", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Welcome back to my humble abode. Is there anything I can do to-- I mean, for you?", @@ -407174,7 +404958,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Well, now that you've found me, is there anything I can do to-- I mean, for you?", "requires_awardid": null, "requires_questid_completed": [], @@ -407188,11 +404972,11 @@ { "id": 1194, "notes": "Pig III sends you to find Wilson.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, no...", @@ -407216,14 +405000,14 @@ { "id": 1195, "notes": "Pig III Asks you to tell his brothers that he can't warn them about BB Wolf anymore.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -407244,11 +405028,11 @@ { "id": 1196, "notes": "Pig II is Warned.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh my goodness...", @@ -407272,11 +405056,11 @@ { "id": 1197, "notes": "Pig I is Warned", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Fine!", @@ -407304,7 +405088,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You didn't warn both of them! I can tell by the look on your face! I don't want to lose a brother! Go warn the other brother!", @@ -407331,11 +405115,11 @@ { "id": 1199, "notes": "Give Kiah the stone.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -407364,22 +405148,22 @@ { "id": 1200, "notes": "Tracker to verify that Gidget gave you the stone or rock.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -407392,11 +405176,11 @@ { "id": 1201, "notes": "Give Kiah the nut.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -407425,14 +405209,14 @@ { "id": 1204, "notes": "Get first small neem bark.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -407453,11 +405237,11 @@ { "id": 1941, "notes": "Give Epona $1,000 to participate in her quiz.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 1000, "items_required": [], "fail_npc_chat": "I'm sorry, but it doesn't look like you have enough money right now. Try coming back later.", @@ -407481,11 +405265,11 @@ { "id": 1202, "notes": "Pecos Bill instructs you to get him ten Sparkling Feathers.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "*Danger, Danger Will Robinson!*", @@ -407509,11 +405293,11 @@ { "id": 1203, "notes": "Pecos Bill gives you a rope to catch Widow-Maker with.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -407546,11 +405330,11 @@ { "id": 1205, "notes": "Get first small neem bark.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -407558,7 +405342,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -407579,14 +405363,14 @@ { "id": 1206, "notes": "Kiah sends you after more neem bark.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -407594,7 +405378,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have been asked to gather more neem bark.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -407607,11 +405391,11 @@ { "id": 1207, "notes": "Give Kiah a small neem bark.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -407640,11 +405424,11 @@ { "id": 1208, "notes": "Get second small neem bark", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -407652,7 +405436,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -407673,11 +405457,11 @@ { "id": 1209, "notes": "Give Kiah more small neem bark.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -407706,14 +405490,14 @@ { "id": 1210, "notes": "Nilla sends you after 10 walnuts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -407734,11 +405518,11 @@ { "id": 1211, "notes": "Give Nilla 10 walnuts, get a diamond and the neem bark.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -407771,11 +405555,11 @@ { "id": 1221, "notes": "Get the large neem bark.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -407783,7 +405567,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -407791,7 +405575,7 @@ "warp_x": null, "warp_y": null, "success_message": "Sliding past the happy squirrel, you are able to carefully peel a large piece of bark from the neem tree. You got the Neem Bark!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -407804,22 +405588,22 @@ { "id": 1212, "notes": "Done visiting Nilla the Squirrel. Tracking only.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -407836,7 +405620,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -407865,14 +405649,14 @@ { "id": 1214, "notes": "Capture Widow-Maker", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -407893,22 +405677,22 @@ { "id": 1215, "notes": "Ready to go after Kiah's third item. Tracker only.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -407921,14 +405705,14 @@ { "id": 1216, "notes": "Kiah sends you after fireflower leaves.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -407949,17 +405733,15 @@ { "id": 1217, "notes": "Fireflower plant here", - "title": "", - "requires_questid_npc": [ - 1216 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 199, "y": 307 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -407975,10 +405757,11 @@ "warp_x": null, "warp_y": null, "success_message": "You found a Fireflower Plant! You carefully pluck a few leaves.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 1216, 1216 ], "hide_reply_on_fail": false, @@ -407990,7 +405773,7 @@ { "id": 1218, "notes": "Fireflower plant here", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -407998,7 +405781,7 @@ "y": 312 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408014,7 +405797,7 @@ "warp_x": null, "warp_y": null, "success_message": "You found a Fireflower Plant! You carefully pluck a few leaves.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -408029,7 +405812,7 @@ { "id": 1219, "notes": "Fireflower plant here", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -408037,7 +405820,7 @@ "y": 309 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408053,7 +405836,7 @@ "warp_x": null, "warp_y": null, "success_message": "You found a Fireflower Plant! You carefully pluck a few leaves.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -408072,7 +405855,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408109,14 +405892,14 @@ { "id": 1222, "notes": "Sara sends you to Eldorado Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -408137,11 +405920,11 @@ { "id": 1223, "notes": "Trade Periwinkle Calumet for Wooden Spirit Disk", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408174,11 +405957,11 @@ { "id": 1224, "notes": "Trade Aquamarine Calumet for Wooden Spirit Disc", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408211,11 +405994,11 @@ { "id": 4571, "notes": "Give coloring book", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408244,11 +406027,11 @@ { "id": 1225, "notes": "Trade the Amber Calumet for Wooden Spirit Disc.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408281,11 +406064,11 @@ { "id": 1226, "notes": "Trade the Fire Opal Calumet for a Wooden Spirit Disc", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408318,14 +406101,14 @@ { "id": 1284, "notes": "Paras asks for feathers and moonbeams.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -408346,11 +406129,11 @@ { "id": 1227, "notes": "Nizhoni gives you the Periwinkle Calumet.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408358,7 +406141,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -408379,11 +406162,11 @@ { "id": 1228, "notes": "Nizhoni gives you the Aquamarine Crystal Calumet", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408391,7 +406174,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -408412,11 +406195,11 @@ { "id": 1229, "notes": "Nizhoni gives you the Amber Calumet", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408424,7 +406207,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -408445,11 +406228,11 @@ { "id": 1230, "notes": "Nizhoni gives you the Black Fire Opal Calumet", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408457,7 +406240,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -408478,14 +406261,14 @@ { "id": 1231, "notes": "Rescue the First Little Pig", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -408506,14 +406289,14 @@ { "id": 1232, "notes": "Rescue the First and Second Little Pigs", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -408534,22 +406317,22 @@ { "id": 1233, "notes": "Tracker to move on to part 2 of Kiahs Harvest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -408563,15 +406346,13 @@ "id": 1234, "notes": "Pigs Saved! ", "title": "Pig Rescue!", - "requires_questid_npc": [ - 1198 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 25, @@ -408582,7 +406363,9 @@ "success_npc_chat": "No! He's afraid of glass, you see. Goodbye, and thank you, I think. Please accept this small reward with my... thanks. Goodbye!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1198 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "SpottedRose", @@ -408592,11 +406375,11 @@ { "id": 1235, "notes": "Hope gives popcorn and soda.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 25, "items_required": [ { @@ -408629,11 +406412,11 @@ { "id": 1236, "notes": "Princess Lilianna sends you out to find frogs.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "What? You didn't find me a frog, already?", @@ -408657,11 +406440,11 @@ { "id": 1237, "notes": "Hope gives pie and cocoa.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 45, "items_required": [ { @@ -408694,11 +406477,11 @@ { "id": 1238, "notes": "Hope gives fish and lemonade.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 80, "items_required": [ { @@ -408731,11 +406514,11 @@ { "id": 1239, "notes": "Hope gives waters and breads.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 120, "items_required": [ { @@ -408768,7 +406551,7 @@ { "id": 1240, "notes": "Find the Red Frog", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -408776,7 +406559,7 @@ "y": 466 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408807,7 +406590,7 @@ { "id": 1241, "notes": "Find the Green Frog", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -408815,7 +406598,7 @@ "y": 456 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408846,7 +406629,7 @@ { "id": 1242, "notes": "Find the Blue Frog", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -408854,7 +406637,7 @@ "y": 391 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408885,11 +406668,11 @@ { "id": 1243, "notes": "Present Three Frogs to Lilianna.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408930,7 +406713,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -408959,14 +406742,14 @@ { "id": 1245, "notes": "Aladdin sends you for gold and silver.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -408987,11 +406770,11 @@ { "id": 1246, "notes": "Aladdin takes gold and silver and asks for rubies and pearls.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409024,11 +406807,11 @@ { "id": 1247, "notes": "Aladdin has all his materials.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409061,14 +406844,14 @@ { "id": 1248, "notes": "Aislin sends you after peacock feathers.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -409089,11 +406872,11 @@ { "id": 1249, "notes": "Aladdin wonders how to stuff a genie in a lamp", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409126,14 +406909,14 @@ { "id": 1251, "notes": "Aislin sends you for sparkling feathers.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -409154,11 +406937,11 @@ { "id": 1250, "notes": "Give Aislin 20 peacock feathers.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409187,14 +406970,14 @@ { "id": 1253, "notes": "Aislin asks you to get pegasus feathers.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -409215,11 +406998,11 @@ { "id": 1252, "notes": "Give Aislin 20 sparkling feathers.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409252,7 +407035,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409260,7 +407043,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 50, @@ -409282,12 +407065,10 @@ "id": 1255, "notes": "Give Aislin pegasus feathers and finish the quest.", "title": "Elowyn's Wings", - "requires_questid_npc": [ - 348 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409306,7 +407087,9 @@ "success_npc_chat": "Oh, this is wonderful! It's more than I hoped for. These will bring just the right finishing touch to my wings! I can't thank you enough. Please take this as a token of my appreciation.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 348 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Tempest", @@ -409316,14 +407099,14 @@ { "id": 1256, "notes": "Caeralus sends you to Erebus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -409344,11 +407127,11 @@ { "id": 1257, "notes": "Erebus gives you a bag of feathers.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409356,7 +407139,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -409377,22 +407160,22 @@ { "id": 1258, "notes": "Finishing with Flo (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -409409,10 +407192,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 500, "items_gained": [], "quest_points": 25, @@ -409433,11 +407216,11 @@ { "id": 1260, "notes": "Mother Cat sends you out looking for Kitten Mittens", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oy vey...", @@ -409461,11 +407244,11 @@ { "id": 1261, "notes": "Duck Has Two Pairs of Mittens", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409494,7 +407277,7 @@ { "id": 1262, "notes": "Search for Mittens outside Lilianna's Castle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -409502,7 +407285,7 @@ "y": 438 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409537,7 +407320,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409570,14 +407353,14 @@ { "id": 1264, "notes": "Whystan sends you in search of Blocks.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -409598,11 +407381,11 @@ { "id": 1265, "notes": "Vern will make plans for Whystan's blocks set.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Block set... block buildings... block city... hmmm...", @@ -409626,11 +407409,11 @@ { "id": 1266, "notes": "Vern gives you the completed plans for Whystan's block set", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409659,11 +407442,11 @@ { "id": 1267, "notes": "Cecil asks for logs.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You know, I really don't like repeating myself.", @@ -409687,11 +407470,11 @@ { "id": 1268, "notes": "Give Cecil his logs.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409724,11 +407507,11 @@ { "id": 1269, "notes": "Cecil sells you the blocks.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -409757,11 +407540,11 @@ { "id": 1270, "notes": "Grey Slate sends you to Earl Bronze.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 10, + "max_repeats": 10, "money_cost": 0, "items_required": [], "fail_npc_chat": "Hey. Didn't you listen to me the first time?", @@ -409785,11 +407568,11 @@ { "id": 1271, "notes": "Earl Bronze asks you for Iron Ore.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Not now.", @@ -409813,11 +407596,11 @@ { "id": 1272, "notes": "Give Earl Bronze his iron and wax (and money) and he gives you the parts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -409854,11 +407637,11 @@ { "id": 1273, "notes": "Nicolette agrees to make glass windows and bricks.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Thought I already did that...", @@ -409882,11 +407665,11 @@ { "id": 1274, "notes": "Nicolette gives you a box full of glass parts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -409915,11 +407698,11 @@ { "id": 1275, "notes": "Give Whystan the wooden parts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409948,11 +407731,11 @@ { "id": 1276, "notes": "Give Whystan the metal bits.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -409985,7 +407768,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -410018,22 +407801,22 @@ { "id": 1278, "notes": "Have either glass or metal parts (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -410046,11 +407829,11 @@ { "id": 1279, "notes": "LRRH leaves for her grandmother's.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You can leave now.", @@ -410076,14 +407859,14 @@ { "id": 1280, "notes": "Davy sends you to Flipperton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -410104,14 +407887,14 @@ { "id": 1281, "notes": "Davy sends you to Crescent.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -410132,22 +407915,22 @@ { "id": 1282, "notes": "Iona gives information on Sam McGee. (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -410160,11 +407943,11 @@ { "id": 1283, "notes": "Felton gives you a photograph and a diary of Sam's", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -410176,7 +407959,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -410201,7 +407984,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -410234,22 +408017,22 @@ { "id": 1286, "notes": "Finished in Flilpperton for Sam's quest (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [ 1282, @@ -410265,11 +408048,11 @@ { "id": 1287, "notes": "Give Davy photo and diary.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -410281,7 +408064,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -410289,7 +408072,7 @@ "warp_x": null, "warp_y": null, "success_message": "You gave Davy the Torn Photograph and Old Diary.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -410302,14 +408085,14 @@ { "id": 1288, "notes": "Davy sends you to Carrotton.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -410317,7 +408100,7 @@ "warp_x": null, "warp_y": null, "success_message": "Davy has asked you to go to Carrotton.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -410330,11 +408113,11 @@ { "id": 1289, "notes": "Tucker gives you a book for Sam.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -410342,7 +408125,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -410350,7 +408133,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were given an Old Book.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -410363,11 +408146,11 @@ { "id": 1290, "notes": "Give Davy Sam's book from Tucker.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -410375,7 +408158,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -410383,7 +408166,7 @@ "warp_x": null, "warp_y": null, "success_message": "You handed Davy Sam's Old Book.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -410396,14 +408179,14 @@ { "id": 1291, "notes": "Davy sends you to Horse Shoe Village", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -410411,7 +408194,7 @@ "warp_x": null, "warp_y": null, "success_message": "Davy asked you to visit Horseshoe Village.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -410424,7 +408207,7 @@ { "id": 1292, "notes": "Dig up Sam's buried box.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -410432,7 +408215,7 @@ "y": 355 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -410448,7 +408231,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've found an Old Wooden Box!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -410463,11 +408246,11 @@ { "id": 1293, "notes": "Give wooden box to Davy.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -410483,7 +408266,7 @@ "warp_x": null, "warp_y": null, "success_message": "You gave the box to Davy.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -410496,11 +408279,11 @@ { "id": 1294, "notes": "Davy give you the bear to give to Sam", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -410508,7 +408291,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -410516,7 +408299,7 @@ "warp_x": null, "warp_y": null, "success_message": "Davy gave you the Old Teddy Bear to give to Sam.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -410529,11 +408312,11 @@ { "id": 1295, "notes": "Give the bear to Sam", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -410541,7 +408324,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -410549,7 +408332,7 @@ "warp_x": null, "warp_y": null, "success_message": "You gave the Old Teddy Bear to Sam.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -410563,15 +408346,13 @@ "id": 1296, "notes": "Get a reward from Davy and finish the quest.", "title": "The Triumph of Sam McGee", - "requires_questid_npc": [ - 1346 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 8000, "items_gained": [], "quest_points": 175, @@ -410579,10 +408360,12 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed The Triumph of Sam McGee! You earned $8,000 and 175 quest points!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1346 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Tempest", @@ -410592,14 +408375,14 @@ { "id": 1297, "notes": "Marisole sends you after special horse feed.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -410607,7 +408390,7 @@ "warp_x": null, "warp_y": null, "success_message": "Marisole has asked you to bring her 5 bales of Daisy Hay and 5 bags of Honey Oats. You were given $3000.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -410621,12 +408404,10 @@ "id": 1298, "notes": "Give Marisole special feed and finish the quest.", "title": "Marisole's New Friend", - "requires_questid_npc": [ - 1333 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -410657,7 +408438,9 @@ "success_npc_chat": "Oh, this is wonderful! I'm sure, using this special feed, I can befriend the wild horse in no time. Please take this reward for a job well done!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1333 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Tempest", @@ -410667,11 +408450,11 @@ { "id": 1299, "notes": "Silver Mary Sends You Out Shopping", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -410679,7 +408462,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -410700,22 +408483,22 @@ { "id": 1300, "notes": "Sam McGee rattles on about his Triumph (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -410728,14 +408511,14 @@ { "id": 1301, "notes": "Grandmother asks you to Waylay her granddaughter", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -410760,7 +408543,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this cookie cutter.", @@ -410788,7 +408571,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, I'm... I'm worried that that won't be enough! Can't you find someone else that's more or less on her way that can delay her for a bit? I'm just not ready! She does wander a bit, you know...", @@ -410816,14 +408599,14 @@ { "id": 1304, "notes": "Agree to help prince charming find the glass slipper", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -410844,11 +408627,11 @@ { "id": 1393, "notes": "Ugly Duckling gives you the glass slipper ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -410856,7 +408639,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -410877,22 +408660,22 @@ { "id": 1305, "notes": "Rose asks the box question (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 8, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -410905,7 +408688,7 @@ { "id": 1306, "notes": "Find a glass slipper clue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -410913,7 +408696,7 @@ "y": 458 }, "tracked": true, - "repeats": 10, + "max_repeats": 10, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -410923,7 +408706,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "There are very interesting webbed feet tracks all around this area. You should hurry back and tell Prince Charming!", "requires_awardid": null, "requires_questid_completed": [], @@ -410944,7 +408727,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this cookie cutter.", @@ -410972,7 +408755,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -411005,7 +408788,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this cookie cutter.", @@ -411033,7 +408816,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this cookie cutter.", @@ -411061,7 +408844,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this cookie cutter.", @@ -411089,7 +408872,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this cookie cutter.", @@ -411117,7 +408900,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this cookie cutter.", @@ -411141,14 +408924,14 @@ { "id": 1314, "notes": "Rose asks you to bring her pie a la mode", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -411156,7 +408939,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have agreed to bring Rose Pie a la Mode.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -411175,7 +408958,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this cookie cutter.", @@ -411203,7 +408986,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this cookie cutter.", @@ -411231,7 +409014,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this cookie cutter.", @@ -411262,7 +409045,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -411299,11 +409082,11 @@ { "id": 1319, "notes": "Will tells about his lost love", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], "fail_npc_chat": "You've talked to me so many times about the same thing!! 32,767 times, do you realize that?! OMG!! You need a life!!!", @@ -411313,8 +409096,8 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -411327,11 +409110,11 @@ { "id": 1320, "notes": "Give Will handkerchief and agree to bring him to Rose", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -411339,7 +409122,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -411347,7 +409130,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have given Will Rose's handkerchief and offered to bring him to her.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -411369,7 +409152,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -411381,7 +409164,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 100, @@ -411389,7 +409172,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed The Sailor's Lost Love Quest! You earned $3000, a Ruby, an Amethyst, and 100 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -411404,14 +409187,14 @@ { "id": 1322, "notes": "Aladdin asks for a Blue Morpho.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -411432,11 +409215,11 @@ { "id": 1323, "notes": "Give Aladdin a Blue Morpho", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -411469,14 +409252,14 @@ { "id": 1324, "notes": "Unicorn Uniter will do a favor for his favorite Pie maker.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -411497,14 +409280,14 @@ { "id": 1325, "notes": "Get Sticks and Hay for Pigs", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -411525,11 +409308,11 @@ { "id": 1326, "notes": "Stick the Pig, Hay the Pig, Get Cooperation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -411562,11 +409345,11 @@ { "id": 1327, "notes": "Nicolette Gives You A List", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -411574,7 +409357,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -411595,11 +409378,11 @@ { "id": 1328, "notes": "Temperton sells you oxides.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 200, "items_required": [ { @@ -411632,14 +409415,14 @@ { "id": 1329, "notes": "Agrees to get things for Peter the pumpkin eater. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -411664,7 +409447,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -411697,11 +409480,11 @@ { "id": 1331, "notes": "Robin sends you to Marisole with the harp.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -411709,7 +409492,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -411717,7 +409500,7 @@ "warp_x": 680, "warp_y": 211, "success_message": "*POOF* You are on Paradise Isle. You were given a Singing Harp.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -411730,14 +409513,14 @@ { "id": 1332, "notes": "Robin jumps you to Paradise Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -411745,7 +409528,7 @@ "warp_x": 680, "warp_y": 211, "success_message": "You have been jumped to Paradise Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -411759,12 +409542,10 @@ "id": 1333, "notes": "Give Robin the Thank You note and complete the quest.", "title": "Robin's Secret Crush", - "requires_questid_npc": [ - 570 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -411772,7 +409553,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 25, @@ -411783,7 +409564,9 @@ "success_npc_chat": "Oh, thank you so much! (Robin holds the note up to his nose to smell the scented stationery.) I'm going to go read this now, but please take this small reward and my many thanks for your help!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 570 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Tempest", @@ -411793,11 +409576,11 @@ { "id": 1334, "notes": "Give Marisole the harp and get her thank you note.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -411809,7 +409592,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -411830,11 +409613,11 @@ { "id": 1335, "notes": "Vern sells you four cans of white paint.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -411865,11 +409648,11 @@ { "id": 1336, "notes": "Give Nicolette the Oxides", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -411902,11 +409685,11 @@ { "id": 1337, "notes": "Give Nicolette the Ores", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -411939,11 +409722,11 @@ { "id": 1338, "notes": "Give Nicolette her list (to clear it from your inventory)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -411972,14 +409755,14 @@ { "id": 1339, "notes": "Nicolette sends you for skim milk for a paint base.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 20, + "max_repeats": 20, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -412000,11 +409783,11 @@ { "id": 1340, "notes": "Tony sells you some goat's milk.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -412033,11 +409816,11 @@ { "id": 1341, "notes": "Nicolette Sells You Four Cans Of Paint", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 4000, "items_required": [ { @@ -412066,11 +409849,11 @@ { "id": 1342, "notes": "Give Nicolette the White Paint ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -412099,11 +409882,11 @@ { "id": 1343, "notes": "Give Nicolette the Goat's Milk", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -412132,11 +409915,11 @@ { "id": 1344, "notes": "Dewey gives you fishing lures and sends you to Loch Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -412144,7 +409927,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -412152,7 +409935,7 @@ "warp_x": 677, "warp_y": 285, "success_message": "You were given a box of Fishing Lures and sent to Loch Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -412165,11 +409948,11 @@ { "id": 1347, "notes": "Give 10 worms to Davy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -412198,14 +409981,14 @@ { "id": 1345, "notes": "Dewey sends you to Loch Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -412230,7 +410013,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -412238,7 +410021,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 25, @@ -412259,14 +410042,14 @@ { "id": 1348, "notes": "Lucie sends you to Grant Funds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -412287,11 +410070,11 @@ { "id": 1349, "notes": "Grant Funds sells you a very expensive French Horn.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 5000, "items_required": [ { @@ -412320,11 +410103,11 @@ { "id": 1350, "notes": "Grant Funds sells you a really cheap French horn.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -412353,14 +410136,14 @@ { "id": 1351, "notes": "You Have Acquired a French Horn.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -412368,7 +410151,7 @@ "warp_x": null, "warp_y": null, "success_message": "
You have acquired a French Horn. ", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -412381,22 +410164,22 @@ { "id": 1352, "notes": "Wolf tells you he was invited to the party (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -412409,11 +410192,11 @@ { "id": 1353, "notes": "Harry Holterz sells you costumes.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -412425,7 +410208,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -412446,11 +410229,11 @@ { "id": 1354, "notes": "Silver Mary Checks To See If You Have Everything She Asked For (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Avast, ye, WHO DO Y' THINK YE BE FOOLIN' WITH?! Y'ain't got all what I asked for! Now shove off afore I hang ye from the yard arm and get me my stuff like ye said ye was going to!", @@ -412460,7 +410243,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Arr, well, this all seems to be in order. Now... let me take a closer look here...", "requires_awardid": null, "requires_questid_completed": [ @@ -412478,11 +410261,11 @@ { "id": 1355, "notes": "Silver Mary takes the grungy old French Horn.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -412490,7 +410273,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -412511,11 +410294,11 @@ { "id": 1356, "notes": "Silver Mary takes the new French Horn.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -412523,7 +410306,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -412544,11 +410327,11 @@ { "id": 1357, "notes": "Mary Is Less Than Enthused with the dress.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -412556,7 +410339,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -412577,11 +410360,11 @@ { "id": 1358, "notes": "Silver Mary takes the Captain's Costume", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -412589,7 +410372,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -412610,11 +410393,11 @@ { "id": 1359, "notes": "Mary Takes The Paint.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -412643,21 +410426,21 @@ { "id": 1360, "notes": "Vern Has Paint you can buy.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Let me think... I have some leftover cans, I think. Hold on a second....
(Vern goes into a back room, and comes out with a few well-splattered cans.)
I have some lime, and navy... and four cans of good white, but that's it.", "requires_awardid": null, "requires_questid_completed": [], @@ -412671,14 +410454,14 @@ { "id": 1361, "notes": "Agree to get Rapunzel a hairpiece made. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -412699,11 +410482,11 @@ { "id": 1362, "notes": "M. Renard asks that you visit the local cheese emporium (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You would do this pour moi, un vieux renard? Merveilleux! You comprehend, an old fox, he does not have the money to pay you. But I can offer you for your services ces raisins magnifiques! They grow nowhere else! Pick as many as you like.", @@ -412727,14 +410510,14 @@ { "id": 1363, "notes": "M. Renard teleports you off his island.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -412759,7 +410542,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -412792,14 +410575,14 @@ { "id": 1365, "notes": "Fitzgerald sends you to Aesop Island.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -412820,14 +410603,14 @@ { "id": 1366, "notes": "Agree to get the copper ore for Inigo to make hair piece", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -412848,11 +410631,11 @@ { "id": 1367, "notes": "Give copper ore to Inigo for Rapunzel's hairpiece. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -412881,11 +410664,11 @@ { "id": 1368, "notes": "Pick up Rapunzel's hairpiece from Inigo", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -412914,14 +410697,14 @@ { "id": 1369, "notes": "Tony sends you to Shaylene Shampu for cheeze.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 42, + "max_repeats": 42, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -412946,7 +410729,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -412975,11 +410758,11 @@ { "id": 1371, "notes": "Shaylene gives you a list of cheese-making ingredients.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [ { @@ -413008,11 +410791,11 @@ { "id": 1372, "notes": "Shylene takes back her list if you refuse the quest.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 3000, "items_required": [ { @@ -413041,11 +410824,11 @@ { "id": 1373, "notes": "Winchell Takes You To The Clouds", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -413074,14 +410857,14 @@ { "id": 1374, "notes": "Winchell sends you to Cloud Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -413103,12 +410886,10 @@ "id": 2740, "notes": "Hansel thanks you ", "title": "Hansel's Little List", - "requires_questid_npc": [ - 1624 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -413137,7 +410918,9 @@ 2846, 2847 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1624 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Bklyn Filly", @@ -413147,14 +410930,14 @@ { "id": 1375, "notes": "Jayne sends you after his cunning hat.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -413162,7 +410945,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have agreed to go find Jayne's cunning hat.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -413175,14 +410958,14 @@ { "id": 1376, "notes": "Fluffy sends you for carrots.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -413190,7 +410973,7 @@ "warp_x": null, "warp_y": null, "success_message": "Fluffy the rabbit has sent you for 3 Carrots.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -413203,11 +410986,11 @@ { "id": 1377, "notes": "Give Fluffy 3 carrots.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -413244,7 +411027,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -413273,14 +411056,14 @@ { "id": 1379, "notes": "Agree to see if Inigo can build Grey Slate a menorah.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1500, "items_gained": [], "quest_points": 0, @@ -413301,14 +411084,14 @@ { "id": 1380, "notes": "Agree to get supplies for Inigo to start on the menorah ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -413329,11 +411112,11 @@ { "id": 1381, "notes": "Give Inigo the iron and copper for the menorah.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -413366,14 +411149,14 @@ { "id": 1382, "notes": "Agree to get a glass piece for Inigo from Nicolette. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -413394,14 +411177,14 @@ { "id": 1383, "notes": "Agree to get tin oxide for Nicolette to use for Inigo's piece. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -413422,11 +411205,11 @@ { "id": 1384, "notes": "Get tin oxide from Arthur Temperton for Nicolette. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 100, "items_required": [ { @@ -413455,11 +411238,11 @@ { "id": 1385, "notes": "Give Nicolette the tin oxide", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -413488,11 +411271,11 @@ { "id": 1386, "notes": "Pick up glass scene for the menorah", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -413521,11 +411304,11 @@ { "id": 1387, "notes": "Give Inigo the glass piece to be inserted into the menorah. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -413554,11 +411337,11 @@ { "id": 1388, "notes": "Pick up menorah from Inigo", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -413566,7 +411349,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -413587,14 +411370,14 @@ { "id": 1389, "notes": "Tell Linnea about Dalton's Reaction", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -413615,11 +411398,11 @@ { "id": 1390, "notes": "Agree to take the menorah to King Phil", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 50, + "max_repeats": 50, "money_cost": 0, "items_required": [ { @@ -413653,12 +411436,10 @@ "id": 1391, "notes": "Give King Phil the menorah from Grey Slate", "title": "King Phil's Menorah", - "requires_questid_npc": [ - 899 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -413670,7 +411451,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 250, @@ -413681,7 +411462,9 @@ "success_npc_chat": "Now that's a nice piece of hardware! Take this as a token of my appreciation - Please!! (King Phil mutters under his breath -If they would only stop having litters!)", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 899 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Jule", @@ -413691,22 +411474,22 @@ { "id": 1392, "notes": "Get paint base for Nicolette (tracking only, 1335 and 1340 chain to this)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -413719,14 +411502,14 @@ { "id": 1394, "notes": "Agree to find wood and leather for Xamba", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -413747,11 +411530,11 @@ { "id": 1395, "notes": "Xamba gives you the drum", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 300, "items_required": [ { @@ -413780,22 +411563,22 @@ { "id": 1397, "notes": "Xamba tells you about Lucie B. Euro possibly knowing about french horns (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -413808,11 +411591,11 @@ { "id": 1396, "notes": "Give Xamba wood and leather for drum", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -413845,11 +411628,11 @@ { "id": 1398, "notes": "Silver Mary Takes the Drum", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -413878,22 +411661,22 @@ { "id": 1399, "notes": "Give Mary one of the french horns (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -413906,11 +411689,11 @@ { "id": 1400, "notes": "Cinnamon sells you four liters of cow's milk.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 200, "items_required": [ { @@ -413939,7 +411722,7 @@ { "id": 1401, "notes": "Find Victor Voice, Harold Nickelendime's Sock Puppet", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -413947,7 +411730,7 @@ "y": 465 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -413978,14 +411761,14 @@ { "id": 1412, "notes": "Agree to find Victor Voice the sock puppet", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -413993,7 +411776,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have been asked by Wesley Haffdoller to find Harold Nickelendime's sock puppet.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -414010,7 +411793,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -414039,21 +411822,21 @@ { "id": 1403, "notes": "Silver Mary Has Her Horn (chained action)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Silver Mary has her Horn.", "requires_awardid": null, "requires_questid_completed": [], @@ -414067,14 +411850,14 @@ { "id": 1404, "notes": "Sandy Flint sends you in search of ore and logs so he can make a copper pot.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -414095,11 +411878,11 @@ { "id": 1405, "notes": "Give Sandy Flint some copper ores", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -414132,11 +411915,11 @@ { "id": 1406, "notes": "Give Sandy Flint Grapes and he agrees to make the pot for free!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 20, + "max_repeats": 20, "money_cost": 0, "items_required": [ { @@ -414169,11 +411952,11 @@ { "id": 1407, "notes": "Sandy Flint gives you the finished Copper Pot for a nominal fee.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 200, "items_required": [ { @@ -414202,11 +411985,11 @@ { "id": 1408, "notes": "Sandy Flint gives you the pot for grapes.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -414241,21 +412024,21 @@ { "id": 1409, "notes": "Sandy Flint Gives You The Copper Pot (chained action)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " The pot is huge and shallow, just right for cheesemaking.", "requires_awardid": null, "requires_questid_completed": [], @@ -414269,11 +412052,11 @@ { "id": 1410, "notes": "Nicolette takes your leftover oxides", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -414306,11 +412089,11 @@ { "id": 1414, "notes": "You deliver a bag of hazelnuts to Cara Cook ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -414339,11 +412122,11 @@ { "id": 1411, "notes": "Nicolette Bins Your Leftover List", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -414372,11 +412155,11 @@ { "id": 1413, "notes": "Hazel gives you a bag of hazelnuts to deliver.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -414384,7 +412167,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 600, "items_gained": [], "quest_points": 0, @@ -414406,15 +412189,13 @@ "id": 1415, "notes": "Hazel pays you for the the first delivery", "title": "Hazel's Delivery #1", - "requires_questid_npc": [ - 138 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 25, @@ -414425,7 +412206,9 @@ "success_npc_chat": "Wonderful. Here's a little something for your time and trouble. Come see me again when you have time. I'm sure I'll have another delivery for you.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 138 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Minet", @@ -414435,11 +412218,11 @@ { "id": 1416, "notes": "Hazel sends you to deliver hazelnuts to Ethel Barryjam in Hotton.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -414447,7 +412230,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -414468,14 +412251,14 @@ { "id": 1424, "notes": "Trayja agrees to make cheese wrap (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -414496,11 +412279,11 @@ { "id": 1417, "notes": "You deliver a bag of hazelnuts to Ethel Barryjam in Hotton.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -414508,7 +412291,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -414529,11 +412312,11 @@ { "id": 1418, "notes": "Hazel sends you to deliver hazelnuts to Phoebe Wares in Shellton.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -414541,7 +412324,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -414562,11 +412345,11 @@ { "id": 1419, "notes": "You deliver a bag of hazelnuts to Pheobe Wares in Shellton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -414596,15 +412379,13 @@ "id": 1420, "notes": "Hazel pays you for the the second delivery", "title": "Hazel's Delivery #2", - "requires_questid_npc": [ - 1415 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 4000, "items_gained": [], "quest_points": 25, @@ -414615,7 +412396,9 @@ "success_npc_chat": "Yes, I'm finally getting rid of a lot of the nuts. Thanks so much for all your help. Here's a little something for your trouble. Be sure to come again when you have time; I may have one more delivery for you.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1415 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Minet", @@ -414626,12 +412409,10 @@ "id": 1421, "notes": "Hazel pays for delivering hazelnuts to Phoebe Wares.", "title": "Hazel's Delivery #3", - "requires_questid_npc": [ - 1420 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You still have the hazelnuts! You'd better take those to Pheobe in Shellton right away!", @@ -414645,7 +412426,9 @@ "success_npc_chat": "Thanks again. You've been a great help and now I can finally move about my cabin without tripping over piles of nuts! Here's a small reward.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1420 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Minet", @@ -414655,14 +412438,14 @@ { "id": 1422, "notes": "Evelynn tells you to get her honeycombs and venetian food.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -414683,11 +412466,11 @@ { "id": 1423, "notes": "Evelynn makes some red wax for Shaylene's cheese", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -414724,11 +412507,11 @@ { "id": 1425, "notes": "Trayja sells you some cheese wrap.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 300, "items_required": [ { @@ -414757,21 +412540,21 @@ { "id": 1426, "notes": "Shaylene sends you on your way (resets the chat point if you decide to actually read the list she gave you).", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 0, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "That'd be awesome! Thanks so much! Mmm! Cheese!", "requires_awardid": null, "requires_questid_completed": [], @@ -414785,11 +412568,11 @@ { "id": 1427, "notes": "Give Shaylene the Copper Pot", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -414818,11 +412601,11 @@ { "id": 1428, "notes": "Give Shaylene the Red Wax", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -414851,11 +412634,11 @@ { "id": 1429, "notes": "Mrs. Claus Validates that you can go to Cloud Isle. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, dear, looks like you haven't quite made it to the 75% award level to be able to go to Cloud Isle. Why don't you come back and see me when you can?", @@ -414865,7 +412648,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Oh, that's great. And you wouldn't mind bringing me some back?", "requires_awardid": 3, "requires_questid_completed": [], @@ -414879,11 +412662,11 @@ { "id": 1430, "notes": "Mrs. Claus buys Pixie Dust ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -414912,11 +412695,11 @@ { "id": 1431, "notes": "Franklin Forge sells you a Curd Knife.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 300, "items_required": [ { @@ -414945,11 +412728,11 @@ { "id": 1432, "notes": "Miguela Pommel sells you a pack of cheesecloth.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 100, "items_required": [ { @@ -414978,22 +412761,22 @@ { "id": 1433, "notes": "You Have All the Cheesemaking Things (other successes chain to this).", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -415006,11 +412789,11 @@ { "id": 1434, "notes": "Give Shaylene the Cheesecloth", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415039,11 +412822,11 @@ { "id": 1435, "notes": "Give Shaylene the Cheese Wrap", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415072,11 +412855,11 @@ { "id": 1436, "notes": "Give Shaylene the Curd Knife", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415105,11 +412888,11 @@ { "id": 1437, "notes": "Shaylene Checks That She Has Everything She Needs ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "No, sorry, I still don't have everything I need. Please keep looking.", @@ -415139,11 +412922,11 @@ { "id": 1438, "notes": "Shaylene gives you Chevre for Renard", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415155,7 +412938,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -415176,11 +412959,11 @@ { "id": 1439, "notes": "Shaylene Rejects the Cow's Milk... but...", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415195,7 +412978,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "(Shaylene takes the cow's milk from you, looks at it critically, and then sniffs. She shakes her head sadly.) I'm afraid this milk has already spoiled.", "requires_awardid": null, "requires_questid_completed": [], @@ -415210,12 +412993,10 @@ "id": 1440, "notes": "Give Cheese to Renard", "title": "Monsieur Renard's Cheeses", - "requires_questid_npc": [ - 1364 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415238,7 +413019,9 @@ "success_npc_chat": "Oh, these are... (Monsieur Renard takes a bite.) ...acceptable, for a first try. Yes, acceptable. You have done well. I have come up with a reward for you. Please take this.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1364 + ], "hide_reply_on_fail": true, "difficulty": "Advanced", "author": "SpottedRose", @@ -415248,21 +413031,21 @@ { "id": 1441, "notes": "Nicolette Shows You The Pigments She's Made (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Come see the colors!
(On a table in a corner sit the box of chrome oxide, and three mortars and pestles. Inside are powders: leaf green, dusky pumpkin orange, deep sky blue, and dark mulberry.) I can mix you up the paint for $4000 for the lot", "requires_awardid": null, "requires_questid_completed": [], @@ -415276,11 +413059,11 @@ { "id": 1442, "notes": "Sandy Flint offers a trade of grapes for a pot.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You already did this bit.", @@ -415304,14 +413087,14 @@ { "id": 1443, "notes": "Agree to get broom for Phyllis Clipper", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -415336,7 +413119,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415365,11 +413148,11 @@ { "id": 1444, "notes": "Recieved Broom from Ed Klippit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415377,7 +413160,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -415385,7 +413168,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were given Phyllis Clipper's Broom from Ed Klippit.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -415400,14 +413183,14 @@ { "id": 1446, "notes": "Retrieve stolen map for Materia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -415428,11 +413211,11 @@ { "id": 1447, "notes": "Cupcake tells you where Matata should be", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, has he really, now? Well, I'm sure if you look around outside, you should be able to see him. He's usually here about this time of day.", @@ -415456,11 +413239,11 @@ { "id": 1448, "notes": "Shaylene Bins The List She Gave You", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415468,7 +413251,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -415489,11 +413272,11 @@ { "id": 1449, "notes": "Renard sends you out to purchase some cheesy comestibles, but doesn't know where you should go.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [], "fail_npc_chat": "Hélas, that I do not know. You will need to search for someone who has cows, or goats.", @@ -415503,7 +413286,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Hélas, that I do not know. You will need to search for someone who has cows, or goats.", "requires_awardid": null, "requires_questid_completed": [], @@ -415517,21 +413300,21 @@ { "id": 1450, "notes": "Player accepts M. Renard's quest. (Tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "M' chere, vous êtes un trésor! Yes, an absolute treasure! Now, pick for yourself the grapes délicieux that grow on the vines in the trees! Take as many as you like!", "requires_awardid": null, "requires_questid_completed": [], @@ -415545,14 +413328,14 @@ { "id": 1451, "notes": "Agree to get 15 bananas for Matata", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -415573,11 +413356,11 @@ { "id": 1452, "notes": "Give 15 bananas to Matata", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415614,7 +413397,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415622,7 +413405,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 50, @@ -415643,11 +413426,11 @@ { "id": 1454, "notes": "Kiah sends you to find Murukan the Lion", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415655,7 +413438,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -415663,7 +413446,7 @@ "warp_x": null, "warp_y": null, "success_message": "Kiah has sent you to find Murukan, the War Lion. You were given medicine for Katukilal.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -415676,14 +413459,14 @@ { "id": 1455, "notes": "Filmore the Pig Will Take Cattails", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -415704,11 +413487,11 @@ { "id": 1456, "notes": "Filmore Buys Cattails", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -415737,14 +413520,14 @@ { "id": 1457, "notes": "Percy will buy Venetian Food from you.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -415765,11 +413548,11 @@ { "id": 1458, "notes": "Percy buys Venetian Food from you.You ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -415798,14 +413581,14 @@ { "id": 1459, "notes": "Quincy wants books from the library in Tropicton.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -415826,11 +413609,11 @@ { "id": 1460, "notes": "Marianne Lookitup gives you two spy novels for Quincy.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415838,7 +413621,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -415860,12 +413643,10 @@ "id": 1461, "notes": "Quincy Gets His Books", "title": "The Literary Little Pig", - "requires_questid_npc": [ - 1303 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415884,7 +413665,9 @@ "success_npc_chat": "Oh! Oh! U.N. Owen, my very, very favorite author. Oh, my! You did well! Very well indeed! Please accept this mere token of my gratitude!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1303 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "SpottedRose", @@ -415894,14 +413677,14 @@ { "id": 1462, "notes": "Agree to dig up Scuttle's golden Acorn.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -415922,17 +413705,15 @@ { "id": 1463, "notes": "Find a Gold Acorn!", - "title": "", - "requires_questid_npc": [ - 1462 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 518, "y": 452 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415952,6 +413733,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 1462, 1462 ], "hide_reply_on_fail": false, @@ -415963,11 +413745,11 @@ { "id": 1464, "notes": "Give golden Acorn to Scamper. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -415975,7 +413757,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -416000,7 +413782,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416008,7 +413790,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 25, @@ -416029,7 +413811,7 @@ { "id": 1466, "notes": "Climb over wall to inaccesible area by yellow dragon's lair", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -416037,10 +413819,10 @@ "y": 413 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -416061,11 +413843,11 @@ { "id": 2057, "notes": "John O'Lantern sends you out on the first deliveries", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416094,14 +413876,14 @@ { "id": 1467, "notes": "Xyzzy teleports you off her island.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -416122,14 +413904,14 @@ { "id": 1468, "notes": "Murukan sends you after the lost ring of the Tumetai.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -416137,7 +413919,7 @@ "warp_x": null, "warp_y": null, "success_message": "Murukan has asked you to find the Lost Ring of the Tumetai.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -416150,11 +413932,11 @@ { "id": 1469, "notes": "Give Xyzzy some Moonbeams.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416183,11 +413965,11 @@ { "id": 1470, "notes": "Give Xyzzy some Silver Lining Wire", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416216,11 +413998,11 @@ { "id": 1471, "notes": "Give Xyzzy some Popcorn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416253,7 +414035,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416290,14 +414072,14 @@ { "id": 3806, "notes": "Xyzzy sends you off the isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -416318,14 +414100,14 @@ { "id": 1473, "notes": "Engolo-mbe points you to the lost ring.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -416333,7 +414115,7 @@ "warp_x": null, "warp_y": null, "success_message": "Engolo-mbe informs you that Chioke the Guardian has the Lost Ring.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -416346,11 +414128,11 @@ { "id": 1474, "notes": "Pick the gold ring from Chioke.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416358,7 +414140,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -416366,7 +414148,7 @@ "warp_x": null, "warp_y": null, "success_message": "Chioke gives you the Gold Ring.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -416379,11 +414161,11 @@ { "id": 1475, "notes": "Pick the silver ring from Chioke.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416391,7 +414173,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -416399,7 +414181,7 @@ "warp_x": null, "warp_y": null, "success_message": "Chioke has given you the Silver Ring.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -416412,11 +414194,11 @@ { "id": 1476, "notes": "Pick the wood ring from Chioke.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416424,7 +414206,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -416432,7 +414214,7 @@ "warp_x": null, "warp_y": null, "success_message": "Chioke has given you the Wooden Ring.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -416445,11 +414227,11 @@ { "id": 1477, "notes": "Pick the stone ring from Chioke.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416457,7 +414239,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -416465,7 +414247,7 @@ "warp_x": null, "warp_y": null, "success_message": "Chioke gave you the Stone Ring.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -416478,22 +414260,22 @@ { "id": 1478, "notes": "Get a ring from Chioke the first time. (Tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -416506,11 +414288,11 @@ { "id": 1479, "notes": "Chioke gives you the gold ring for diamonds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416543,11 +414325,11 @@ { "id": 1480, "notes": "Chioke gives you the silver ring for diamonds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416580,11 +414362,11 @@ { "id": 1481, "notes": "Chioke gives you the wood ring for diamonds", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416617,11 +414399,11 @@ { "id": 1540, "notes": "Give Murukan the wood ring and pass his challenge.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416650,11 +414432,11 @@ { "id": 1482, "notes": "Chioke gives you the stone ring for diamonds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416687,22 +414469,22 @@ { "id": 1483, "notes": "Got a second ring from Chioke. (Tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -416715,14 +414497,14 @@ { "id": 1485, "notes": "Ruthie sends you to Nonesuch Island.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -416743,22 +414525,22 @@ { "id": 1484, "notes": "Get a third ring from chioke (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -416771,11 +414553,11 @@ { "id": 1486, "notes": "Ruthie agrees to send you to Nonesuch Island (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 50, + "max_repeats": 50, "money_cost": 0, "items_required": [], "fail_npc_chat": "Sorry, can't.", @@ -416803,7 +414585,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416836,7 +414618,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416873,7 +414655,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416910,7 +414692,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416943,11 +414725,11 @@ { "id": 1491, "notes": "Emma gives you a sketch of her greenhouse design", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -416955,7 +414737,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1500, "items_gained": [], "quest_points": 0, @@ -416976,14 +414758,14 @@ { "id": 1492, "notes": "Emma Sends You To King Phil's.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417004,14 +414786,14 @@ { "id": 1493, "notes": "Emma Sends You To Hoof Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417032,14 +414814,14 @@ { "id": 1494, "notes": "Rule Q.1. Jumps to Earton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417060,14 +414842,14 @@ { "id": 1495, "notes": "Agree to help Yorick, the hockey manager", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417088,14 +414870,14 @@ { "id": 1496, "notes": "Rule Q.2. Jumps to Rule Q.1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417116,11 +414898,11 @@ { "id": 1497, "notes": "Give Bubba Topaz 25 Agates in exchange for $250", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -417149,11 +414931,11 @@ { "id": 1498, "notes": "Tell Ben Burlap about hockey practice starting. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Why don't you go and tell Cedric next? I think he is in the same town as the person who has our helmet combos and goalie mask.", @@ -417177,14 +414959,14 @@ { "id": 1499, "notes": "Rule Q.3. Jumps to Rule Q.2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417205,14 +414987,14 @@ { "id": 1500, "notes": "Rule Q.4. Jumps to Rule Q.3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417233,11 +415015,11 @@ { "id": 1501, "notes": "Vern takes Emma's plans from you.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -417266,11 +415048,11 @@ { "id": 1502, "notes": "Vern Gives You Architectural Drawings and tells you what you need to get.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -417278,7 +415060,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417299,11 +415081,11 @@ { "id": 1503, "notes": "Emma takes the greenhouse plans from you.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -417332,11 +415114,11 @@ { "id": 1504, "notes": "Emma takes all the logs you brought.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -417369,21 +415151,21 @@ { "id": 1505, "notes": "Agree to bring groups of 25 agates to Bubba Topaz", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "I'll see you when you get back. Please, do hurry!", "requires_awardid": null, "requires_questid_completed": [], @@ -417397,14 +415179,14 @@ { "id": 1506, "notes": "Emma sends out our for seedlings.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417425,14 +415207,14 @@ { "id": 1507, "notes": "First time to Percy Stickler. Answer all questions get sent to Q.1 isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417453,11 +415235,11 @@ { "id": 1508, "notes": "Rose Thorne gives you seedlings.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -417469,7 +415251,7 @@ "quantity": 6 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417490,11 +415272,11 @@ { "id": 1509, "notes": "Give Emma the Seedlings.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -417528,15 +415310,13 @@ "id": 1510, "notes": "Emma's Parting Shot", "title": "Royal Chocolatiere", - "requires_questid_npc": [ - 1391 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 75, @@ -417547,7 +415327,9 @@ "success_npc_chat": "Well, yeah. In the meantime, here's a little something for your trouble, courtesy of His Majesty.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1391 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "SpottedRose", @@ -417557,11 +415339,11 @@ { "id": 1511, "notes": "Cinnamon sends you to Shaylene.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Dairy animals. Nobody I know raises sheep or water buffalo, but there is a lady on Cat Isle who raises goats. Shaylene, I think, is her name.", @@ -417585,14 +415367,14 @@ { "id": 1512, "notes": "King Phil Sends You To Emma", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417613,14 +415395,14 @@ { "id": 1513, "notes": "Second time to Percy Stickler. Answer all questions get sent to Q.2 isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417645,7 +415427,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -417678,22 +415460,22 @@ { "id": 1515, "notes": "Shaylene Shampu tells you she has the starter mo (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -417706,11 +415488,11 @@ { "id": 1516, "notes": "Tell Cedric about hockey practice starting", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 25, + "max_repeats": 25, "money_cost": 0, "items_required": [], "fail_npc_chat": "From the looks of it, you already picked up the hockey equipment. Go see Henry Heimlich. He will probably know where you should go next, also.", @@ -417736,11 +415518,11 @@ { "id": 1517, "notes": "Get Hockey equipment from Tony Grocer", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -417752,7 +415534,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417773,11 +415555,11 @@ { "id": 1536, "notes": "Find Cheshire's Body", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -417785,7 +415567,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417806,11 +415588,11 @@ { "id": 1518, "notes": "Tell Henry Heimlich about hockey starting", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "That's great! I can't wait! Could you head to Art Isle and let Remy Belleeful know next?", @@ -417834,11 +415616,11 @@ { "id": 1519, "notes": "Tell Remy about hockey practice starting. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 30, + "max_repeats": 30, "money_cost": 0, "items_required": [], "fail_npc_chat": "That sounds good. Well, it looks like you already picked up the hockey sticks, so you should probably go see Pillan next.", @@ -417864,11 +415646,11 @@ { "id": 1520, "notes": "Get hockey sticks from George Gimme Grub", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -417876,7 +415658,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417897,11 +415679,11 @@ { "id": 1521, "notes": "Tell Pillan that hockey practice is starting up. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -417909,7 +415691,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417930,11 +415712,11 @@ { "id": 1522, "notes": "Tell Hudson about hockey practice starting soon ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -417950,7 +415732,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -417971,11 +415753,11 @@ { "id": 1523, "notes": "Get hockey pucks from Percy. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -417983,7 +415765,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -418004,11 +415786,11 @@ { "id": 1524, "notes": "Tell Rolando that hockey starts up soon.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Hmm... Let's see... The only one left on the team is Stephen Saddletree. Once you let him know, you should be done.", @@ -418032,11 +415814,11 @@ { "id": 1525, "notes": "Tell Stephen Saddletree about hockey practice starting ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Thanks, mate. Tell Yorick I'll be there.", @@ -418060,11 +415842,11 @@ { "id": 1526, "notes": "Tell Yorick you notified everyone and give him pucks and hockey sticks. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418101,7 +415883,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418134,14 +415916,14 @@ { "id": 1528, "notes": "Third time to Percy Stickler. Answer all questions get sent to Q.3 isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -418162,11 +415944,11 @@ { "id": 1529, "notes": "Fourth and all other times to Percy Stickler. Answer all questions get sent to Q.4 isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have been here way too many times. You should no longer have an account.", @@ -418190,11 +415972,11 @@ { "id": 1530, "notes": "Allaire buys Sparkly Feathers for $150", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -418223,11 +416005,11 @@ { "id": 1531, "notes": "Verify 50% award earned for Yorick's quest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, I don't think you do, but once you finish that, please come back and see me.", @@ -418237,7 +416019,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Then maybe there is something you can do for me.", "requires_awardid": 2, "requires_questid_completed": [], @@ -418251,14 +416033,14 @@ { "id": 1532, "notes": "Agree to retrieve Cheshire's grin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -418279,7 +416061,7 @@ { "id": 1533, "notes": "Find Cheshire's Grin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -418287,7 +416069,7 @@ "y": 417 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418322,7 +416104,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418334,7 +416116,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 25, @@ -418355,14 +416137,14 @@ { "id": 1535, "notes": "Agree to find Cheshire's Body", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -418384,12 +416166,10 @@ "id": 1537, "notes": "Return Cheshire's Body.", "title": "Cheshire's Missing Body", - "requires_questid_npc": [ - 1534 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418401,7 +416181,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 50, @@ -418412,7 +416192,9 @@ "success_npc_chat": "Oh, thank you so very much! I feel much better now.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1534 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "CheshireKitty", @@ -418422,11 +416204,11 @@ { "id": 1552, "notes": "Chioke gives you the gold ring for diamonds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418459,22 +416241,22 @@ { "id": 1538, "notes": "Get silver ring. (Tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -418487,22 +416269,22 @@ { "id": 1539, "notes": "Get stone ring. (Tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -418515,11 +416297,11 @@ { "id": 1541, "notes": "Give Murukan the gold ring.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418548,22 +416330,22 @@ { "id": 1542, "notes": "Murukan sends you back for a second ring. (Tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -418576,11 +416358,11 @@ { "id": 1543, "notes": "Give Murukan the silver ring.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418609,11 +416391,11 @@ { "id": 1544, "notes": "Give Murukan the stone ring.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418642,22 +416424,22 @@ { "id": 1545, "notes": "Murukan sends you back for a third ring. (Tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -418670,11 +416452,11 @@ { "id": 1546, "notes": "Give Murukan the gold ring.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418703,11 +416485,11 @@ { "id": 1547, "notes": "Give Murukan the silver ring.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418736,11 +416518,11 @@ { "id": 1548, "notes": "Give Murukan the stone ring.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418769,14 +416551,14 @@ { "id": 1549, "notes": "King Phil sends you to Tail End", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -418797,14 +416579,14 @@ { "id": 1550, "notes": "Magic Action That Hides New Quests from all but Betonians.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 10, + "max_repeats": 10, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -418825,11 +416607,11 @@ { "id": 1551, "notes": "Princess Lilianna sends you out for her Royal Wedding .... Stuff.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418837,7 +416619,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -418858,11 +416640,11 @@ { "id": 1553, "notes": "Chioke gives you the silver ring for diamonds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418895,11 +416677,11 @@ { "id": 1554, "notes": "Chioke gives you the wood ring for diamonds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418932,11 +416714,11 @@ { "id": 1555, "notes": "Chioke gives you the stone ring for diamonds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -418969,11 +416751,11 @@ { "id": 1556, "notes": "Give Murukan the gold ring.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -419002,11 +416784,11 @@ { "id": 1557, "notes": "Give Murukan the silver ring.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -419035,11 +416817,11 @@ { "id": 1558, "notes": "Give Murukan the stone ring.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -419068,22 +416850,22 @@ { "id": 1559, "notes": "Gave third ring to Murukan (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -419096,14 +416878,14 @@ { "id": 1560, "notes": "Murkuan sends you for the ring and 2 sparkling feathers.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -419111,7 +416893,7 @@ "warp_x": null, "warp_y": null, "success_message": "Murukan has sent you for the true Lost Ring and two Sparkling Feathers.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -419124,11 +416906,11 @@ { "id": 1561, "notes": "Chioke gives you the wood ring for diamonds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -419161,11 +416943,11 @@ { "id": 1564, "notes": "Pick up supplies from Barrett Braunbag ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -419173,7 +416955,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -419194,22 +416976,22 @@ { "id": 1562, "notes": "Finished Murukan challenge. (traking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -419222,11 +417004,11 @@ { "id": 1563, "notes": "Give Murukan the wood ring, the feathers, and pass his challenge.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -419263,7 +417045,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -419292,14 +417074,14 @@ { "id": 1566, "notes": "Dorcas sends you off to collect the ransom (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -419320,14 +417102,14 @@ { "id": 1567, "notes": "Dorcas sends you off to Rescue the Princess (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -419348,7 +417130,7 @@ { "id": 1568, "notes": "Get out of the inaccessible area by the yellow dragon's lair", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -419356,10 +417138,10 @@ "y": 415 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -419380,14 +417162,14 @@ { "id": 1569, "notes": "Lelu sends player back to Tail isle ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -419408,14 +417190,14 @@ { "id": 1570, "notes": "Barrett jumps player to Puuhonua Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -419436,14 +417218,14 @@ { "id": 1571, "notes": "Pattini sends you after a winter lotus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -419451,7 +417233,7 @@ "warp_x": null, "warp_y": null, "success_message": "Pattini has asked you to find a Winter Lotus blossom.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -419464,22 +417246,22 @@ { "id": 1572, "notes": "Sera sends you to christmas elves for help.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -419492,22 +417274,22 @@ { "id": 1573, "notes": "Sera tells you where to find the winter lotus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -419520,14 +417302,14 @@ { "id": 1574, "notes": "Dilly Chilly asks you for wood and snowballs.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -419535,7 +417317,7 @@ "warp_x": null, "warp_y": null, "success_message": "Dilly Chilly has asked you to bring him 20 Snowballs and 4 Logs.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -419548,11 +417330,11 @@ { "id": 1575, "notes": "Give Dilly Chilly wood and snowballs and get chilly box.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -419589,7 +417371,7 @@ { "id": 1576, "notes": "Find Winter Lotus in snow", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -419597,7 +417379,7 @@ "y": 24 }, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -419608,7 +417390,7 @@ "warp_x": null, "warp_y": null, "success_message": "Looking closly, you see a beautiful and delicate white Winter Lotus blossom. What a pretty flower! It looks like if you rake the snow away, you'll be able to pick it at its root.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -419624,7 +417406,7 @@ { "id": 1577, "notes": "Attempt to pick a Lotus Blossom", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -419632,7 +417414,7 @@ "y": 24 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -419642,8 +417424,8 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -419659,11 +417441,11 @@ { "id": 1579, "notes": "Give Pattini the Winter Lotus, get reward, and complete her challenge.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -419696,11 +417478,11 @@ { "id": 1578, "notes": "Successfully put Winter Lotus in the Chilly Box", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -419720,7 +417502,7 @@ "warp_x": null, "warp_y": null, "success_message": "Carefully raking the snow aside, you pick a flower and immediately put it in the chilly box. You take a moment to make sure the flower is okay, but it looks perfectly nestled in its cold carrying case.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -419733,22 +417515,22 @@ { "id": 1580, "notes": "Got challenge from Pattini (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -419761,14 +417543,14 @@ { "id": 1581, "notes": "Pattini sends you after a winter lotus (2nd path).", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -419776,7 +417558,7 @@ "warp_x": null, "warp_y": null, "success_message": "Pattini has asked you to find a Winter Lotus blossom.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -419789,22 +417571,22 @@ { "id": 1582, "notes": "Finish challenge from Pattini (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -419817,11 +417599,11 @@ { "id": 1583, "notes": "Give Pattini the Winter Lotus and complete her challenge.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -419850,11 +417632,11 @@ { "id": 1584, "notes": "Give Omand $1,000 to participate in his quiz", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 1000, "items_required": [], "fail_npc_chat": "I'm sorry but you don't seem to have enough money. Maybe you could come back and try later?", @@ -419880,7 +417662,7 @@ { "id": 1585, "notes": "Workbook Treasure No. 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -419888,7 +417670,7 @@ "y": 368 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -419903,7 +417685,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You've Found Horse Isle Workbook Treasure No. 2: $3,000 and 5 Topazes", "requires_awardid": null, "requires_questid_completed": [], @@ -419917,7 +417699,7 @@ { "id": 1586, "notes": "Workbook Treasure No. 1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -419925,7 +417707,7 @@ "y": 179 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -419940,7 +417722,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You've Found Horse Isle Workbook Treasure No. 1: $2,000 and 5 Amethysts", "requires_awardid": null, "requires_questid_completed": [], @@ -419954,7 +417736,7 @@ { "id": 1587, "notes": "Workbook Treasure No. 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -419962,7 +417744,7 @@ "y": 36 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -419977,7 +417759,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You have uncovered Workbook Treasure No. 3: $4000 and 5 Silver Ores!", "requires_awardid": null, "requires_questid_completed": [], @@ -419991,7 +417773,7 @@ { "id": 1588, "notes": "Workbook Treasure No. 4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -419999,7 +417781,7 @@ "y": 218 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -420014,7 +417796,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You have uncovered Workbook Treasure No. 4: $5,000 and 5 Gold Ores!", "requires_awardid": null, "requires_questid_completed": [], @@ -420028,14 +417810,14 @@ { "id": 1589, "notes": "Grey Slate asks you to get 3 gold ores and a new hammer", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -420056,11 +417838,11 @@ { "id": 1590, "notes": "Liam Flux Sells You A Hammer", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -420089,11 +417871,11 @@ { "id": 1591, "notes": "Grey Slate Takes 3 Ores And A Hammer.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -420126,11 +417908,11 @@ { "id": 1592, "notes": "Grey Slate Gives You Lilianna's Ring", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -420138,7 +417920,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420159,14 +417941,14 @@ { "id": 1593, "notes": "Martha agrees to bake a wedding cake for you.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420187,11 +417969,11 @@ { "id": 1594, "notes": "Martha sells you an incredible cake.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -420220,14 +418002,14 @@ { "id": 1595, "notes": "King Phil says he'll see what he can do.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420248,14 +418030,14 @@ { "id": 1596, "notes": "Kilye will go to Cloud and get Lilianna's measurements.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420276,11 +418058,11 @@ { "id": 1597, "notes": "Jean sells you a bolt of silk fabric", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 3000, "items_required": [ { @@ -420309,11 +418091,11 @@ { "id": 1598, "notes": "Kilye takes the silk from you and begins work on the wedding dress.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -420342,14 +418124,14 @@ { "id": 1599, "notes": "Kilye Will Deliver the Wedding Dress to Lilianna.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420370,11 +418152,11 @@ { "id": 1600, "notes": "Give the Wedding Ring to Dorcas, Lilianna's lady in waiting.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -420403,11 +418185,11 @@ { "id": 1601, "notes": "Give the Cake to Dorcas.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -420436,14 +418218,14 @@ { "id": 1602, "notes": "Dorcas Acknowledges that you've spoken to Phil (tracking for replies only).", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420464,14 +418246,14 @@ { "id": 1603, "notes": "Dorcas Acknowledges that you've spoken to Kilye (tracking for replies only).", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420492,11 +418274,11 @@ { "id": 1604, "notes": "You and Dorcas agree that you've done all you can. (Princess can now be kidnapped.)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -420530,11 +418312,11 @@ { "id": 1605, "notes": "You've brought Dorcas all the Things and Promises you can.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "No, I'm afraid you're not done yet. Please go do what's left, and then come back.", @@ -420544,7 +418326,7 @@ "goto_npc_chatpoint": 19, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Oh, yes, that's all of it. I'll go an inform Her Ladyship at once. Please wait here.", "requires_awardid": null, "requires_questid_completed": [ @@ -420567,10 +418349,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 25, @@ -420591,21 +418373,21 @@ { "id": 1607, "notes": "Get sent to isle that has Cheshire's Body if you managed to get off before finding it", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 7, "warp_x": 44, "warp_y": 436, - "success_message": "", + "success_message": null, "success_npc_chat": "Oh, please do hurry. It is rather uncomfortable being nothing but a head.", "requires_awardid": null, "requires_questid_completed": [], @@ -420619,11 +418401,11 @@ { "id": 1608, "notes": "The Holiday Horse gives you a gift!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -420631,7 +418413,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420652,14 +418434,14 @@ { "id": 1609, "notes": "Dakota asks you to bring her 25 agates", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420680,11 +418462,11 @@ { "id": 1610, "notes": "Agree to talk to Emma for Lelu about chocolate covered grasshoppers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Thank you so much. Please let me know if she can help.", @@ -420708,14 +418490,14 @@ { "id": 1611, "notes": "Agree to petition King Phil for the use of Emma's services", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420736,14 +418518,14 @@ { "id": 1612, "notes": "King Phil asks for Struffoli and Milk ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420764,11 +418546,11 @@ { "id": 1613, "notes": "Cinnamon sells you 2 liters of milk", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 100, "items_required": [ { @@ -420776,7 +418558,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420797,14 +418579,14 @@ { "id": 1614, "notes": "You agree to bring Cookie 5 honeycombs", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420825,11 +418607,11 @@ { "id": 1615, "notes": "Give Cookie the 5 honeycomb. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -420858,11 +418640,11 @@ { "id": 1616, "notes": "Cookie gives you struffoli to take to King Phil. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -420870,7 +418652,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420891,11 +418673,11 @@ { "id": 1617, "notes": "Give King Phil the Struffoli and Milk ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -420928,14 +418710,14 @@ { "id": 1618, "notes": "You agree to get Emma the items to make the Chocolate covered grasshoppers ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -420956,11 +418738,11 @@ { "id": 1619, "notes": "You give Emma the grasshoppers and sugar chunks ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 2500, "items_required": [ { @@ -421004,7 +418786,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -421034,12 +418816,10 @@ "id": 1621, "notes": "Hans Congratulates you for winning his challenge", "title": "Hans' Second Horse Breed Challenge", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this! (bug)", @@ -421063,14 +418843,14 @@ { "id": 1622, "notes": "Minnie asks you to get cardamom from The Spice Shoppe ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -421091,11 +418871,11 @@ { "id": 1623, "notes": "Rika gives you a bag of cardamom for Minnie ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -421103,7 +418883,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -421124,22 +418904,22 @@ { "id": 1638, "notes": "The Princess Is Back (Actions 1627 and 1636 chain to this.)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -421156,7 +418936,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -421189,14 +418969,14 @@ { "id": 1625, "notes": "Minnie sends you to Spice Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -421217,14 +418997,14 @@ { "id": 1626, "notes": "Rika send you back to Minne's ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -421245,11 +419025,11 @@ { "id": 1627, "notes": "Ransom the Princess!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -421286,7 +419066,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -421294,7 +419074,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 350, @@ -421315,14 +419095,14 @@ { "id": 1629, "notes": "Princess Lilianna makes her exit.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -421343,7 +419123,7 @@ { "id": 1630, "notes": "Search For Clues In The Castle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -421351,7 +419131,7 @@ "y": 439 }, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search carefully, but find nothing.", @@ -421361,7 +419141,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Searching the otherwise pristinely clean carpet, you can just make out the outlines of dusty boots with a curiously pointed toe. Time to check outside!", "requires_awardid": null, "requires_questid_completed": [], @@ -421378,7 +419158,7 @@ { "id": 1631, "notes": "Search Outside the Castle for clues", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -421386,7 +419166,7 @@ "y": 440 }, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [], "fail_npc_chat": "Whatever might have been here has long since faded away.", @@ -421396,7 +419176,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Ah! Here in the slowly billowing cloud are the tracks of pointed-toed boots, heading east!", "requires_awardid": null, "requires_questid_completed": [], @@ -421413,7 +419193,7 @@ { "id": 1632, "notes": "Search for Prints around the Tree", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -421421,7 +419201,7 @@ "y": 439 }, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [], "fail_npc_chat": "Alas, whatever tracks were here have long since faded away.", @@ -421431,7 +419211,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "The boot tracks stop here--next to many hoofprints, as of a horse impatiently standing. And on either side of the hoofprints, two deep gouges made by something long and thin!", "requires_awardid": null, "requires_questid_completed": [], @@ -421448,7 +419228,7 @@ { "id": 1633, "notes": "Find a broken feather tip!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -421456,7 +419236,7 @@ "y": 439 }, "tracked": true, - "repeats": 4, + "max_repeats": 4, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -421466,7 +419246,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Raking carefully amongst the wisps of cloud, you uncover a piece of... the tip of a large feather? Definitely a clue here!", "requires_awardid": null, "requires_questid_completed": [], @@ -421483,11 +419263,11 @@ { "id": 1634, "notes": "Obtain the Clue of the Red-Stained Feather!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, that? Don't know. She had it all over her muzzle, though. Guess it was from something she was eating when she was... wherever she was. Rubbed her face on me and got it on this. Kind of insisted on doing it, too...", @@ -421511,7 +419291,7 @@ { "id": 1635, "notes": "Find the fingerprints, hear the princess!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -421519,7 +419299,7 @@ "y": 164 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -421529,7 +419309,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Behind the scoreboard, you see a small area where some dust has been moved away--fingermarks!", "requires_awardid": null, "requires_questid_completed": [], @@ -421546,14 +419326,14 @@ { "id": 1636, "notes": "The Princess Flees!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -421574,11 +419354,11 @@ { "id": 1637, "notes": "Princess Lilianna gives you a perk for being such a brave knight...", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -421586,7 +419366,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -421607,22 +419387,22 @@ { "id": 1639, "notes": "You Decide To Take Action on this Princess Business (actions 1567 and 1566 chain to this)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -421635,11 +419415,11 @@ { "id": 1640, "notes": "Santa gives a snowman for free once.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -421668,14 +419448,14 @@ { "id": 1641, "notes": "Agree to find ingredients for Rose", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -421696,11 +419476,11 @@ { "id": 1642, "notes": "Buy cilantro from Rika", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 50, "items_required": [ { @@ -421729,11 +419509,11 @@ { "id": 1643, "notes": "Get nopales from Wynona", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -421741,7 +419521,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -421762,14 +419542,14 @@ { "id": 1644, "notes": "Talk to Mrs. Claus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -421791,12 +419571,10 @@ "id": 1645, "notes": "Give Rose the ingredients she's missing", "title": "Rose's Missing Ingredients", - "requires_questid_npc": [ - 1321 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -421827,7 +419605,9 @@ "success_npc_chat": "Oh, thank you so much! I know it isn't much, but please take these trinkets from Will's sailing days.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1321 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Jule", @@ -421837,14 +419617,14 @@ { "id": 1646, "notes": "Agree to get ingrediants for Mrs. Claus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -421865,11 +419645,11 @@ { "id": 1647, "notes": "Recieve Carrots from Windy.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -421877,7 +419657,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -421898,11 +419678,11 @@ { "id": 1648, "notes": "Recieve noodles from Clementine", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -421910,7 +419690,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -421931,11 +419711,11 @@ { "id": 1649, "notes": "Recieve Celery from Nana", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -421943,7 +419723,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -421964,11 +419744,11 @@ { "id": 1650, "notes": "Give ingrediants to Mrs. Claus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422005,11 +419785,11 @@ { "id": 1659, "notes": "Give Mrs. Claus the carrots for Santa's soup", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422046,7 +419826,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422054,7 +419834,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5500, "items_gained": [], "quest_points": 75, @@ -422075,11 +419855,11 @@ { "id": 1652, "notes": "One of Pookies Trolls appears.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Hey, Troll! Get over here an' troll!", @@ -422089,7 +419869,7 @@ "goto_npc_chatpoint": 7, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "*SNAP!* (For the first time, Princess Pookie actually speaks.) HEY! GUARD!
(Suddenly, from a door to the right, a large troll appears, and stands in front of the pile of shoes, behind which the baby dragon is held.)", "requires_awardid": null, "requires_questid_completed": [], @@ -422103,14 +419883,14 @@ { "id": 1653, "notes": "Pookie sends you off to get a new pair of shoes.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -422131,14 +419911,14 @@ { "id": 1654, "notes": "Thorn asks for stuff to make Pookie's shoes with.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -422159,11 +419939,11 @@ { "id": 1655, "notes": "Thorne begins work on Pookie's Shoes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422196,11 +419976,11 @@ { "id": 1656, "notes": "Thorne Sells You Some Shoes...", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 5000, "items_required": [ { @@ -422229,11 +420009,11 @@ { "id": 1657, "notes": "Pookie Takes The Shoes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422266,10 +420046,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 9000, "items_gained": [], "quest_points": 75, @@ -422290,14 +420070,14 @@ { "id": 1660, "notes": "Amariel gives you the Quest of the Seven Orbs.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -422318,14 +420098,14 @@ { "id": 1661, "notes": "The Red Dragon asks for Five Magenta Shards.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -422346,11 +420126,11 @@ { "id": 1662, "notes": "Red Dragon trades Five Magenta Shards for the Red Orb.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422383,14 +420163,14 @@ { "id": 1663, "notes": "Mabel tells you to search the castle. (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -422398,7 +420178,7 @@ "warp_x": null, "warp_y": null, "success_message": "Miss Mabel advised you to search the castle inside and out for clues.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -422411,22 +420191,22 @@ { "id": 1664, "notes": "You told Miss Mabel about the red (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -422439,14 +420219,14 @@ { "id": 1665, "notes": "The Blue Dragon sends you for Red Shards", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -422467,11 +420247,11 @@ { "id": 1666, "notes": "Trade Red Crystal Shards for the Blue Dragon's Orb", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422504,14 +420284,14 @@ { "id": 1667, "notes": "The Purple Dragon sends you for Blue Shards.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -422532,11 +420312,11 @@ { "id": 1668, "notes": "You obtain the Purple Dragon Orb", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422569,14 +420349,14 @@ { "id": 1669, "notes": "The Green Dragon waxes histrionic.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -422597,11 +420377,11 @@ { "id": 1670, "notes": "The Green Dragon gives you his Green Orb", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422634,14 +420414,14 @@ { "id": 1671, "notes": "The Cyan Dragon asks you for green shards.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -422662,11 +420442,11 @@ { "id": 1672, "notes": "Acquire the Cyan Dragon Orb", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422699,14 +420479,14 @@ { "id": 1673, "notes": "Yellow Dragon wants Cyan Shards", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -422727,11 +420507,11 @@ { "id": 1674, "notes": "Acquire the Yellow Dragon Orb", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422764,14 +420544,14 @@ { "id": 1675, "notes": "The Magenta Dragons wants Yellow Shards", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -422792,11 +420572,11 @@ { "id": 1676, "notes": "The Magenta Dragon gives you the Magenta Orb", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422829,11 +420609,11 @@ { "id": 1677, "notes": "Amariel checks to make sure you have all the orbs. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have all of them. I need all of them at once. Please, you have to get them all.", @@ -422843,7 +420623,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Yes, that's fine. Now, if you would give them to me, please?", "requires_awardid": null, "requires_questid_completed": [ @@ -422865,11 +420645,11 @@ { "id": 1678, "notes": "Give Amariel the Red and Blue Orbs.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422881,7 +420661,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -422902,11 +420682,11 @@ { "id": 1679, "notes": "Give Amariel the Green and Purple Orbs.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422918,7 +420698,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -422939,11 +420719,11 @@ { "id": 1680, "notes": "Give Amariel the Cyan and Yellow Orbs.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -422980,7 +420760,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423009,14 +420789,14 @@ { "id": 1682, "notes": "Freddy asks for pumice stones (first pass through)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -423041,7 +420821,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423070,11 +420850,11 @@ { "id": 1684, "notes": "Freddy buys pumice stones for $75 each (after you've done his quest)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -423103,21 +420883,21 @@ { "id": 1685, "notes": "Xiang sends you off to find Dragons' Teeth", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Oh, thank you so much! I'm sure they are buried right around the bases of the volcanoes, but you will have to search for them.", "requires_awardid": null, "requires_questid_completed": [], @@ -423131,7 +420911,7 @@ { "id": 1686, "notes": "Dig up the Magenta Dragon's Tooth", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -423139,7 +420919,7 @@ "y": 359 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423170,7 +420950,7 @@ { "id": 1687, "notes": "Dig up the Yellow Dragon's Tooth", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -423178,7 +420958,7 @@ "y": 419 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423209,7 +420989,7 @@ { "id": 1688, "notes": "Dig up the Cyan Dragon's Tooth", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -423217,7 +420997,7 @@ "y": 365 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423248,7 +421028,7 @@ { "id": 1689, "notes": "Dig up the Purple Dragon's Tooth", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -423256,7 +421036,7 @@ "y": 362 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423287,17 +421067,15 @@ { "id": 1690, "notes": "Find Wonder #2", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 395, "y": 85 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -423308,7 +421086,7 @@ "warp_x": null, "warp_y": null, "success_message": "Searching for details, you find a clue! Posy holds the sketch for which you search.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -423323,7 +421101,7 @@ { "id": 1691, "notes": "Dig up the Blue Dragon's Tooth", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -423331,7 +421109,7 @@ "y": 350 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423362,7 +421140,7 @@ { "id": 1692, "notes": "Dig up the Red Dragon's Tooth", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -423370,7 +421148,7 @@ "y": 331 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423401,7 +421179,7 @@ { "id": 1693, "notes": "Dig up the Green Dragon's Tooth", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -423409,7 +421187,7 @@ "y": 380 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423444,7 +421222,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423473,7 +421251,7 @@ { "id": 1695, "notes": "Search Pella the Fire Salamander's Cave", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -423481,7 +421259,7 @@ "y": 457 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Everything here is a jumble. Many things have gone in and out from this spot, including yourself!", @@ -423491,7 +421269,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Searching carefully, you see many tracks on the ground, most overlapping one another. The freshest tracks are those of a salamander going out, and booted feet going both in and out.", "requires_awardid": null, "requires_questid_completed": [], @@ -423505,7 +421283,7 @@ { "id": 1696, "notes": "A search of the road reveals nothing, but hints you should talk to Pookie.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -423513,7 +421291,7 @@ "y": 458 }, "tracked": false, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -423523,7 +421301,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "The stone road is so hard and wind-swept that no footprints of any kind can be found. Oh, well, you could always ask Princess Pookie.", "requires_awardid": null, "requires_questid_completed": [], @@ -423540,14 +421318,14 @@ { "id": 1697, "notes": "Pookie sends you to Bruce the Scotsman", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -423568,11 +421346,11 @@ { "id": 1698, "notes": "Colina tells you where you might actually find Bruce", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Didn't find him? He's around the outside of the maze somewhere, never strays far. Keep looking, he'll be there.", @@ -423582,7 +421360,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Och, aye, just wander around the outside of the maze, and listen for the skirling o' the pipes!", "requires_awardid": null, "requires_questid_completed": [], @@ -423596,14 +421374,14 @@ { "id": 1699, "notes": "Zik tells you where to find Zak", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -423624,14 +421402,14 @@ { "id": 1700, "notes": "Agree to get Pumice rock and Iron ore for Zak", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -423652,11 +421430,11 @@ { "id": 1701, "notes": "Give Pumice rock and Iron ore to Zak", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423689,14 +421467,14 @@ { "id": 1702, "notes": "agree to get 10 blue crystal shards and 10 green crystal shards for Zak", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -423721,7 +421499,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423762,21 +421540,21 @@ { "id": 1704, "notes": "Bruce agrees to carry on piping for dragons and sends you on your way.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Well, here, you see? These are Pella's tracks. That line is her tail dragging, and footprints on either side. She was here, and she ran off there to the northeast. Salamanders like Pella, they like it warm, so she'd be somewhere warmish.", "requires_awardid": null, "requires_questid_completed": [], @@ -423790,14 +421568,14 @@ { "id": 1705, "notes": "Pookie sends you to get her some purple ink from Kilye.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -423818,14 +421596,14 @@ { "id": 1706, "notes": "Kilye needs ink ingredients.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -423846,11 +421624,11 @@ { "id": 1707, "notes": "Give Kilye the Ink Ingredients", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423883,11 +421661,11 @@ { "id": 1708, "notes": "Kilye sells you Purple Ink", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -423895,7 +421673,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -423917,12 +421695,10 @@ "id": 1709, "notes": "Give Pookie her Ink ", "title": "Pookie's Purple Ink", - "requires_questid_npc": [ - 1658 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423945,7 +421721,9 @@ "success_npc_chat": "kthxbai", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1658 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "SpottedRose", @@ -423959,7 +421737,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -423988,11 +421766,11 @@ { "id": 1711, "notes": "Selena will buy Moonbeams from you for $42 each.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "If you could but bring me some, I should be especially grateful. I will pay you $42 each for any and all you bring me!", @@ -424016,11 +421794,11 @@ { "id": 1712, "notes": "Sell Moonbeams to Selena", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -424049,13 +421827,11 @@ { "id": 1742, "notes": "Vianca Bets you $1000 that you can't answer her questions", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 1000, "items_required": [], "fail_npc_chat": "You do not have the $1000 for this challenge. Come back when you do, please!", @@ -424079,21 +421855,21 @@ { "id": 1713, "notes": "Selena has already read your Shards. (for Tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Go now and seek your fate! Go now, the Universalsooth awaits!", "requires_awardid": null, "requires_questid_completed": [], @@ -424107,11 +421883,11 @@ { "id": 1714, "notes": "Sir Sleepwell will send you to the Lava Isles for a shrubbery I mean ten wildflowers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Work on thy quests, bring me five wildflowers, and I shall grant thy request.", @@ -424135,11 +421911,11 @@ { "id": 1715, "notes": "Sleepwell sends you to Patsy.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -424168,14 +421944,14 @@ { "id": 1716, "notes": "Patsy sends you to Sleepwell", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -424196,14 +421972,14 @@ { "id": 1717, "notes": "Sleepwell sends you to Diedra", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -424224,11 +422000,11 @@ { "id": 1718, "notes": "Diedra tells you about the Lava Isles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, the Lava Isles? Yes, certainly. I've been there, they're great places to find treasures of the sea. Ashton is a nice little town. Why do you ask?", @@ -424238,7 +422014,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Oh, the Lava Isles? Yes, certainly. I've been there, they're great places to find treasures of the sea. Ashton is a nice little town. Why do you ask?", "requires_awardid": null, "requires_questid_completed": [], @@ -424252,14 +422028,14 @@ { "id": 1719, "notes": "Diedra sends you to Sleepwell", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -424280,14 +422056,14 @@ { "id": 1720, "notes": "Pella asks you to meet her back at her cave and she'll give you a prizer.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -424308,7 +422084,7 @@ { "id": 1721, "notes": "Getting hot in your search for Pookie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -424316,7 +422092,7 @@ "y": 312 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search high and low all around, but find nothing interesting.", @@ -424326,7 +422102,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "There are plenty of salamander tracks here, almost as if the animal were racing from one lava pool to the next.", "requires_awardid": null, "requires_questid_completed": [], @@ -424343,7 +422119,7 @@ { "id": 1722, "notes": "Getting warmer in your search for Pella.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -424351,7 +422127,7 @@ "y": 320 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search high and low all around, but find nothing interesting.", @@ -424361,7 +422137,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "The salamander tracks here proceed north.", "requires_awardid": null, "requires_questid_completed": [], @@ -424378,7 +422154,7 @@ { "id": 1723, "notes": "Getting warm in your search for Pella.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -424386,7 +422162,7 @@ "y": 327 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search high and low all around, but find nothing interesting.", @@ -424396,7 +422172,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "The salamander tracks here proceed due north.", "requires_awardid": null, "requires_questid_completed": [], @@ -424417,7 +422193,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -424425,7 +422201,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 100, @@ -424446,11 +422222,11 @@ { "id": 1725, "notes": "Harriet sells you Gold Ore", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 1000, "items_required": [ { @@ -424479,11 +422255,11 @@ { "id": 1726, "notes": "Harriet sells you Silver Ore", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 800, "items_required": [ { @@ -424512,11 +422288,11 @@ { "id": 1727, "notes": "Harriet sells you Copper Ore", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 500, "items_required": [ { @@ -424545,11 +422321,11 @@ { "id": 1728, "notes": "Harriet sells you Iron Ore", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 300, "items_required": [ { @@ -424578,11 +422354,11 @@ { "id": 1729, "notes": "You've met Harriet and already been whined at.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Here are my prices. (She points to a sign on the wall which reads:)

Gold Ore: $1000 each
Silver Ore: $800 each
Copper Ore: $500 each
Iron Ore: $300 each.", @@ -424592,7 +422368,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Here are my prices. (She points to a sign on the wall which reads:)

Gold Ore: $1000 each
Silver Ore: $800 each
Copper Ore: $500 each
Iron Ore: $300 each.", "requires_awardid": null, "requires_questid_completed": [], @@ -424606,11 +422382,11 @@ { "id": 1730, "notes": "Lenny sends you off to bring Rock Glass goblets to Mona on Art Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -424618,7 +422394,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -424639,11 +422415,11 @@ { "id": 1731, "notes": "Mona takes the goblets and pays you for them.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -424676,7 +422452,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 10000, "items_required": [], "fail_npc_chat": "Hey, hey! Wait a minute, here! What happened? She paid you my money and you spent it?! Get out of here until you've got it you... you... Get out of here!", @@ -424700,11 +422476,11 @@ { "id": 1733, "notes": "Lenny gives you a chunk of zinc oxide and some copper and sends you for a valve.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -424716,7 +422492,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -424737,11 +422513,11 @@ { "id": 1734, "notes": "Sandy Flint already has a brass valve that he'll trade you for the materials you've brought.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -424782,7 +422558,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -424815,11 +422591,11 @@ { "id": 1736, "notes": "Pookie will give you a diamond if you take the lunch to her brother.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -424827,7 +422603,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -424848,11 +422624,11 @@ { "id": 1749, "notes": "Mathilda Emdee gives you a Medical vial", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -424881,14 +422657,14 @@ { "id": 1737, "notes": "Accept Wee Troll quest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -424909,14 +422685,14 @@ { "id": 1738, "notes": "Make Troll Angry, get poofed into mudhole.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -424937,22 +422713,22 @@ { "id": 1739, "notes": "You've been asked to do one of the two Lenny quests (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -424965,14 +422741,14 @@ { "id": 1740, "notes": "Agree to look for clues to Ariela's missing Necklace", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -424993,7 +422769,7 @@ { "id": 1741, "notes": "Find Bird tracks leading off to the West", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -425001,7 +422777,7 @@ "y": 362 }, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -425028,12 +422804,10 @@ "id": 1743, "notes": "vianca Congratulates you for winning her challenge", "title": "Vianca's Game Challenge", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this! (bug)", @@ -425057,13 +422831,11 @@ { "id": 1744, "notes": "Barnabas Bets you $1000 that you can't answer her questions", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 1000, "items_required": [], "fail_npc_chat": "You do not have the $1000 for this challenge. Come back when you do, please!", @@ -425088,12 +422860,10 @@ "id": 1745, "notes": "Barnabas Congratulates you for winning his challenge", "title": "Barnabas' Isles Challenge", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this! (bug)", @@ -425117,14 +422887,14 @@ { "id": 1746, "notes": "Rolando sends you for 2 butterflies and 3 bunches of daisies.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -425149,7 +422919,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -425182,7 +422952,7 @@ { "id": 1748, "notes": "Rake to get into Capri's Clearing", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -425190,7 +422960,7 @@ "y": 130 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -425216,7 +422986,7 @@ { "id": 1871, "notes": "Rake to get into Iambe's Clearing", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -425224,7 +422994,7 @@ "y": 212 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -425250,11 +423020,11 @@ { "id": 1750, "notes": "You Give Wildfire Medicine", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -425262,7 +423032,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -425270,7 +423040,7 @@ "warp_x": null, "warp_y": null, "success_message": "You gave WildFire the Medicine.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -425283,11 +423053,11 @@ { "id": 1752, "notes": "Throw Matty's lunch at him.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -425317,15 +423087,13 @@ "id": 1751, "notes": "Mathilda Emdee gives you reward for delivery", "title": "Mathilda's Medicine Delivery", - "requires_questid_npc": [ - 32 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 25, @@ -425336,7 +423104,9 @@ "success_npc_chat": "Great! Thank you for doing that. I'm sure he will be in full health in no time. Here is something for your trouble.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 32 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "LinuxDude", @@ -425353,7 +423123,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -425361,7 +423131,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 50, @@ -425382,11 +423152,11 @@ { "id": 1754, "notes": "WildFire gives you a box of apples for Shadowfax", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -425415,11 +423185,11 @@ { "id": 1755, "notes": "Shadowfax accepts apples from you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -425456,7 +423226,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -425468,7 +423238,7 @@ "quantity": 30 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 25, @@ -425489,11 +423259,11 @@ { "id": 2684, "notes": "Give Rika an emerald necklace for Stinky's quest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -425526,7 +423296,7 @@ { "id": 1757, "notes": "Find Ariela's Necklace in a tree.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -425534,7 +423304,7 @@ "y": 360 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -425565,14 +423335,14 @@ { "id": 1758, "notes": "Ariela tells you where to find her necklace.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -425597,7 +423367,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -425630,7 +423400,7 @@ { "id": 1760, "notes": "Find Guinea pig Kira", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -425638,7 +423408,7 @@ "y": 351 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -425654,7 +423424,7 @@ "warp_x": null, "warp_y": null, "success_message": "After carefully looking around, you manage to find Kira the Guinea Pig huddled behind a rock.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -425673,7 +423443,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -425689,7 +423459,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 75, @@ -425710,14 +423480,14 @@ { "id": 1761, "notes": "Agree to find Guinea Pig Kira for Penfold", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -425738,7 +423508,7 @@ { "id": 1762, "notes": "Find guinea pig Tracks", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -425746,7 +423516,7 @@ "y": 343 }, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -425772,14 +423542,14 @@ { "id": 1764, "notes": "Lornbacoll sends you for the Malted Falcon recipe.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -425800,21 +423570,21 @@ { "id": 1765, "notes": "You've met Pederlaurie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "I wasn't looking for anything. Nothing at all. I was just wandering around seeing what's here, that's all. I'll be on my way, now. Goodbye.", "requires_awardid": null, "requires_questid_completed": [], @@ -425828,14 +423598,14 @@ { "id": 1766, "notes": "Agree to get Jelly from Sandra for Patricia Plum", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -425856,11 +423626,11 @@ { "id": 1767, "notes": "Sandra gives you Plum Jelly.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 200, "items_required": [ { @@ -425893,7 +423663,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -425922,11 +423692,11 @@ { "id": 1769, "notes": "Agree to check pet stores for a cat for Lucy Reins", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "That's all right, I'm sure you're busy. Maybe you can help me some other time.", @@ -425950,11 +423720,11 @@ { "id": 1770, "notes": "Agree to bring cat treats from Spike Lizzard to Daria Pale", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -425985,11 +423755,11 @@ { "id": 1771, "notes": "Accept a cat treat and go to seek out Wolf, the cat pack leader.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426022,11 +423792,11 @@ { "id": 1772, "notes": "Give Fancy Cat Treat to Wolf and ask for a cat for Lucy Reins", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426060,12 +423830,10 @@ "id": 1773, "notes": "Deliver a cat to Lucy Reins in Shellton Tack Shop.", "title": "Lucy's Mouse Problem", - "requires_questid_npc": [ - 483 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426088,7 +423856,9 @@ "success_npc_chat": "Cat Isle, I didn't even think of that. I just love him! Thank you so much, here's a reward for your time and effort.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 483 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Bazjack", @@ -426098,14 +423868,14 @@ { "id": 1774, "notes": "The Green Dragon gives you a clue!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -426126,14 +423896,14 @@ { "id": 1775, "notes": "Green Dragon sends you back to Lornbacoll to find out more about the Malted Falcon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -426154,16 +423924,14 @@ { "id": 1776, "notes": "Offer to get a gerbil for Pillan", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3500, "items_gained": [], "quest_points": 0, @@ -426171,7 +423939,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have agreed to get a Gerbil for Pillan. You were given $3500.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -426184,16 +423952,14 @@ { "id": 1777, "notes": "Offer to get a rat for Pillan", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -426201,7 +423967,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have agreed to get a Rat for Pillan. You were given $2500.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -426215,12 +423981,10 @@ "id": 1778, "notes": "Receive Pillan's approval of rodent ", "title": "Pillan's Anniversary Gift", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426228,7 +423992,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 25, @@ -426249,11 +424013,11 @@ { "id": 1779, "notes": "Pillan accepts rat companion", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426282,11 +424046,11 @@ { "id": 1780, "notes": "Pillan accepts gerbil companion", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426315,14 +424079,14 @@ { "id": 1781, "notes": "Accept Barramundi Quest from Louis Penguin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -426343,16 +424107,14 @@ { "id": 1782, "notes": "Decide to find a cure for Shark Soup Brady", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -426373,16 +424135,14 @@ { "id": 1783, "notes": "Scurvy Gums Morgan tells you to go to Audrey in Hotton", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -426390,7 +424150,7 @@ "warp_x": null, "warp_y": null, "success_message": "You were told that Audrey in Hotton is a good choice for giving pirate-y medical advice.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -426403,11 +424163,11 @@ { "id": 1786, "notes": "Get 5 ebony wood while Xamba looks for clarinet molds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "No, no. Later we will make clarinet.", @@ -426433,16 +424193,14 @@ { "id": 1784, "notes": "Audrey tells you to gather fruit for Shark Soup Brady", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -426463,11 +424221,11 @@ { "id": 1785, "notes": "Agree to get a clarinet for Harmony.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "That's okay, maybe you can help me later.", @@ -426493,11 +424251,11 @@ { "id": 1787, "notes": "Give Xamba 5 ebony wood, receive clarinet molds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426530,11 +424288,11 @@ { "id": 1788, "notes": "Give Sandy Flint clarinet molds, agree to find 25 silver ore.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426563,11 +424321,11 @@ { "id": 1789, "notes": "Give Sandy 25 silver, go to get reeds from Barrett.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426596,11 +424354,11 @@ { "id": 1790, "notes": "Shark Soup Brady Accepts 10 Oranges", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426629,11 +424387,11 @@ { "id": 1791, "notes": "Shark Soup Brady Accepts 10 Strawberries and 10 Rotten Tomatoes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426666,11 +424424,11 @@ { "id": 1792, "notes": "Purchase a Box of Clarinet Reeds from Barrett for $1000", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -426703,7 +424461,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426715,7 +424473,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 150, @@ -426736,11 +424494,11 @@ { "id": 1794, "notes": "Return to Sandy for clarinet keys and molds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426773,11 +424531,11 @@ { "id": 1795, "notes": "Give Xamba the keys and molds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426812,11 +424570,11 @@ { "id": 1796, "notes": "Give Xamba the reeds and receive completed clarinet.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426850,12 +424608,10 @@ "id": 1797, "notes": "Give Harmony her clarinet.", "title": "Harmony's New Clarinet", - "requires_questid_npc": [ - 111 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426875,6 +424631,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 111, 1796 ], "hide_reply_on_fail": false, @@ -426886,22 +424643,22 @@ { "id": 1798, "notes": "You gave Pillan either a rat or gerbil (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -426914,13 +424671,11 @@ { "id": 1799, "notes": "Shark Soup Brady buys 10 Rotten Tomatoes for 1 Pearl", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -426953,14 +424708,14 @@ { "id": 1800, "notes": "Shark Soup Brady tells you she'll take tomatoes. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -426981,11 +424736,11 @@ { "id": 1801, "notes": "Cupid gives you chocolates for Venus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -426993,7 +424748,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427014,14 +424769,14 @@ { "id": 1802, "notes": "sends you back to Venus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427042,14 +424797,14 @@ { "id": 1803, "notes": "Jubal asks you to find him some stinky salve", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427070,14 +424825,14 @@ { "id": 1804, "notes": "Mr. Fin suggests Eunice for stinky salve", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427098,16 +424853,14 @@ { "id": 1805, "notes": "Eunice wants you to ask Odysseus about her recipe", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427128,16 +424881,14 @@ { "id": 1807, "notes": "Pass Odysseus' info to Eunice", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427158,14 +424909,14 @@ { "id": 1806, "notes": "Odysseus helps translate the old recipe.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427186,16 +424937,14 @@ { "id": 1808, "notes": "Agree to seek liniment ingredients for Eunice", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427216,11 +424965,11 @@ { "id": 1809, "notes": "Get list of liniment ingredients", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -427228,7 +424977,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427249,11 +424998,11 @@ { "id": 1810, "notes": "Candide gives lanolin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -427261,7 +425010,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427282,11 +425031,11 @@ { "id": 1811, "notes": "Buy rosemary from Rika", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 50, "items_required": [ { @@ -427315,11 +425064,11 @@ { "id": 1812, "notes": "Buy Camphor and Witch Hazel from Engolo-mbe", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -427352,11 +425101,11 @@ { "id": 1813, "notes": "Eunice takes lanolin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -427385,11 +425134,11 @@ { "id": 1814, "notes": "Eunice takes rosemary", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -427418,11 +425167,11 @@ { "id": 1815, "notes": "Eunice takes camphor and witch hazel", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -427455,11 +425204,11 @@ { "id": 1816, "notes": "Eunice takes the list", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -427467,7 +425216,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427488,11 +425237,11 @@ { "id": 1817, "notes": "Eunice gives liniment", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -427500,7 +425249,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427521,11 +425270,11 @@ { "id": 1818, "notes": "Jubal takes liniment", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -427533,7 +425282,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427561,7 +425310,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -427573,7 +425322,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 300, @@ -427594,14 +425343,14 @@ { "id": 1820, "notes": "Venus/Eros sends you back to Cupid When asked.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427622,11 +425371,11 @@ { "id": 1821, "notes": "Give chocolates to Venus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -427655,11 +425404,11 @@ { "id": 1822, "notes": "Cupid confirms that you've talked to Venus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I'm sorry, but it looks like you still have those chocolates. You should give those to Venus and then come back.", @@ -427685,14 +425434,14 @@ { "id": 1823, "notes": "Have a nice gossip session with Eunice", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427713,11 +425462,11 @@ { "id": 1824, "notes": "Cupid gives you chocolates for Eros", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -427725,7 +425474,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427746,14 +425495,14 @@ { "id": 1825, "notes": "Cupid sends you to Eros when asked.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427774,11 +425523,11 @@ { "id": 1826, "notes": "Give Eros chocolates and you are given a letter to give to Cupid.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -427815,7 +425564,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -427846,11 +425595,11 @@ { "id": 1828, "notes": "Agree to Help Jubal find out about his past, and check for 50% award", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "That's very kind of you, but you should wait till you know your way to Pirate Isle before you consider helping me, since I did have a past with pirates.", @@ -427874,14 +425623,14 @@ { "id": 1829, "notes": "Capri runs into her clearing", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427902,14 +425651,14 @@ { "id": 1830, "notes": "Decide to talk to Palila for more Jubal gossip", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427930,14 +425679,14 @@ { "id": 1831, "notes": "Captain Solomon sends you to Silver Mary for scraps", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -427958,11 +425707,11 @@ { "id": 1832, "notes": "Rogue Scrap Taker", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -427992,12 +425741,10 @@ "id": 1852, "notes": "Help Rashida with Checker Slide", "title": "Rashida's Checkers", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this puzzle.", @@ -428021,11 +425768,11 @@ { "id": 1833, "notes": "Jubal hands over scraps 2 & 15", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428033,7 +425780,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -428054,14 +425801,14 @@ { "id": 1834, "notes": "Palila gives clues about Calico Jack and a circus performer", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -428082,14 +425829,14 @@ { "id": 1835, "notes": "Reuben says that Gritty wore a turban for his act", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -428110,21 +425857,21 @@ { "id": 1836, "notes": "Gain Gritty's Trust", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You have to understand that I just mesmerized him. I don't know why they wanted me to. I've never done that before – hypnotized someone then not brought them out of it completely.", "requires_awardid": null, "requires_questid_completed": [], @@ -428138,11 +425885,11 @@ { "id": 1837, "notes": "Gritty gives scraps 1 & 16", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428150,7 +425897,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -428171,11 +425918,11 @@ { "id": 1838, "notes": "Silver Mary sells you scraps 4 & 13", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428208,11 +425955,11 @@ { "id": 1839, "notes": "Squalid Nathaniel sells you scraps 5 & 12", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428245,11 +425992,11 @@ { "id": 1840, "notes": "Crossbones Bridge Guard sells you scraps 6 & 11", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428282,14 +426029,14 @@ { "id": 1841, "notes": "Black Bart Faints", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -428310,11 +426057,11 @@ { "id": 1842, "notes": "Bird Rowboat Pirate sells scraps 9 & 8", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428347,11 +426094,11 @@ { "id": 1843, "notes": "Silvertooth Sam sells scraps 7 & 10", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428384,11 +426131,11 @@ { "id": 1844, "notes": "Rhianna gives scraps 3 & 14", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428396,7 +426143,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -428417,11 +426164,11 @@ { "id": 1845, "notes": "Swiftly Shuffle Sixteen Scraps - not tracked for Dieter", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -428440,7 +426187,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Oh, yes, I see them. Let me just arrange them properly.", "requires_awardid": null, "requires_questid_completed": [], @@ -428454,11 +426201,11 @@ { "id": 1846, "notes": "Pay a diamond to Dieter to spoonfeed you - not required", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428487,11 +426234,11 @@ { "id": 1847, "notes": "Swiftly Shuffle Sixteen Scraps - not tracked for Jubal", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -428510,7 +426257,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "I can see how my two that say “Make Rope” fit in there! But what's the solution to the riddle?", "requires_awardid": null, "requires_questid_completed": [], @@ -428524,11 +426271,11 @@ { "id": 1848, "notes": "Give Jubal a Gum Drop -and sneakily the 16 scraps", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428561,14 +426308,14 @@ { "id": 1849, "notes": "Jubal Remembers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -428589,17 +426336,15 @@ { "id": 1850, "notes": "Dig up Jubal's Treasure Chest", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 373, "y": 447 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428615,7 +426360,7 @@ "warp_x": null, "warp_y": null, "success_message": "Your shovel quickly hits something buried in the sand that serves as the floor of the teepee. A treasure chest! Better give this to Jubal.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -428631,12 +426376,10 @@ "id": 1851, "notes": "Jubal Rewards You After All - ", "title": "Jubal's Puzzle of the Scraps", - "requires_questid_npc": [ - 1819 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428663,7 +426406,9 @@ "success_npc_chat": "All this treasure! Thank you so very much. Please let me give you some of this, as a reward for your generous heart. You have helped me so much more than you can imagine.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1819 + ], "hide_reply_on_fail": false, "difficulty": "Advanced", "author": "Vetiver", @@ -428673,14 +426418,14 @@ { "id": 1853, "notes": "Patsy sends you to Igneous Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -428701,14 +426446,14 @@ { "id": 1854, "notes": "Koko sends you to Patsy, missing by a little ways. This is the normal way to get back to Lava Isle from Igneous Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -428729,14 +426474,14 @@ { "id": 1855, "notes": "Koko sends you to Patsy, missing by a little ways (tracked so you know when you have gone first time)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -428757,14 +426502,14 @@ { "id": 1856, "notes": "Cidny-Grynstrit Gives You Some Hints.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -428785,14 +426530,14 @@ { "id": 1857, "notes": "Agree to get roses for Venus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -428813,11 +426558,11 @@ { "id": 1858, "notes": "Give roses to Venus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428850,14 +426595,14 @@ { "id": 1859, "notes": "Agree to get Bananas and Strawberries for Venus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -428878,11 +426623,11 @@ { "id": 1860, "notes": "Recieve bananas from Cupcake for Venus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428890,7 +426635,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -428911,11 +426656,11 @@ { "id": 1861, "notes": "give bananas and strawberries to Venus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428950,14 +426695,14 @@ { "id": 1862, "notes": "Agree to get cinnamon and chocolate for Venus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -428978,11 +426723,11 @@ { "id": 1863, "notes": "Bena Buket gives you Cinnamon for Venus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -428990,7 +426735,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429011,11 +426756,11 @@ { "id": 1864, "notes": "Recieve Chocolate from Nana Knutcake.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -429023,7 +426768,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429045,12 +426790,10 @@ "id": 1865, "notes": "Give Cinnamon and Chocolate to Venus.", "title": "Venus' Potion", - "requires_questid_npc": [ - 1821 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -429073,7 +426816,9 @@ "success_npc_chat": "Oh, thank you! Now I can finish my potion. Please take this as a reward.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1821 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "CheshireKitty", @@ -429083,13 +426828,11 @@ { "id": 1866, "notes": "Get treasure riddle from Demetrius", - "title": "", - "requires_questid_npc": [ - 541 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -429097,7 +426840,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429108,7 +426851,9 @@ "success_npc_chat": "

Intriguing, yes? Take this copy. If you stay, for yet a moment more, I'll recite the clue. One would surmise that additional clues follow.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 541 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -429118,7 +426863,7 @@ { "id": 4526, "notes": "Banana for a Monkey", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -429126,7 +426871,7 @@ "y": 315 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -429159,11 +426904,11 @@ { "id": 1867, "notes": "First treasure location riddle ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [ { @@ -429171,7 +426916,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429192,11 +426937,11 @@ { "id": 1868, "notes": "Get #2 riddle from Luna", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [ { @@ -429208,7 +426953,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429229,7 +426974,7 @@ { "id": 1869, "notes": "Dig Crescent Isle riddle #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -429237,7 +426982,7 @@ "y": 282 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -429272,11 +427017,11 @@ { "id": 1870, "notes": "Easter Bunny gives you free chocolate bunny", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -429305,7 +427050,7 @@ { "id": 1872, "notes": "Rake out of Capri's Clearing", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -429313,7 +427058,7 @@ "y": 131 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -429323,8 +427068,8 @@ "goto_npc_chatpoint": -1, "warp_x": 645, "warp_y": 130, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -429337,7 +427082,7 @@ { "id": 1873, "notes": "Rake out of Iambe's Clearing", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -429345,7 +427090,7 @@ "y": 211 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -429355,8 +427100,8 @@ "goto_npc_chatpoint": -1, "warp_x": 563, "warp_y": 212, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -429369,7 +427114,7 @@ { "id": 1874, "notes": "Rake out of Fauna's Clearing", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -429377,7 +427122,7 @@ "y": 322 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -429387,8 +427132,8 @@ "goto_npc_chatpoint": -1, "warp_x": 598, "warp_y": 323, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -429401,11 +427146,11 @@ { "id": 1875, "notes": "Pederlaurie appears at Lornbacoll's cave", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "(Lornbacoll gets up and begins to pace her cave.) Yeah, I know how he is. So long as you can get before... well...", @@ -429415,7 +427160,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "(Lornbacoll gets up and begins to pace her cave.) Yeah, I know how he is. So long as you can get before... well...", "requires_awardid": null, "requires_questid_completed": [], @@ -429429,14 +427174,14 @@ { "id": 1876, "notes": "Big Blue puts you back on land", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429457,14 +427202,14 @@ { "id": 1906, "notes": "Big Troll tips you into the ocean because you're too chatty", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429485,14 +427230,14 @@ { "id": 1877, "notes": "Big Troll tips you into the ocean", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429513,14 +427258,14 @@ { "id": 1878, "notes": "Capri tells you to see Iambe", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429541,14 +427286,14 @@ { "id": 1879, "notes": "Iambe tells you to go see Fauna", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429569,7 +427314,7 @@ { "id": 1880, "notes": "Rake to get into Fauna's Clearing", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -429577,7 +427322,7 @@ "y": 323 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -429603,14 +427348,14 @@ { "id": 1881, "notes": "Agree to look for clues and help find Lulu for Nerina", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429631,7 +427376,7 @@ { "id": 1882, "notes": "Find Lulu's Footprints", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -429639,7 +427384,7 @@ "y": 422 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -429665,14 +427410,14 @@ { "id": 1883, "notes": "Nerina asks you to check Lava Beach and find Lulu", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429693,7 +427438,7 @@ { "id": 1884, "notes": "Find 2nd set of Lulu's prints", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -429701,7 +427446,7 @@ "y": 422 }, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -429712,7 +427457,7 @@ "warp_x": null, "warp_y": null, "success_message": "After closely examining the area, you see a few footprints heading to the south.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -429728,7 +427473,7 @@ { "id": 1885, "notes": "3rd set of foot prints", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -429736,7 +427481,7 @@ "y": 432 }, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -429747,7 +427492,7 @@ "warp_x": null, "warp_y": null, "success_message": "After closely examining the area, you see a few footprints heading west.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -429763,14 +427508,14 @@ { "id": 1886, "notes": "Fauna tells you where to find Wee Troll", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429791,22 +427536,22 @@ { "id": 1887, "notes": "Duplicate feel free to use", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -429819,7 +427564,7 @@ { "id": 1888, "notes": "Find Lulu", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -429827,7 +427572,7 @@ "y": 430 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -429862,7 +427607,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -429891,14 +427636,14 @@ { "id": 1890, "notes": "Wee Troll Poofs Home", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429919,14 +427664,14 @@ { "id": 1891, "notes": "you accept the challange of helping Holly with snowman supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1300, "items_gained": [], "quest_points": 0, @@ -429947,14 +427692,14 @@ { "id": 1892, "notes": "Nerina asks you to get medicine from Audrey for Lulu", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -429975,11 +427720,11 @@ { "id": 1893, "notes": "Receive medicine from Audrey", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -429987,7 +427732,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -430009,12 +427754,10 @@ "id": 1894, "notes": "Give medicine to Nerina ", "title": "Medicine for Lulu", - "requires_questid_npc": [ - 1889 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430033,7 +427776,9 @@ "success_npc_chat": "Oh, thank you! I'm sure this will help her feel much better. Here, take this for a reward.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1889 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "CheshireKitty", @@ -430043,11 +427788,11 @@ { "id": 1895, "notes": "Holly accepts the first lot of snowballs from you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430076,11 +427821,11 @@ { "id": 1896, "notes": "Holly accepts the Second lot of snowballs from you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430109,11 +427854,11 @@ { "id": 1897, "notes": "Holly accepts 2 skinny branches from you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430142,11 +427887,11 @@ { "id": 1898, "notes": "Holly accepts 2 walnuts from you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430175,11 +427920,11 @@ { "id": 1899, "notes": "Holly accepts a Carrot from you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430208,11 +427953,11 @@ { "id": 1900, "notes": "Quest Check - Giving you cheese - now go back to Renard ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -430224,7 +427969,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -430232,7 +427977,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've got the cheese, now go see Renard", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -430249,7 +427994,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "It doesn't look like you have given me everything yet.", @@ -430279,14 +428024,14 @@ { "id": 1902, "notes": "You agree to help Holly get a hat for the snow man", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -430307,11 +428052,11 @@ { "id": 1903, "notes": "you accept a hat from Jayne for the Holly's snowman", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430319,7 +428064,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -430344,7 +428089,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430377,7 +428122,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430389,7 +428134,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 7000, "items_gained": [], "quest_points": 125, @@ -430410,21 +428155,21 @@ { "id": 1907, "notes": "Lornbacoll sends you to look down an alley by a volcano...", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 21, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "If I were you, you know what I would do? I'd find an alley by a volcano, that's what I should do. Shouldn't I, Peder?
(Pederlaurie frowns and turns away.)", "requires_awardid": null, "requires_questid_completed": [], @@ -430438,7 +428183,7 @@ { "id": 1908, "notes": "Find the Malted Falcon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -430446,7 +428191,7 @@ "y": 359 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430477,11 +428222,11 @@ { "id": 1909, "notes": "Give The Malted Falcon Away", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430511,12 +428256,10 @@ "id": 1910, "notes": "The Stuff That Cremes Are Made Of...", "title": "The Malted Falcon", - "requires_questid_npc": [ - 1681 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430524,7 +428267,7 @@ "quantity": 15 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 75, @@ -430535,7 +428278,9 @@ "success_npc_chat": "(As the dust settles, you see Lornbacoll holding the box. Abrubtly, she smashes it against the wall of the cave and quickly scoops up the beans.) There! The Stuff that Cremes are made of! Take this as reward, rider, and get out while you can!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1681 + ], "hide_reply_on_fail": false, "difficulty": "Advanced", "author": "SpottedRose", @@ -430545,11 +428290,11 @@ { "id": 1911, "notes": "quest checking - give me murigal's gems", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430557,7 +428302,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -430565,7 +428310,7 @@ "warp_x": null, "warp_y": null, "success_message": "You recieved 10 Royal Gemstones", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -430578,7 +428323,7 @@ { "id": 1974, "notes": "Find the Snake", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -430586,7 +428331,7 @@ "y": 452 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430605,7 +428350,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Digging under the shade of the tree, you find a beautiful little iridescent Indigo Snake--and a Chunk of Obsidian.", "requires_awardid": null, "requires_questid_completed": [], @@ -430621,14 +428366,14 @@ { "id": 1912, "notes": "Lornbacoll jumps you to Ashton.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -430649,11 +428394,11 @@ { "id": 1913, "notes": "Joe Longbeard asks you for help", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Aargh! I already told ye what t'was I wanted o' ye. Now away with ye.", @@ -430677,11 +428422,11 @@ { "id": 1914, "notes": "Joe Longbeard gives you money for his kit.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430689,7 +428434,7 @@ "quantity": 6 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -430710,11 +428455,11 @@ { "id": 1915, "notes": "Ricardo agrees to make grooming kit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Well, do you or don't you have a reason to be bothering me?", @@ -430738,11 +428483,11 @@ { "id": 1916, "notes": "Ricardo gives you the finished grooming kit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430775,11 +428520,11 @@ { "id": 1917, "notes": "Joe Longbeard gets his grooming kit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430787,7 +428532,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -430814,7 +428559,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430843,14 +428588,14 @@ { "id": 1919, "notes": "Linnea asks you to make her donations", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -430871,14 +428616,14 @@ { "id": 1920, "notes": "Tell Linnea about Flavius' Reaction", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -430899,11 +428644,11 @@ { "id": 1921, "notes": "Linnea gives three rugs and travel money", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430911,7 +428656,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -430932,14 +428677,14 @@ { "id": 1922, "notes": "Iona says to give a rug to Flavius", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -430960,11 +428705,11 @@ { "id": 1923, "notes": "Give the rug to Flavius", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -430972,7 +428717,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -430993,14 +428738,14 @@ { "id": 1924, "notes": "Flavius' rug response", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431021,14 +428766,14 @@ { "id": 1925, "notes": "Iona sends you to Temperance", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431049,14 +428794,14 @@ { "id": 1926, "notes": "Temperance think Dalton needs a rug", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431077,11 +428822,11 @@ { "id": 1927, "notes": "Give Rug to Dalton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -431089,7 +428834,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431110,14 +428855,14 @@ { "id": 1928, "notes": "Dalton's Rug Response.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431138,14 +428883,14 @@ { "id": 1929, "notes": "Temperence Sends You to Sara", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431166,14 +428911,14 @@ { "id": 1930, "notes": "Sara tells you to give Ormand the rug.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431194,11 +428939,11 @@ { "id": 1931, "notes": "Force a rug on Ormand", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -431206,7 +428951,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431227,14 +428972,14 @@ { "id": 1932, "notes": "Ormand's rug reaction", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431255,14 +429000,14 @@ { "id": 1933, "notes": "Linnea gives you more travel money to find out about Ormand's reaction, if you skipped it.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -431291,7 +429036,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -431299,7 +429044,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 7500, "items_gained": [], "quest_points": 200, @@ -431320,11 +429065,11 @@ { "id": 1935, "notes": "Demetrius' clue riddle #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -431336,7 +429081,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431357,11 +429102,11 @@ { "id": 1936, "notes": "Demetrius' clue riddle #4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -431373,7 +429118,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431394,7 +429139,7 @@ { "id": 1937, "notes": "Demetrius' clue riddle #5 on Haven Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -431402,7 +429147,7 @@ "y": 300 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -431437,11 +429182,11 @@ { "id": 1938, "notes": "Brea gives you her list", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -431449,7 +429194,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431470,11 +429215,11 @@ { "id": 1939, "notes": "you give Brea's list to Zeke", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -431511,7 +429256,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -431519,7 +429264,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 25, @@ -431544,10 +429289,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 50, @@ -431568,14 +429313,14 @@ { "id": 1943, "notes": "Eros asks you to find his wife.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431596,14 +429341,14 @@ { "id": 1944, "notes": "Parisa asks you to help her find two missing bones.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431624,7 +429369,7 @@ { "id": 1945, "notes": "Find the first bone.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -431632,7 +429377,7 @@ "y": 418 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -431663,7 +429408,7 @@ { "id": 1946, "notes": "Find the second bone.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -431671,7 +429416,7 @@ "y": 422 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -431702,11 +429447,11 @@ { "id": 1947, "notes": "Give bones to Parisa", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -431742,10 +429487,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 6000, "items_gained": [], "quest_points": 100, @@ -431766,14 +429511,14 @@ { "id": 1949, "notes": "Accept Nomasonto's quest to go find her daughter", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431794,16 +429539,14 @@ { "id": 1950, "notes": "Bailey wants to build a rose trellis", - "title": "", - "requires_questid_npc": [ - 437 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431814,7 +429557,9 @@ "success_npc_chat": "That's so nice of you, dearie. The first thing I need will be 5 logs and 15 strong skinny branches. ", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 437 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": null, @@ -431824,14 +429569,14 @@ { "id": 1951, "notes": "Accepted Mtomka's quest to find Odetho.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431852,21 +429597,21 @@ { "id": 1952, "notes": "Odetho is nowhere to be found. (Tracker to make Mtomka disappear.)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "(Mtomka says nothing, but climbs up and sits behind you on your horse. Her face is dry now, as if she's given up crying.)", "requires_awardid": null, "requires_questid_completed": [], @@ -431884,7 +429629,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -431896,7 +429641,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 50, @@ -431917,11 +429662,11 @@ { "id": 1954, "notes": "Bailey gets her lumber.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -431954,14 +429699,14 @@ { "id": 1958, "notes": "Bailey sends you for her roses", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -431982,11 +429727,11 @@ { "id": 1955, "notes": "Calla Lilly gives you the rose bushes ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432019,7 +429764,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432052,11 +429797,11 @@ { "id": 1957, "notes": "You've met Mtomka (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You again! Please, please, please help me!", @@ -432066,7 +429811,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "(Running back and forth through the trees is a young girl almost shaking with fear.) Help! I need help!", "requires_awardid": null, "requires_questid_completed": [], @@ -432080,11 +429825,11 @@ { "id": 1959, "notes": "Agree to do Gina's Scavenger Hunt", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You're doing the scavenger hunt for me, remember? You said you would!", @@ -432094,7 +429839,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "I donno. I'd love it if someone did it, but this one's kind of hard. ", "requires_awardid": null, "requires_questid_completed": [], @@ -432108,14 +429853,14 @@ { "id": 1960, "notes": "Gina Tells You To Get A Scorpion (in a roundabout way)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -432136,11 +429881,11 @@ { "id": 1961, "notes": "Give Gina a Scorpion, get the 2nd clue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432169,11 +429914,11 @@ { "id": 1962, "notes": "Give Gina a Strong, Skinny Branch, get instructions to find a blue mouse.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432202,7 +429947,7 @@ { "id": 1963, "notes": "Find A Blue Mouse", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -432210,7 +429955,7 @@ "y": 419 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432225,7 +429970,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Raking through the leaves, you discover a little toy mouse, made of wood and painted blue.", "requires_awardid": null, "requires_questid_completed": [], @@ -432241,11 +429986,11 @@ { "id": 1964, "notes": "Give Gina the Blue Mouse, get instructions for finding the snake.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432274,14 +430019,14 @@ { "id": 1965, "notes": "Asher asks you to find his brother Studly.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -432302,7 +430047,7 @@ { "id": 1966, "notes": "Find tracks 1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -432310,7 +430055,7 @@ "y": 444 }, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -432321,7 +430066,7 @@ "warp_x": null, "warp_y": null, "success_message": "After carefully examining the ground beneath you, you find some snake tracks leading off to the west.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -432337,7 +430082,7 @@ { "id": 1967, "notes": "Tracks 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -432345,7 +430090,7 @@ "y": 444 }, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -432356,7 +430101,7 @@ "warp_x": null, "warp_y": null, "success_message": "After carefully examining the ground beneath you, you find some snake tracks leading off to the south.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -432372,7 +430117,7 @@ { "id": 1968, "notes": "Tracks 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -432380,7 +430125,7 @@ "y": 450 }, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -432391,7 +430136,7 @@ "warp_x": null, "warp_y": null, "success_message": "After carefully examining the ground beneath you, you find some snake tracks leading off to the east and north.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -432407,7 +430152,7 @@ { "id": 1969, "notes": "Tracks 4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -432415,7 +430160,7 @@ "y": 446 }, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -432426,7 +430171,7 @@ "warp_x": null, "warp_y": null, "success_message": "After carefully examining the ground beneath you, you find some snake tracks leading off to the south.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -432442,11 +430187,11 @@ { "id": 1970, "notes": "Find Studly and take him back to Asher.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432454,7 +430199,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -432479,7 +430224,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432512,13 +430257,11 @@ { "id": 1972, "notes": "Mary Molasses Bets you $1000 that you can't answer her questions", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 1000, "items_required": [], "fail_npc_chat": "You do not have the $1000 for this challenge. Come back when you do, please!", @@ -432546,10 +430289,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 50, @@ -432570,11 +430313,11 @@ { "id": 1975, "notes": "Give Gina a snake, get the fourth clue.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432603,14 +430346,14 @@ { "id": 1976, "notes": "Captain Solomon reveals his grooming secrets ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -432631,11 +430374,11 @@ { "id": 1977, "notes": "Gina reluctantly gives you another clue (item 4, halter)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Sorry, I decided not to after all.", @@ -432659,7 +430402,7 @@ { "id": 1978, "notes": "Find the halter hanging near the beehive.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -432667,7 +430410,7 @@ "y": 455 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432702,11 +430445,11 @@ { "id": 1979, "notes": "Give Gina the halter with lead rope, get the last clue.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432736,12 +430479,10 @@ "id": 1980, "notes": "Give Gina the box, win the quest. ", "title": "Gina's Scavenger Hunt", - "requires_questid_npc": [ - 1362 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432764,7 +430505,9 @@ "success_npc_chat": "Wow! You found it! Cooooool! Here, you can have these. I don't need them. (Gina opens the box and hands you what was inside: three diamonds!)", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1362 + ], "hide_reply_on_fail": true, "difficulty": "Advanced", "author": "SpottedRose", @@ -432774,7 +430517,7 @@ { "id": 1981, "notes": "Find the last of Gina's items, the Fox Box", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -432782,7 +430525,7 @@ "y": 455 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432813,11 +430556,11 @@ { "id": 2033, "notes": "Ilom gives you a word of advice", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I have already told you! Have forgotten so quickly? That seems unwise to me!", @@ -432841,14 +430584,14 @@ { "id": 1982, "notes": "Agree to check in on Nerina for Eros.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -432869,14 +430612,14 @@ { "id": 1983, "notes": "Nerina asks you to check up on the sea creatures.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -432897,11 +430640,11 @@ { "id": 1984, "notes": "Shiri asks you to take a bird to Nerina.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432909,7 +430652,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -432930,11 +430673,11 @@ { "id": 1985, "notes": "Nerina takes the bird from you.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432963,11 +430706,11 @@ { "id": 1986, "notes": "Nerina gives you a reward for brining the bird to her.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -432975,7 +430718,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433000,7 +430743,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I don't think you have talked to her yet. Please come back once you have.", @@ -433024,14 +430767,14 @@ { "id": 1988, "notes": "Betsy Burlap asks you to go to Loch Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433052,14 +430795,14 @@ { "id": 1989, "notes": "Davy McGee tells you whre to find Ben", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433084,10 +430827,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 50, @@ -433108,13 +430851,11 @@ { "id": 1991, "notes": "Betsy gives presents to be delivered", - "title": "", - "requires_questid_npc": [ - 1990 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -433126,7 +430867,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433137,7 +430878,9 @@ "success_npc_chat": "Thank you. Now here's a present for Ben and one for Bena. Could you deliver these gifts first to Ben and then to Bena? And then come back and let me know how they liked them.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1990 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -433147,11 +430890,11 @@ { "id": 1992, "notes": "Ben gets Betsy's present", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -433159,7 +430902,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433182,11 +430925,11 @@ { "id": 1993, "notes": "Ben sends a gift to Bena", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -433194,7 +430937,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433215,11 +430958,11 @@ { "id": 1994, "notes": "Bena receives her gifts", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -433227,7 +430970,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433248,11 +430991,11 @@ { "id": 1995, "notes": "Bena sends Ben a gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -433264,7 +431007,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 750, "items_gained": [], "quest_points": 0, @@ -433285,11 +431028,11 @@ { "id": 1996, "notes": "Ben gets Bena's gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -433297,7 +431040,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433318,11 +431061,11 @@ { "id": 1997, "notes": "Ben gives you a gift for Betsy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -433330,7 +431073,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 500, "items_gained": [], "quest_points": 0, @@ -433351,11 +431094,11 @@ { "id": 1998, "notes": "Betsy gets her gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -433367,7 +431110,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433389,15 +431132,13 @@ "id": 1999, "notes": "Betsy thanks you ", "title": "Burlap Family Reunion", - "requires_questid_npc": [ - 1990 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 125, @@ -433408,7 +431149,9 @@ "success_npc_chat": "Yes, it did, better than I had hoped for! And I owe it all to you. Please accept this as a token of my appreciation.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1990 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "BklynFilly", @@ -433418,7 +431161,7 @@ { "id": 2000, "notes": "Jungle Observation Deck Access (1)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433426,7 +431169,7 @@ "y": 205 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search high and low all around, but find nothing interesting.", @@ -433452,7 +431195,7 @@ { "id": 2001, "notes": "Jungle Observation Deck Progress (2)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433460,10 +431203,10 @@ "y": 204 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433484,7 +431227,7 @@ { "id": 2002, "notes": "Jungle Observation Deck Progress (3)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433492,10 +431235,10 @@ "y": 204 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433516,7 +431259,7 @@ { "id": 2003, "notes": "Jungle Observation Deck Progress (4)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433524,10 +431267,10 @@ "y": 203 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433548,7 +431291,7 @@ { "id": 2004, "notes": "Jungle Observation Deck Progress (5)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433556,10 +431299,10 @@ "y": 203 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433580,7 +431323,7 @@ { "id": 2005, "notes": "Jungle Observation Deck Access (6)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433588,10 +431331,10 @@ "y": 204 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433612,7 +431355,7 @@ { "id": 2006, "notes": "Jungle Observation Deck Access (7)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433620,10 +431363,10 @@ "y": 206 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433644,7 +431387,7 @@ { "id": 2007, "notes": "Jungle Observation Deck Progress (8)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433652,10 +431395,10 @@ "y": 207 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433676,7 +431419,7 @@ { "id": 2008, "notes": "Jungle Observation Deck Access (8b)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433684,10 +431427,10 @@ "y": 207 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433708,7 +431451,7 @@ { "id": 2009, "notes": "Jungle Observation Deck Progress (9)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433716,10 +431459,10 @@ "y": 207 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433740,7 +431483,7 @@ { "id": 2010, "notes": "Jungle Observation Deck Progress (10)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433748,10 +431491,10 @@ "y": 208 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433772,7 +431515,7 @@ { "id": 2011, "notes": "Jungle Observation Deck Progress (11)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433780,10 +431523,10 @@ "y": 208 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433804,7 +431547,7 @@ { "id": 2012, "notes": "Jungle Observation Deck Progress (12)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433812,10 +431555,10 @@ "y": 209 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433836,7 +431579,7 @@ { "id": 2013, "notes": "Jungle Observation Deck Progress (13)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433844,10 +431587,10 @@ "y": 209 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433868,7 +431611,7 @@ { "id": 2014, "notes": "Jungle Observation Deck Progress (14)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433876,10 +431619,10 @@ "y": 209 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433900,7 +431643,7 @@ { "id": 2015, "notes": "Jungle Observation Deck Progress (15)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433908,10 +431651,10 @@ "y": 210 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433932,7 +431675,7 @@ { "id": 2016, "notes": "Jungle Observation Deck Progress (16)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433940,10 +431683,10 @@ "y": 210 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433964,7 +431707,7 @@ { "id": 2017, "notes": "Jungle Observation Deck Progress (17)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -433972,10 +431715,10 @@ "y": 210 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -433996,7 +431739,7 @@ { "id": 2018, "notes": "Jungle Observation Deck Access (18)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -434004,10 +431747,10 @@ "y": 212 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -434028,7 +431771,7 @@ { "id": 2019, "notes": "Jungle Observation Deck Access (14b)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -434036,10 +431779,10 @@ "y": 211 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -434067,10 +431810,10 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 75, @@ -434098,7 +431841,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -434135,14 +431878,14 @@ { "id": 2022, "notes": "Accept Omands UI Animal Quest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -434163,14 +431906,14 @@ { "id": 2023, "notes": "Omand tells you where the observation deck is.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -434191,14 +431934,14 @@ { "id": 2024, "notes": "Omand tells you how to move in the decks", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -434219,14 +431962,14 @@ { "id": 2025, "notes": "Learn about Francis", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -434247,14 +431990,14 @@ { "id": 2026, "notes": "Agree to find disguise for Francis", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -434275,11 +432018,11 @@ { "id": 2028, "notes": "Get fur coat from Leroy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 100, "items_required": [ { @@ -434308,14 +432051,14 @@ { "id": 2027, "notes": "Francis wants a fur coat and a pith helmet", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -434336,11 +432079,11 @@ { "id": 2029, "notes": "Get pith helmet from Ben Burlap", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 100, "items_required": [ { @@ -434369,22 +432112,22 @@ { "id": 2030, "notes": "Chained action for getting either one of Francis' disguise items", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -434397,11 +432140,11 @@ { "id": 2031, "notes": "Guru Wiseman's Got A Little List (and they never will be missed)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -434430,11 +432173,11 @@ { "id": 2032, "notes": "Miss Mabel Gives You A Word Of Advice", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I've already told you: He Who Yells First, Loses.", @@ -434458,11 +432201,11 @@ { "id": 2034, "notes": "Flavius gives you many words of advice", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You forgot, didn't you? Get out of here!", @@ -434486,11 +432229,11 @@ { "id": 2035, "notes": "The Magenta Dragon gives you some words of wisdom", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I knew you wouldn't listen. Be gone.", @@ -434514,11 +432257,11 @@ { "id": 2036, "notes": "Odysseus gives you his wisdom", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Really! How could you forget a thing like that?", @@ -434543,12 +432286,10 @@ "id": 2037, "notes": "Give Wiseman his list and get your reward. ", "title": "Guru Wiseman's Wisdom Encyclopedia", - "requires_questid_npc": [ - 1087 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -434581,7 +432322,9 @@ 2035, 2036 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1087 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "SpottedRose", @@ -434591,11 +432334,11 @@ { "id": 2038, "notes": "Sir Sleepwell sends you on his quest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Thou art back without my armament? Get thee hence back to Patsy!", @@ -434619,11 +432362,11 @@ { "id": 2039, "notes": "Patsy asks you to see Koko", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You're back without everything? Go back to Koko now!", @@ -434647,11 +432390,11 @@ { "id": 2040, "notes": "Koko owns up", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You found everything? You'd better go back and keep looking, ask Epona for help.", @@ -434675,7 +432418,7 @@ { "id": 2041, "notes": "You find half a sword", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -434683,7 +432426,7 @@ "y": 240 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -434714,7 +432457,7 @@ { "id": 2042, "notes": "You find the hilt", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -434722,7 +432465,7 @@ "y": 238 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -434753,7 +432496,7 @@ { "id": 2043, "notes": "You find the shield", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -434761,7 +432504,7 @@ "y": 252 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -434792,11 +432535,11 @@ { "id": 2044, "notes": "You give Patsy the shield", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -434828,11 +432571,11 @@ { "id": 2045, "notes": "Patsy sends you to get the sword repaired", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -434840,7 +432583,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -434861,11 +432604,11 @@ { "id": 2046, "notes": "You give Ward Anvil the sword parts", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -434898,11 +432641,11 @@ { "id": 2047, "notes": "Ward Anvil repairs the sword", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -434935,11 +432678,11 @@ { "id": 2048, "notes": "You give Sir Sleepwell his sword", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -434969,15 +432712,13 @@ "id": 2049, "notes": "Sir Sleepwell thanks you ", "title": "Sir Sleepwell's Armament", - "requires_questid_npc": [ - 1714 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 175, @@ -434988,7 +432729,9 @@ "success_npc_chat": "Kindly adventurer, please accept this as a small token of my eternal gratitude for your assistance.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1714 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "BklynFilly", @@ -434998,14 +432741,14 @@ { "id": 2050, "notes": "Earton-Francis heads to Gritty's beach shack", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435026,14 +432769,14 @@ { "id": 2051, "notes": "GrittyShack-Francis heads to Hoof Beach Shack", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435054,14 +432797,14 @@ { "id": 2052, "notes": "Hoof-Francis heads to Supply hut near Santon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435082,14 +432825,14 @@ { "id": 2053, "notes": "SupplyHut-Francis heads to Oasis (to his house, actually)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435111,12 +432854,10 @@ "id": 2054, "notes": "Francis abruptly finds a home and rewards you.", "title": "Francis' New Home", - "requires_questid_npc": [ - 2021 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -435128,7 +432869,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 150, @@ -435139,7 +432880,9 @@ "success_npc_chat": "It's easier on my rear end than that supply hut, for certain! Yes, suddenly, and out of nowhere, even, this is just the home I've been looking for! I love it! Please, little pal, take this stuff I found -- along with my everlasting gratitude!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2021 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Vetiver", @@ -435149,14 +432892,14 @@ { "id": 2055, "notes": "You help Francis take off his disguise - not part of a quest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435177,14 +432920,14 @@ { "id": 2056, "notes": "Patsy sends you back to Puuhonua, one mo' time", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435205,11 +432948,11 @@ { "id": 2058, "notes": "Nana Knutkake gets her seeds", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -435242,11 +432985,11 @@ { "id": 2059, "notes": "Cara Cook gets her seeds", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -435279,11 +433022,11 @@ { "id": 2060, "notes": "John O'Lantern gets his deliveries", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -435320,7 +433063,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -435328,7 +433071,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 50, @@ -435349,14 +433092,14 @@ { "id": 2062, "notes": "Agree to see Nina to get food for Leuko's babies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435377,11 +433120,11 @@ { "id": 2063, "notes": "Nina gives you eaglet food for leuko", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -435389,7 +433132,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435411,12 +433154,10 @@ "id": 2064, "notes": "You give Leuko the eaglet food", "title": "Leuko's Hatchlings", - "requires_questid_npc": [ - 762 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -435428,7 +433169,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 50, @@ -435439,7 +433180,9 @@ "success_npc_chat": "Haawk! (Leuko takes the food, starts ripping open the sack with her beak. She takes a second to toss a sapphire necklace down to you.)", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 762 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Miranda", @@ -435449,14 +433192,14 @@ { "id": 2065, "notes": "Agree to collect samples for Vesuvia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435464,7 +433207,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have agreed to collect samples from the large volcanoes for Vesuvia.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -435477,7 +433220,7 @@ { "id": 2066, "notes": "Dig into Pumice Isle volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -435485,10 +433228,10 @@ "y": 408 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435509,7 +433252,7 @@ { "id": 2067, "notes": "Rake up a small sample from Pumice Isle volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -435517,7 +433260,7 @@ "y": 409 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -435548,7 +433291,7 @@ { "id": 2068, "notes": "Dig into Ashton volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -435556,10 +433299,10 @@ "y": 344 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435580,7 +433323,7 @@ { "id": 2069, "notes": "Rake up a small sample from Ashton volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -435588,7 +433331,7 @@ "y": 345 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -435619,7 +433362,7 @@ { "id": 2070, "notes": "Dig into Princess Pookie volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -435627,10 +433370,10 @@ "y": 461 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435651,7 +433394,7 @@ { "id": 2071, "notes": "Rake up a small sample from Princess Pookie volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -435659,7 +433402,7 @@ "y": 462 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -435690,7 +433433,7 @@ { "id": 2072, "notes": "Dig into Lenny volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -435698,10 +433441,10 @@ "y": 312 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435722,7 +433465,7 @@ { "id": 2073, "notes": "Rake up a small sample from Lenny volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -435730,7 +433473,7 @@ "y": 313 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -435761,7 +433504,7 @@ { "id": 2074, "notes": "Dig into Igneous Isle volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -435769,10 +433512,10 @@ "y": 251 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435793,7 +433536,7 @@ { "id": 2075, "notes": "Rake up a small sample from Igneous Isle volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -435801,7 +433544,7 @@ "y": 252 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -435832,7 +433575,7 @@ { "id": 2076, "notes": "Dig into Magma Isle volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -435840,10 +433583,10 @@ "y": 215 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435864,7 +433607,7 @@ { "id": 2077, "notes": "Rake up a small sample from Magma Isle volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -435872,7 +433615,7 @@ "y": 216 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -435903,7 +433646,7 @@ { "id": 2078, "notes": "Dig into Red Dragon volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -435911,10 +433654,10 @@ "y": 350 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -435935,7 +433678,7 @@ { "id": 2079, "notes": "Rake up a small sample from Red Dragon volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -435943,7 +433686,7 @@ "y": 351 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -435974,7 +433717,7 @@ { "id": 2080, "notes": "Dig into Yellow Dragon volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -435982,10 +433725,10 @@ "y": 416 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -436006,7 +433749,7 @@ { "id": 2081, "notes": "Rake up a small sample from Yellow Dragon volcano", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -436014,7 +433757,7 @@ "y": 417 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436049,7 +433792,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436078,11 +433821,11 @@ { "id": 2083, "notes": "You've Already Met Mamma Sadie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "So! You're all rested and happy now, and you'll get a good night's sleep, yes?", @@ -436092,7 +433835,7 @@ "goto_npc_chatpoint": 3, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Oh, yes! Now, you just go there, right over that bridge, to the next little isle. There you'll find all ready for you a nice hammock, the finest quality! You'll rest and feel better, and then you'll come here and have a nice little nosh to freshen up!", "requires_awardid": null, "requires_questid_completed": [], @@ -436106,11 +433849,11 @@ { "id": 2084, "notes": "Unicorn Uniter checks for 100% QP completed award", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Nope. You don't have it quite yet. Keep working. You'll get there!", @@ -436120,7 +433863,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Wonderful! Wow! That is quite an accomplishment!", "requires_awardid": 4, "requires_questid_completed": [], @@ -436134,11 +433877,11 @@ { "id": 2085, "notes": "Give Unicorn Uniter 2 sugar chunks to go to Serenity Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -436167,11 +433910,11 @@ { "id": 2086, "notes": "Agree to bring flowers to Daf for Twig", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436179,7 +433922,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -436200,7 +433943,7 @@ { "id": 2090, "notes": "Find something for Ebenezer", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -436208,7 +433951,7 @@ "y": 133 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436239,11 +433982,11 @@ { "id": 2087, "notes": "Give Daf roses and receive goldfish for Twig", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436276,14 +434019,14 @@ { "id": 2089, "notes": "Agree to help Ebenezer", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -436304,7 +434047,7 @@ { "id": 2094, "notes": "Find The First Clue to the Blue Dragon's Treasure.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -436312,7 +434055,7 @@ "y": 27 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436343,11 +434086,11 @@ { "id": 2093, "notes": "Start the Blue Dragon's Star Quest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Well, it appears that you are not adventurous enough to find my treasure. Come back when you have completed half of your adventures and have the award for it.", @@ -436375,7 +434118,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436404,11 +434147,11 @@ { "id": 2091, "notes": "Give umbrella to Ebenezer [UNTITLED: - Informative Crab for Welcome Isle]", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436441,7 +434184,7 @@ { "id": 2092, "notes": "Find Blue Dragon's Number Zero Clue.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -436449,7 +434192,7 @@ "y": 247 }, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search all over, but find nothing.", @@ -436476,7 +434219,7 @@ { "id": 2095, "notes": "Find the Second Clue to the Blue Dragon's Treasure.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -436484,7 +434227,7 @@ "y": 179 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436515,7 +434258,7 @@ { "id": 2096, "notes": "Find the Third Clue to the Blue Dragon's Treasure", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -436523,7 +434266,7 @@ "y": 424 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436554,7 +434297,7 @@ { "id": 2097, "notes": "Find the Fourth Clue to the Blue Dragon's Treasure", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -436562,7 +434305,7 @@ "y": 424 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436593,7 +434336,7 @@ { "id": 2098, "notes": "Find the Fifth Clue to the Blue Dragon's Treasure", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -436601,7 +434344,7 @@ "y": 179 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436632,7 +434375,7 @@ { "id": 2099, "notes": "Find the Blue Dragon's Treasure!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -436640,7 +434383,7 @@ "y": 220 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436675,11 +434418,11 @@ { "id": 2100, "notes": "Give the Blue Dragon his chest and one of the scraps.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436714,11 +434457,11 @@ { "id": 2101, "notes": "Give the blue dragon paper scraps 2 and 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436752,12 +434495,10 @@ "id": 2102, "notes": "Give the Blue dragon paper scraps 4 and 5, get your reward.", "title": "The Blue Dragon's Treasure", - "requires_questid_npc": [ - 1681 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436789,6 +434530,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 1681, 2099 ], "hide_reply_on_fail": true, @@ -436800,14 +434542,14 @@ { "id": 2103, "notes": "You agree to get Carlotta dinner.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 4600, "items_gained": [], "quest_points": 0, @@ -436828,11 +434570,11 @@ { "id": 2104, "notes": "Carlotta trades 25 scorpions for a diamond ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -436865,11 +434607,11 @@ { "id": 2122, "notes": "You answered a question about the game buttons on Roxie's quiz! ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436898,11 +434640,11 @@ { "id": 2120, "notes": "You answered a question about Bird Isle on Roxie's quiz! ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436931,11 +434673,11 @@ { "id": 2121, "notes": "You answered a question about an artist’s pallet on Roxie's quiz! ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436964,11 +434706,11 @@ { "id": 2105, "notes": "John O'Lantern sends you off on the first of three deliveries.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -436976,7 +434718,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -436997,14 +434739,14 @@ { "id": 2111, "notes": "Accept the quest for Vixen's Lost Calf", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -437025,11 +434767,11 @@ { "id": 2106, "notes": "Zeke Sacker gets his delivery", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437062,11 +434804,11 @@ { "id": 2107, "notes": "Windy Pick gets her delivery.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437099,11 +434841,11 @@ { "id": 2108, "notes": "John gets his supplies and sends you out again.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437143,11 +434885,11 @@ { "id": 2109, "notes": "Flo gets her delivery.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437180,11 +434922,11 @@ { "id": 2110, "notes": "Rose gets her delivery", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437217,7 +434959,7 @@ { "id": 2112, "notes": "Find tracks 1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -437225,7 +434967,7 @@ "y": 53 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search all over, but find nothing.", @@ -437235,7 +434977,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Searching carefully amid the pile of snow and fallen pine needles, you find a spot where a reindeer calf could have bedded down; but not for long. Tracks lead away to the south.", "requires_awardid": null, "requires_questid_completed": [], @@ -437252,7 +434994,7 @@ { "id": 2113, "notes": "Find Tracks 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -437260,7 +435002,7 @@ "y": 61 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search all over, but find nothing.", @@ -437270,7 +435012,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Using your shovel to pry away a frozen piece of windblown sailcloth, you see reindeer calf tracks running off to the west.", "requires_awardid": null, "requires_questid_completed": [], @@ -437287,7 +435029,7 @@ { "id": 2114, "notes": "Find Tracks 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -437295,7 +435037,7 @@ "y": 59 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search all over, but find nothing.", @@ -437305,7 +435047,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Examining the fallen needles carefully, you see that this animal's bed (whatever animal slept here) was also used by a reindeer calf, but briefly. Tracks go away to the northwest.", "requires_awardid": null, "requires_questid_completed": [], @@ -437322,7 +435064,7 @@ { "id": 2115, "notes": "Find Vixen's Calf", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -437330,7 +435072,7 @@ "y": 32 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437365,7 +435107,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437394,11 +435136,11 @@ { "id": 2117, "notes": "Jack send you out one mo' time!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437442,11 +435184,11 @@ { "id": 2118, "notes": "You agree to take Roxie's quiz ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "I'm sorry. While that might be a true statement, it isn't the correct answer. Try again!", @@ -437470,11 +435212,11 @@ { "id": 2119, "notes": "You answer a question about Hare Isle on Roxie's quiz.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437503,11 +435245,11 @@ { "id": 2123, "notes": "You answered a question about the Players button on Roxie's quiz! ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437536,11 +435278,11 @@ { "id": 2124, "notes": "You answered a question about chatting rules on Roxie's quiz! ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437552,7 +435294,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -437573,11 +435315,11 @@ { "id": 2125, "notes": "You answered a question about the New Players Guide on Roxie's quiz! ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437589,7 +435331,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -437610,11 +435352,11 @@ { "id": 2126, "notes": "You answered a question about Moderators on Roxie's quiz! ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437626,7 +435368,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -437647,11 +435389,11 @@ { "id": 2127, "notes": "You answered a question about quests on Roxie's quiz! ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437663,7 +435405,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -437684,11 +435426,11 @@ { "id": 2128, "notes": "You finished Roxie's quiz! [UNTITLED: Roxie's Welcome Isle Quiz]", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437696,7 +435438,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -437717,11 +435459,11 @@ { "id": 2129, "notes": "Albert Junker gets his delivery", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437754,7 +435496,7 @@ { "id": 2130, "notes": "Missing Calf Clue No. 0", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -437762,17 +435504,17 @@ "y": 46 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Looking very carefully, you find what appear to be reindeer calf tracks, heading southwest.", "requires_awardid": null, "requires_questid_completed": [], @@ -437789,11 +435531,11 @@ { "id": 2131, "notes": "Calla Lilly gets her delivery", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437826,11 +435568,11 @@ { "id": 2132, "notes": "Jack gets his supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437867,12 +435609,10 @@ "id": 2133, "notes": "Jack rewards you. ", "title": "John O'Lantern's Multiple Deliveries", - "requires_questid_npc": [ - 2061 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -437880,7 +435620,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 150, @@ -437891,7 +435631,9 @@ "success_npc_chat": "That's a pity, you would have been a valued addition to my little operation here. Please accept this shirt, I made it just for you.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2061 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "BklynFilly", @@ -437901,14 +435643,14 @@ { "id": 2165, "notes": "Fin tells you where to find Sam McGee", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -437929,14 +435671,14 @@ { "id": 2134, "notes": "Accept Mino's Quest ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3500, "items_gained": [], "quest_points": 0, @@ -437957,11 +435699,11 @@ { "id": 2135, "notes": "Get plants Mino ordered", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -437990,14 +435732,14 @@ { "id": 2136, "notes": "Order trellis for Mino", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -438018,11 +435760,11 @@ { "id": 2137, "notes": "Pick-up trellis for Mino", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1500, "items_required": [ { @@ -438055,11 +435797,11 @@ { "id": 2138, "notes": "Pick-up fertilizer for Mino", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438067,7 +435809,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -438088,11 +435830,11 @@ { "id": 2139, "notes": "Give Mino the plants and trellis", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438129,7 +435871,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I need the manure, plants and the trellis to get this part of the sanctuary done.", @@ -438156,14 +435898,14 @@ { "id": 2141, "notes": "Agree to get manure for Mino", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -438184,11 +435926,11 @@ { "id": 2142, "notes": "Accept Mino's Anniversary Gift Part 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438196,7 +435938,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -438217,11 +435959,11 @@ { "id": 2143, "notes": "You get a crate of spoiled fruit.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438229,7 +435971,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -438251,12 +435993,10 @@ "id": 2144, "notes": "Mino checks the list to see if you've gotten everything. ", "title": "Mino's Anniversary Gift Part 2", - "requires_questid_npc": [ - 2140 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438281,7 +436021,9 @@ 2151, 2152 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2140 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Desertmorn", @@ -438291,11 +436033,11 @@ { "id": 2145, "notes": "You get a basket of moss and lichen.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438303,7 +436045,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -438324,13 +436066,11 @@ { "id": 2146, "notes": "You get a small handful of downy feathers.", - "title": "", - "requires_questid_npc": [ - 762 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438338,7 +436078,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -438349,7 +436089,9 @@ "success_npc_chat": "Here you go -- no charge. And have a great day!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 762 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -438359,11 +436101,11 @@ { "id": 2147, "notes": "You get a hank of horsehair", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438371,7 +436113,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -438392,11 +436134,11 @@ { "id": 2148, "notes": "You give Mino the crate of spoiled fruit.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438425,11 +436167,11 @@ { "id": 2149, "notes": "You give Mino the skein of spider's silk.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438458,11 +436200,11 @@ { "id": 2150, "notes": "You give Mino the moss & lichen. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438491,11 +436233,11 @@ { "id": 2151, "notes": "You give Mino the bag of downy feathers.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438524,11 +436266,11 @@ { "id": 2152, "notes": "You give Mino the hank of horse hair.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438557,14 +436299,14 @@ { "id": 2153, "notes": "You agree to get the hummingbirds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 6000, "items_gained": [], "quest_points": 0, @@ -438585,11 +436327,11 @@ { "id": 2154, "notes": "Get the hummingbirds.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 5000, "items_required": [ { @@ -438619,12 +436361,10 @@ "id": 2155, "notes": "Give the hummingbirds to Mino.", "title": "Mino's Anniversary Gift Part 3", - "requires_questid_npc": [ - 2144 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438632,7 +436372,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 50, @@ -438643,7 +436383,9 @@ "success_npc_chat": "(Mino beams with joy as he carefully takes the cage from you.) I am indebted to you. Thank you so much.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2144 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Desertmorn", @@ -438653,14 +436395,14 @@ { "id": 2156, "notes": "Fourfingered Frank asks for your help", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -438681,7 +436423,7 @@ { "id": 2193, "notes": "You Search the rocks and Find the Admiral's sextant", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -438689,7 +436431,7 @@ "y": 358 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438720,14 +436462,14 @@ { "id": 2192, "notes": "Accept quest to find Admiral Leonard's sextant", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -438748,11 +436490,11 @@ { "id": 2157, "notes": "Mortimer gives you a treasure to bury and tells you where to go.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438781,7 +436523,7 @@ { "id": 2158, "notes": "Meet Pearl, the geoduck", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -438789,7 +436531,7 @@ "y": 392 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438820,11 +436562,11 @@ { "id": 2159, "notes": "Pearl won't give the treasure back.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You shout down the hole, but there is no response. ", @@ -438855,10 +436597,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 25, @@ -438879,11 +436621,11 @@ { "id": 2161, "notes": "You agree to deliver invitations for Elvira's Tea Party", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438895,7 +436637,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -438916,11 +436658,11 @@ { "id": 2162, "notes": "You deliver an invitation to Morticia.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438928,7 +436670,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -438949,11 +436691,11 @@ { "id": 2163, "notes": "You delivered an invitation to Carlotta", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -438961,7 +436703,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -438983,12 +436725,10 @@ "id": 2164, "notes": "Elvira gives you the spider's silk for Mino.", "title": "Elvira's Tea Party", - "requires_questid_npc": [ - 2142 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439014,7 +436754,9 @@ 2162, 2163 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2142 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "DesertMorn", @@ -439024,11 +436766,11 @@ { "id": 2166, "notes": "You accept the challenge of getting burley ingredient for Sam Mcgee", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439057,11 +436799,11 @@ { "id": 2167, "notes": "Sam Mcgee accepts 15 little fish from you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439090,11 +436832,11 @@ { "id": 2168, "notes": "Sam Mcgee accepts a bag of flour from you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439123,11 +436865,11 @@ { "id": 2169, "notes": "Sam Mcgee accepts a bottle of tuna oil from you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439156,11 +436898,11 @@ { "id": 2170, "notes": "Sam Mcgee accepts a bag of cat treats from you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439189,11 +436931,11 @@ { "id": 2171, "notes": "Sam McGee accepts 15 worms from you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439222,11 +436964,11 @@ { "id": 2172, "notes": "Sam McGee checks to be sure you gave him everything and takes list", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439261,14 +437003,14 @@ { "id": 2173, "notes": "Beatrice Bibliophile sends you to Pheobe Wares", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -439289,14 +437031,14 @@ { "id": 2174, "notes": "Michaela McGraw-Hill sends you to Simon Goods", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -439317,14 +437059,14 @@ { "id": 2175, "notes": "Rowena Roget sends you to Trixie Traderton.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -439345,14 +437087,14 @@ { "id": 2176, "notes": "Trixie Traderton sends you to Blythe Booty", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -439373,14 +437115,14 @@ { "id": 2177, "notes": "Blythe Booty offers to sell you information", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -439401,11 +437143,11 @@ { "id": 2178, "notes": "Blythe Booty spills the beans.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439434,11 +437176,11 @@ { "id": 2179, "notes": "Shimerin Shimm asks for your help.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439450,7 +437192,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -439471,11 +437213,11 @@ { "id": 2180, "notes": "Sam gives you 15 Barramundi Fish", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439511,7 +437253,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439548,11 +437290,11 @@ { "id": 2182, "notes": "You accept to help Rusty Cage to get some Cat Treats supplies.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Great. You need to speak to Ginger Craft. She will send you with a package. For your trouble, I'll let you have yours for free.", @@ -439576,11 +437318,11 @@ { "id": 2183, "notes": "Ginger Craft gives you a case of cat treats for Rusty Cage", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439588,7 +437330,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -439609,11 +437351,11 @@ { "id": 2184, "notes": "Rusty Cage takes the case of cat treats and gives you in exchange a bag ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439646,14 +437388,14 @@ { "id": 2185, "notes": "You annoy Stinky Breeches Vincent", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -439674,11 +437416,11 @@ { "id": 2186, "notes": "Cara Cook Sells you a bag of flour.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 50, "items_required": [ { @@ -439707,11 +437449,11 @@ { "id": 2187, "notes": "Ernie angler Sells you a bottle of tuna oil", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 50, "items_required": [ { @@ -439740,11 +437482,11 @@ { "id": 2188, "notes": "Fourfingered Frank gets his books ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439779,11 +437521,11 @@ { "id": 2189, "notes": "Frank asks you to bring a gift to Shimm", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439791,7 +437533,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -439812,11 +437554,11 @@ { "id": 2190, "notes": "Shimerin Shimm gets her gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439828,7 +437570,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -439853,7 +437595,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439861,7 +437603,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 300, @@ -439882,11 +437624,11 @@ { "id": 2226, "notes": "Give Mino the manure", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439919,7 +437661,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -439948,14 +437690,14 @@ { "id": 2195, "notes": "Viola wants help with her recipe", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -439976,11 +437718,11 @@ { "id": 2196, "notes": "Viola gets her thimbleberries", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440010,15 +437752,13 @@ "id": 2197, "notes": "Viola rewards you ", "title": "Viola's Recipe", - "requires_questid_npc": [ - 768 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 50, @@ -440029,7 +437769,9 @@ "success_npc_chat": "No, thank you, dearie. I have everything else I need. You've been such a help to me, here, take this and be sure to come back another time and we can have some thimbleberry jam together!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 768 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "BklynFilly", @@ -440039,14 +437781,14 @@ { "id": 2198, "notes": "You agree to help Just Gus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -440067,11 +437809,11 @@ { "id": 2199, "notes": "You get a strawberry pie.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440112,7 +437854,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440149,14 +437891,14 @@ { "id": 2243, "notes": "Santa asks you for supplies.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -440177,14 +437919,14 @@ { "id": 2201, "notes": "You agree to listen to Just Gus' sad story", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -440205,11 +437947,11 @@ { "id": 2228, "notes": "Barrett has the boots", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -440238,11 +437980,11 @@ { "id": 2202, "notes": "You agree to deliver a letter to Gus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440250,7 +437992,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -440271,14 +438013,14 @@ { "id": 2227, "notes": "Agree to get new boots for Smelly Toes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -440299,11 +438041,11 @@ { "id": 2203, "notes": "You deliver a letter to Just Gus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440332,11 +438074,11 @@ { "id": 2204, "notes": "You agree to deliver a letter to Willamena for Gus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440348,7 +438090,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -440369,11 +438111,11 @@ { "id": 2205, "notes": "Accept finding Zoe for Cara Cook.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You can't look for Zoe at the moment.", @@ -440397,11 +438139,11 @@ { "id": 2206, "notes": "You accept to speak to Cara on behalf of Zoe", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You can't talk to Cara Cook right now.", @@ -440425,11 +438167,11 @@ { "id": 2207, "notes": "Cara Cook tells you to let Zoe know that eveything will be alright.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You can't go and speak to Zoe at the moment.", @@ -440453,11 +438195,11 @@ { "id": 2208, "notes": "Zoe agrees to go back to her Aunt Cara Cooks House.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Zoe says she can't go back right now.", @@ -440482,12 +438224,10 @@ "id": 2209, "notes": "Cara Cook Rewards you for finding her niece Zoe", "title": "Cara's Lost Niece", - "requires_questid_npc": [ - 899 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440506,7 +438246,9 @@ "success_npc_chat": "Thank you for helping me find Zoe. I really am grateful. Please accept these things as a token of my appreciation.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 899 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "LinuxDude", @@ -440516,14 +438258,14 @@ { "id": 2210, "notes": "Accept to help Cara cook to get some more truffles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -440544,14 +438286,14 @@ { "id": 2211, "notes": "You accept to help Fritz get 6 more truffles for Cara Cook", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -440572,7 +438314,7 @@ { "id": 2212, "notes": "You rake the first truffle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -440580,7 +438322,7 @@ "y": 181 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440611,7 +438353,7 @@ { "id": 2213, "notes": "You rake the second truffle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -440619,7 +438361,7 @@ "y": 176 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440650,7 +438392,7 @@ { "id": 2214, "notes": "You rake the third truffle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -440658,7 +438400,7 @@ "y": 175 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440689,7 +438431,7 @@ { "id": 2215, "notes": "You rake the fouth truffle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -440697,7 +438439,7 @@ "y": 174 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440728,7 +438470,7 @@ { "id": 2216, "notes": "You rake the fifth truffle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -440736,7 +438478,7 @@ "y": 173 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440767,7 +438509,7 @@ { "id": 2217, "notes": "You rake the sixth truffle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -440775,7 +438517,7 @@ "y": 172 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440806,7 +438548,7 @@ { "id": 2218, "notes": "Find bonus find when looking for truffles.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -440814,7 +438556,7 @@ "y": 175 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440845,11 +438587,11 @@ { "id": 2219, "notes": "Fritz checks that you have six truffles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "It doesn't look like you have six truffles yet.", @@ -440880,11 +438622,11 @@ { "id": 2220, "notes": "Fritz sells you 6 truffles for $3000", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 3000, "items_required": [ { @@ -440914,12 +438656,10 @@ "id": 2221, "notes": "Cara Cook buys the truffles from you for $12000 ", "title": "Truffles for Cara Cook", - "requires_questid_npc": [ - 2209 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -440927,7 +438667,7 @@ "quantity": 12 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 12000, "items_gained": [], "quest_points": 175, @@ -440938,7 +438678,9 @@ "success_npc_chat": "Ah, yes, dearie, at the goin' price that lot is worth $12,000. 'Ere ya go, an' thanks for ye' help.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2209 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "LinuxDude", @@ -440948,11 +438690,11 @@ { "id": 2222, "notes": "Test to see if youve done King Phil's Crown quest and Cara's Truffles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], "fail_npc_chat": "Not at the moment.", @@ -440962,7 +438704,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Ye, I need a delivery done, can ye do it?", "requires_awardid": null, "requires_questid_completed": [ @@ -440979,11 +438721,11 @@ { "id": 2223, "notes": "Accept task of delivering truffles and quail to King Phil.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441012,11 +438754,11 @@ { "id": 2224, "notes": "King Phil accepts the Truffles and Quail from you.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441046,12 +438788,10 @@ "id": 2225, "notes": "Cara Cook rewards you for delivering the Truffles and Quail to King Phil ", "title": "Truffles and Quail for the King", - "requires_questid_npc": [ - 2221 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't appear to have finished the delivery.", @@ -441065,7 +438805,9 @@ "success_npc_chat": "Here ye go, dearie. Thanks for deliverin' that.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2221 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "LinuxDude", @@ -441079,7 +438821,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441116,11 +438858,11 @@ { "id": 2229, "notes": "Karl waterproofs boots", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441149,11 +438891,11 @@ { "id": 2230, "notes": "Get the finished boots", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441186,14 +438928,14 @@ { "id": 2232, "notes": "Agree to help Smelly Toes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -441214,11 +438956,11 @@ { "id": 2233, "notes": "Holli Daysin gives you her poem and asks for your help.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441226,7 +438968,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -441247,11 +438989,11 @@ { "id": 2234, "notes": "The Easter Bunny asks you to pick up supplies for her.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You need to bring back everything!", @@ -441275,11 +439017,11 @@ { "id": 2235, "notes": "Easter Bunny gets her supplies and gives you an egg.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441316,14 +439058,14 @@ { "id": 2236, "notes": "Track Humpty Dumpty (after tarantula story)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -441331,7 +439073,7 @@ "warp_x": null, "warp_y": null, "success_message": ".", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -441344,11 +439086,11 @@ { "id": 2237, "notes": "Get directions from Stinky", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441356,7 +439098,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -441377,7 +439119,7 @@ { "id": 2238, "notes": "Find cookbook on shoreline", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -441385,7 +439127,7 @@ "y": 23 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441401,7 +439143,7 @@ "warp_x": null, "warp_y": null, "success_message": "You found Stinky's family cookbook!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -441417,12 +439159,10 @@ "id": 2239, "notes": "Return cookbook to Stinky Breeches ", "title": "Stinky Breeches' Family Cookbook", - "requires_questid_npc": [ - 3108 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441453,7 +439193,9 @@ "success_npc_chat": "Shiver me timbers! Ye did it. Here be a bit o' glitter fer yer troubles.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3108 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "DesertMorn", @@ -441463,11 +439205,11 @@ { "id": 2240, "notes": "Xiang sends you to talk to the Stonewright.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I get all of my carvings from Lenny. He lives east of here, past the other side of the Dragon Maze. Why don't you go see if he can help you?", @@ -441491,11 +439233,11 @@ { "id": 2241, "notes": "Lenny sends you for supplies.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "What?! I need all of my supplies!", @@ -441519,11 +439261,11 @@ { "id": 2242, "notes": "Lenny gets his supplies and gives you the carving.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441560,11 +439302,11 @@ { "id": 2244, "notes": "Santa gets his logs and gives you a carving.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441603,11 +439345,11 @@ { "id": 2245, "notes": "Saggin' Jowls Willie asks you to fetch supplies.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Ye be missin' something, come back when ye has everything I asked ye to get.", @@ -441631,11 +439373,11 @@ { "id": 2246, "notes": "Salvador gives you Saggin' Jowl Willie's tools and ink.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441643,7 +439385,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -441664,11 +439406,11 @@ { "id": 2247, "notes": "Saggin' Jowls Willie gets his supplies and gives you the scrimshaw piece", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441705,14 +439447,14 @@ { "id": 2248, "notes": "You've annoyed Crow's Nest Carrie (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -441733,14 +439475,14 @@ { "id": 2249, "notes": "You've annoyed Crow's Nest Carrie again.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -441761,14 +439503,14 @@ { "id": 2250, "notes": "Agree to help Crow's Nest Carrie with crickets. See Kirby in Ashton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -441789,11 +439531,11 @@ { "id": 2251, "notes": "You get scorpions for Crow's Nest Carrie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441801,7 +439543,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -441822,14 +439564,14 @@ { "id": 2252, "notes": "tracking ... Crow's Nest Carrie's Lost Foghorn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -441837,7 +439579,7 @@ "warp_x": null, "warp_y": null, "success_message": "You should go tell Captain Solomon that Crow's Nest Carrie's foghorn is missing.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -441850,7 +439592,7 @@ { "id": 2253, "notes": "Find foghorn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -441858,7 +439600,7 @@ "y": 55 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441889,22 +439631,22 @@ { "id": 2254, "notes": "You agree to help Carrie get her foghorrn back", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -441917,14 +439659,14 @@ { "id": 2255, "notes": "Sani asks you for supplies.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -441945,11 +439687,11 @@ { "id": 2256, "notes": "Fitzgerald gives you 3 leaf sumac.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -441978,11 +439720,11 @@ { "id": 2257, "notes": "Ethel gives you Cornmeal for Sani", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442011,11 +439753,11 @@ { "id": 2258, "notes": "You deliver the scorpions to Carrie.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442044,11 +439786,11 @@ { "id": 2259, "notes": "Crow's Nest Carrie rewards you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442077,14 +439819,14 @@ { "id": 3456, "notes": "You've agreed to help Carlotta welcome Senor Cangrejo", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -442105,11 +439847,11 @@ { "id": 2260, "notes": "You carefully release the Pallid bats.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442138,11 +439880,11 @@ { "id": 2261, "notes": "Sani gets his supplies and gives you the sandpainting", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442179,11 +439921,11 @@ { "id": 2262, "notes": "You give Holli the egg.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442212,11 +439954,11 @@ { "id": 2263, "notes": "You give Holli the dragon.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442245,11 +439987,11 @@ { "id": 2264, "notes": "You give Holli the nutcracker.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442278,11 +440020,11 @@ { "id": 2265, "notes": "You give Holli the pirate galleon.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442311,11 +440053,11 @@ { "id": 2266, "notes": "You give Holli the sandpainting", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442348,7 +440090,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442387,22 +440129,22 @@ { "id": 2268, "notes": "Holli Daysin mentions how she wants to explore more (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -442415,11 +440157,11 @@ { "id": 2296, "notes": "Chickletti sells you a Code Book for a dollar.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1, "items_required": [ { @@ -442450,11 +440192,11 @@ { "id": 2269, "notes": "Holli checks your quest level", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "I'm sorry, but you need at least 50% of your quests done. Please come back when you do.", @@ -442464,7 +440206,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Let's see... Yes, you've been adventurous enough... Want to give it a try?", "requires_awardid": 2, "requires_questid_completed": [], @@ -442478,11 +440220,11 @@ { "id": 2270, "notes": "Agree to get Stinky recipe ingredients", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442490,7 +440232,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -442511,11 +440253,11 @@ { "id": 2271, "notes": "Get rice and beans", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442523,7 +440265,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -442544,11 +440286,11 @@ { "id": 2272, "notes": "Give Rika scissors and get Spices for Stinky", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442560,7 +440302,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -442581,11 +440323,11 @@ { "id": 2273, "notes": "Get vegetables", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442593,7 +440335,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -442614,11 +440356,11 @@ { "id": 2274, "notes": "Give Stinky rice and beans", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442651,11 +440393,11 @@ { "id": 2275, "notes": "Give Stinky the spices", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442688,11 +440430,11 @@ { "id": 2276, "notes": "Give Stinky vegetables", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442725,14 +440467,14 @@ { "id": 2277, "notes": "Agree to get Stinky a cooking pot ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -442753,14 +440495,14 @@ { "id": 2278, "notes": "Stinky gives you a taste of his red beans and rice", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -442781,14 +440523,14 @@ { "id": 2309, "notes": "Wu Kung sends you to find his staff", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -442810,12 +440552,10 @@ "id": 2279, "notes": "Give Stinky copper-bottomed pot ", "title": "Stinky Breeches' Red Beans & Rice", - "requires_questid_npc": [ - 2239 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442842,7 +440582,9 @@ "success_npc_chat": "By the powers! It looks just like me dear ole mum's! (Stinky wipes a tear from his eye.)
Here be a fair share of glitter for doing such a fine job.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2239 + ], "hide_reply_on_fail": true, "difficulty": "Advanced", "author": "Desertmorn", @@ -442852,11 +440594,11 @@ { "id": 2280, "notes": "Stinky gives you Reka's bribe", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442885,11 +440627,11 @@ { "id": 2281, "notes": "Stinky checks to make sure you've given him all the ingredients", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442922,11 +440664,11 @@ { "id": 2305, "notes": "Captain Spaldeen takes the code from you (to get it out of your inventory)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442955,11 +440697,11 @@ { "id": 2282, "notes": "Stinky gives you a diamond to cover traveling expenses.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -442967,7 +440709,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -442988,14 +440730,14 @@ { "id": 2283, "notes": "Mrs. Beesdale sends you off to find Chickletti and Binky", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -443016,11 +440758,11 @@ { "id": 2284, "notes": "Koko checks to be sure you in fact do have everything before sending to Patsy.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have everything. Sword blade, sword hilt and shield are what you need. (She spins faster.)", @@ -443030,7 +440772,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You found everything? Patsy will be happy. Koko is happy, and you are Koko's new best friend!", "requires_awardid": null, "requires_questid_completed": [ @@ -443048,14 +440790,14 @@ { "id": 2285, "notes": "Jack sends you to find a kitten.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -443076,11 +440818,11 @@ { "id": 2286, "notes": "Antonio gives you lemonade", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [ { @@ -443109,11 +440851,11 @@ { "id": 2287, "notes": "ZVBXRPL", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -443121,7 +440863,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -443142,14 +440884,14 @@ { "id": 2288, "notes": "Nora Nurture sends you for her orders", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -443170,11 +440912,11 @@ { "id": 2289, "notes": "Ollie gives you the Dog treats", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -443182,7 +440924,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -443203,11 +440945,11 @@ { "id": 2290, "notes": "Kay gives you the bird seed.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -443215,7 +440957,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -443236,11 +440978,11 @@ { "id": 2291, "notes": "Nora gets her orders and you get the kitten", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -443278,12 +441020,10 @@ "id": 2292, "notes": "Hyrokkin gets her new kitten and rewards you. ", "title": "John O'Lantern's Friend", - "requires_questid_npc": [ - 2133 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -443306,7 +441046,9 @@ "success_npc_chat": "He's so cute! Thank you. I'll name him Delling. Oh, and here, please take this for your trouble. It's nothing, really, just some things that washed up after the last pirate ship got swamped. (Is that a grin?)", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2133 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "BklynFilly", @@ -443316,14 +441058,14 @@ { "id": 2841, "notes": "Agree to get scoops for Ginger", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -443344,14 +441086,14 @@ { "id": 2293, "notes": "Agree to help Augie find shelter in exchange for the pot.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -443372,7 +441114,7 @@ { "id": 2294, "notes": "Get palm fronds for Augie.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -443380,7 +441122,7 @@ "y": 69 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -443396,7 +441138,7 @@ "warp_x": null, "warp_y": null, "success_message": "You found a Handful of Palm Fronds for Augie!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -443412,12 +441154,10 @@ "id": 2295, "notes": "Give palm fronds to Augie.", "title": "Augie Needs Shelter", - "requires_questid_npc": [ - 2277 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -443440,7 +441180,9 @@ "success_npc_chat": "These look perfect! Thank you. Here's the pot you wanted. Travel safely.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2277 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Desertmorn", @@ -443450,7 +441192,7 @@ { "id": 2297, "notes": "A E Y C I K O (Correct Cipher)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -443458,7 +441200,7 @@ "y": 224 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -443485,7 +441227,7 @@ { "id": 2298, "notes": "Get to Spaldeen", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -443493,7 +441235,7 @@ "y": 224 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -443520,7 +441262,7 @@ { "id": 2299, "notes": "A B R C A Q X", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -443528,7 +441270,7 @@ "y": 225 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -443555,7 +441297,7 @@ { "id": 2300, "notes": "Wrong Clue # 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -443563,7 +441305,7 @@ "y": 223 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -443590,7 +441332,7 @@ { "id": 2301, "notes": "Wrong Clue No 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -443598,7 +441340,7 @@ "y": 220 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -443625,7 +441367,7 @@ { "id": 2302, "notes": "Wrong Clue No 4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -443633,7 +441375,7 @@ "y": 220 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -443660,7 +441402,7 @@ { "id": 2303, "notes": "Wrong Clue No 5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -443668,7 +441410,7 @@ "y": 221 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -443695,7 +441437,7 @@ { "id": 2304, "notes": "Wrong Clue No 6", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -443703,7 +441445,7 @@ "y": 222 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -443730,11 +441472,11 @@ { "id": 2306, "notes": "Captain Spaldeen takes the Code Book, too, just so he can irritate you some more.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -443763,14 +441505,14 @@ { "id": 2307, "notes": "Captain Spaldeen teleports you out of his jungle hideaway", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -443795,10 +441537,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 20000, "items_gained": [], "quest_points": 250, @@ -443819,7 +441561,7 @@ { "id": 2310, "notes": "You found the staff section!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -443827,7 +441569,7 @@ "y": 307 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -443858,11 +441600,11 @@ { "id": 2311, "notes": "You give Wu Kung his section of staff.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -443891,14 +441633,14 @@ { "id": 2312, "notes": "Accept quest to get oil for Mandy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 800, "items_gained": [], "quest_points": 0, @@ -443919,11 +441661,11 @@ { "id": 2313, "notes": "Cara Cook gives you a bottle of grapeseed oil.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -443956,7 +441698,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -443985,14 +441727,14 @@ { "id": 2315, "notes": "Master Lau sends you for his section of the staff.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -444013,7 +441755,7 @@ { "id": 2316, "notes": "You find Master Lau's staff.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -444021,7 +441763,7 @@ "y": 131 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444052,11 +441794,11 @@ { "id": 2317, "notes": "Master Lau sends you to Master Hoa", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444089,14 +441831,14 @@ { "id": 2318, "notes": "Master Hoa sends you for his section of the staff.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -444117,7 +441859,7 @@ { "id": 2319, "notes": "You found Master Hoa's section.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -444125,7 +441867,7 @@ "y": 139 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444156,11 +441898,11 @@ { "id": 2320, "notes": "Master Hoa sends you to Master Shua.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Bummer, dude, you didn't find my staff. Come back when you have it!", @@ -444184,14 +441926,14 @@ { "id": 2321, "notes": "Agree to help Captain Solomon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -444212,14 +441954,14 @@ { "id": 2322, "notes": "Agree to help Captain Solomon by infiltrating the Skulls", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -444240,14 +441982,14 @@ { "id": 2323, "notes": "Agree to help Captain Jack by getting his crew something to eat.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -444268,14 +442010,14 @@ { "id": 2324, "notes": "Agree to bring Stinky's pot back.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -444296,11 +442038,11 @@ { "id": 2325, "notes": "You get the pot of beans", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444308,7 +442050,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -444329,11 +442071,11 @@ { "id": 2326, "notes": "You deliver the pot of beans and rice", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444362,11 +442104,11 @@ { "id": 2327, "notes": "You get Stinky's pot back", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444395,22 +442137,22 @@ { "id": 2328, "notes": "reuse", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -444424,12 +442166,10 @@ "id": 2329, "notes": "Captain Solomon rewards you. {$1500 travel costs} ", "title": "Captain Solomon's Quest for Quiet", - "requires_questid_npc": [ - 3111 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444437,7 +442177,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 250, @@ -444448,7 +442188,9 @@ "success_npc_chat": "I be much obliged to ye, matey. Here's a bit a glitter for all yer troubles. Now clear out so's I kin git a bit a shut eye.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3111 + ], "hide_reply_on_fail": false, "difficulty": "Advanced", "author": "Desertmorn", @@ -444458,11 +442200,11 @@ { "id": 2330, "notes": "You get the pallid bats to eat the crickets and scorpions", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444470,7 +442212,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -444491,11 +442233,11 @@ { "id": 2331, "notes": "You release the pallid bats to eat the crickets and scorpions", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444524,22 +442266,22 @@ { "id": 2332, "notes": "Crow's Nest Carrie rewards you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -444552,11 +442294,11 @@ { "id": 2333, "notes": "Bonus barramundi fish run #1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -444585,11 +442327,11 @@ { "id": 2334, "notes": "Bonus barramundi fish run #2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -444618,11 +442360,11 @@ { "id": 2335, "notes": "Bonus barramundi fish run #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -444651,11 +442393,11 @@ { "id": 2336, "notes": "Bonus barramundi fish run #4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -444684,11 +442426,11 @@ { "id": 2337, "notes": "Bonus barramundi fish run #5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -444717,11 +442459,11 @@ { "id": 2338, "notes": "Bonus barramundi fish run #6", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -444750,11 +442492,11 @@ { "id": 2339, "notes": "Louis accepts More barramundi fish#1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444787,13 +442529,11 @@ { "id": 2340, "notes": "Louis accepts More barramundi fish #2", - "title": "", - "requires_questid_npc": [ - 2339 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444816,7 +442556,9 @@ "success_npc_chat": "Bewdy mate, thanks for that. Here is something for the fish.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2339 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "LinuxDude", @@ -444826,11 +442568,11 @@ { "id": 2341, "notes": "Louis accepts More barramundi fish #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444863,11 +442605,11 @@ { "id": 2342, "notes": "Louis accepts More barramundi fish #4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444900,11 +442642,11 @@ { "id": 2343, "notes": "Louis accepts More barramundi fish #5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444937,11 +442679,11 @@ { "id": 2344, "notes": "Louis accepts More barramundi fish #6", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -444974,11 +442716,11 @@ { "id": 2391, "notes": "You accept the quest of getting Turkish Delight for King Phil", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Maybe you can't help me at this time.", @@ -445002,11 +442744,11 @@ { "id": 2392, "notes": "Accept Collecting Items for Patricia Plumb ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Looks like you can't help me at the moment.", @@ -445030,14 +442772,14 @@ { "id": 2345, "notes": "Master Shua challenges you to solve 3 puzzles.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -445058,11 +442800,11 @@ { "id": 2346, "notes": "Master Shua gives you his section of the staff.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445070,7 +442812,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -445095,7 +442837,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Uhm... King Lear and the Three Bears?", @@ -445119,11 +442861,11 @@ { "id": 2348, "notes": "Ethel gives you a piece of cake for answering a question that's... well, a piece of cake.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445152,14 +442894,14 @@ { "id": 2371, "notes": "Oddly the Mage wants a Hot Cocoa and a Pudding.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -445180,14 +442922,14 @@ { "id": 2349, "notes": "Master Tang asks for grasshoppers.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -445208,11 +442950,11 @@ { "id": 2350, "notes": "Master Tang gets his grasshoppers.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445241,7 +442983,7 @@ { "id": 2351, "notes": "You found Master Tang's staff section. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -445249,7 +442991,7 @@ "y": 333 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445284,7 +443026,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445321,13 +443063,11 @@ { "id": 2353, "notes": "Wu Kung checks your experience level.", - "title": "", - "requires_questid_npc": [ - 2352 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "I am truly sorry, young one, but you must complete 25% of your quests before you can assist me again.", @@ -445337,11 +443077,13 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Ah, young one, you have been both brave and adventurous. You are ready to assist me once more.", "requires_awardid": 1, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2352 + ], "hide_reply_on_fail": true, "difficulty": null, "author": null, @@ -445351,14 +443093,14 @@ { "id": 2354, "notes": "Goldilocks sends you for Venetian Food Flowers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -445379,11 +443121,11 @@ { "id": 2355, "notes": "Give Goldilocks the flowers and rubies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445416,11 +443158,11 @@ { "id": 2356, "notes": "Wu Kung sends you to Lung Ch'uan.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445428,7 +443170,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -445449,11 +443191,11 @@ { "id": 2357, "notes": "Lung Ch'uan recieves his staff and bestows gifts upon his students", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445486,11 +443228,11 @@ { "id": 2358, "notes": "Master Tang receives Lung Ch'uan's gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445523,11 +443265,11 @@ { "id": 2359, "notes": "Master Shua receives Lung Ch'uan's gift.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445560,11 +443302,11 @@ { "id": 2360, "notes": "Master Hoa receives his gift from Lung Ch'uan.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445597,11 +443339,11 @@ { "id": 2361, "notes": "Master Lau receives his gift from Lung Ch'uan.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445635,12 +443377,10 @@ "id": 2362, "notes": "Wu Kung gets his gift and rewards you. ", "title": "Wu Kung and the Grand Master", - "requires_questid_npc": [ - 2352 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445668,7 +443408,9 @@ 2360, 2361 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2352 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "BklynFilly", @@ -445678,14 +443420,14 @@ { "id": 2363, "notes": "Goldilocks sends you for Red Crystal Shards", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -445706,14 +443448,14 @@ { "id": 2364, "notes": "Goldilocks sends you for Ebony Wood", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -445734,22 +443476,22 @@ { "id": 2365, "notes": "Fletcher Feelbedder tells you to talk to Daria (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -445762,22 +443504,22 @@ { "id": 2366, "notes": "Mathilda Emdee tells you to check the local inns and barns. (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -445790,11 +443532,11 @@ { "id": 2367, "notes": "Give Goldilocks the crystal shards and ebony wood.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445827,14 +443569,14 @@ { "id": 2368, "notes": "Goldilocks wants The New Black", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -445855,14 +443597,14 @@ { "id": 2369, "notes": "Pookie says Oddly has The New Black", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -445870,7 +443612,7 @@ "warp_x": null, "warp_y": null, "success_message": "Pookie may have told you that she had some black fabric and she gave it to a Mage named Oddly, who wanders around near Lornbacoll's cave. But who knows...", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -445883,22 +443625,22 @@ { "id": 2370, "notes": "Start Ethel Barryjam's quiz (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -445911,11 +443653,11 @@ { "id": 2372, "notes": "Oddly gives you his cloak for a pudding and a hot cocoa.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445952,11 +443694,11 @@ { "id": 2373, "notes": "Give Goldilocks Oddly's Cloak", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -445985,11 +443727,11 @@ { "id": 2374, "notes": "Goldilocks sends you for a Silver Lining (this is the last thing, really!)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have what I asked you for, honestly, and look were on a production schedule here!", @@ -446013,11 +443755,11 @@ { "id": 2375, "notes": "Give Goldilocks the Silver Lining", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446047,15 +443789,13 @@ "id": 2376, "notes": "Goldilocks Pays You and You Get Away Unscathed.", "title": "Goldilocks' Interior Design", - "requires_questid_npc": [ - 1658 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 25000, "items_gained": [], "quest_points": 300, @@ -446066,7 +443806,9 @@ "success_npc_chat": "Here you go... Thank you, I KNOW I really made you work for this, but I hope it's worth it.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1658 + ], "hide_reply_on_fail": false, "difficulty": "Advanced", "author": "SpottedRose", @@ -446076,11 +443818,11 @@ { "id": 2377, "notes": "Murray's little list", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446088,7 +443830,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -446109,11 +443851,11 @@ { "id": 2378, "notes": "Amelia gives you the hydrated lime", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446142,14 +443884,14 @@ { "id": 2379, "notes": "Lars sends you for iron ore.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -446170,22 +443912,22 @@ { "id": 2406, "notes": "Either give the necklace back, or not, one chance only! (chained action)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -446198,11 +443940,11 @@ { "id": 2380, "notes": "Lars gets the iron ore and gives you the nails.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446235,14 +443977,14 @@ { "id": 2381, "notes": "Cedric sends you out for logs.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -446263,11 +444005,11 @@ { "id": 2382, "notes": "Cedric gets his logs and payment and he gives you a bundle of fence rails.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -446300,11 +444042,11 @@ { "id": 2383, "notes": "Simon gives you the buckets and brushes.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446316,7 +444058,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -446337,11 +444079,11 @@ { "id": 2384, "notes": "You buy rock salt from Zeke Sacker.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 25, "items_required": [ { @@ -446370,11 +444112,11 @@ { "id": 2385, "notes": "You give Murray the kegs of nails", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446403,11 +444145,11 @@ { "id": 2386, "notes": "You give Murray the buckets and brushes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446440,11 +444182,11 @@ { "id": 2387, "notes": "You give Murray 3 large sacks of Hydrated Lime.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446473,11 +444215,11 @@ { "id": 2388, "notes": "You give Murray 2 large sacks of rock salt.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446506,11 +444248,11 @@ { "id": 2389, "notes": "You give Murray the fence rails.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446543,7 +444285,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446578,11 +444320,11 @@ { "id": 2393, "notes": "Accept task of collecting Flowers from Iris Petal", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Looks like you can't help me at the moment.", @@ -446606,11 +444348,11 @@ { "id": 2394, "notes": "Give Wild Flowers and daisies to Iris Pettel and accept rose hips.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446647,11 +444389,11 @@ { "id": 2395, "notes": "Give Rose Hips & Sugar chunks to Patricia Plumb", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446684,11 +444426,11 @@ { "id": 2396, "notes": "Accept Turkish Delight From Patricia Plumb", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446718,12 +444460,10 @@ "id": 2397, "notes": "King Phil accepts Turkish Delight from you and rewards you", "title": "Turkish Delight for King Phil", - "requires_questid_npc": [ - 899 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446746,7 +444486,9 @@ "success_npc_chat": "Thank you, my royal subject. You again delighted me with your service. Here's a reward. A genuine bunny companion, for all your efforts. ", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 899 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "LinuxDude", @@ -446756,14 +444498,14 @@ { "id": 2398, "notes": "Carly Cobbler sends you for her linens.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -446784,11 +444526,11 @@ { "id": 2399, "notes": "You give Barb the Moonbeams & Silver Linings.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446821,11 +444563,11 @@ { "id": 2400, "notes": "Barb gets her cotton and gives you the linens.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446858,11 +444600,11 @@ { "id": 2401, "notes": "You give Carly her linens and she sends you to Floria for pillows.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446891,11 +444633,11 @@ { "id": 2402, "notes": "You give Floria the feathers and she sends you for eider down and cotton damask.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446928,14 +444670,14 @@ { "id": 2443, "notes": "Agree to go see Yepa for Carly Cobbler", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -446956,7 +444698,7 @@ { "id": 2403, "notes": "Dig up a carrot", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -446964,7 +444706,7 @@ "y": 331 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -446993,14 +444735,14 @@ { "id": 2404, "notes": "Ricky lets you keep the carrot", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -447021,7 +444763,7 @@ { "id": 2405, "notes": "Rake up topaz necklace", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -447029,7 +444771,7 @@ "y": 331 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447060,11 +444802,11 @@ { "id": 2407, "notes": "You give the necklace back, hope is restored to the universe!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447097,14 +444839,14 @@ { "id": 2408, "notes": "You don't give the necklace back, the dark side of the force prevails.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -447125,14 +444867,14 @@ { "id": 2409, "notes": "Liza doesn't need help right now.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -447153,11 +444895,11 @@ { "id": 2410, "notes": "Rainey gives you the eider down.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447165,7 +444907,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -447186,11 +444928,11 @@ { "id": 2411, "notes": "Trixie gives you the Damask", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447198,7 +444940,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -447219,11 +444961,11 @@ { "id": 2412, "notes": "Floria gets her materials and gives you the pillows.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447260,11 +445002,11 @@ { "id": 2413, "notes": "Carly gets her pillows and sends you out, one mo' time!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447293,14 +445035,14 @@ { "id": 2414, "notes": "Yepa asks you to pick up craft supplies.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -447321,11 +445063,11 @@ { "id": 2415, "notes": "Albert Junker gives you leather strappings", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447333,7 +445075,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -447354,7 +445096,7 @@ { "id": 2416, "notes": "You found a twig!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -447362,7 +445104,7 @@ "y": 141 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447393,7 +445135,7 @@ { "id": 2417, "notes": "You found a twig!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -447401,7 +445143,7 @@ "y": 140 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447432,7 +445174,7 @@ { "id": 2418, "notes": "You found a twig!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -447440,7 +445182,7 @@ "y": 141 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447471,7 +445213,7 @@ { "id": 2419, "notes": "You found a twig!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -447479,7 +445221,7 @@ "y": 144 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447510,7 +445252,7 @@ { "id": 2420, "notes": "You found a twig!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -447518,7 +445260,7 @@ "y": 142 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447549,7 +445291,7 @@ { "id": 2421, "notes": "You found a twig!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -447557,7 +445299,7 @@ "y": 143 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447588,11 +445330,11 @@ { "id": 2422, "notes": "You bring Yepa her supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447637,7 +445379,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447670,11 +445412,11 @@ { "id": 2425, "notes": "Captain Spaldeen takes Blinky's note", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447703,11 +445445,11 @@ { "id": 2424, "notes": "Blinky gives you a map that looks like a goofy face.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -447715,7 +445457,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -447736,7 +445478,7 @@ { "id": 2426, "notes": "Digging at ABRCAQX sends you back to Tropicton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -447744,7 +445486,7 @@ "y": 225 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -447771,7 +445513,7 @@ { "id": 2427, "notes": "Digging at ZVUKCLL sends you back to Tropicton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -447779,7 +445521,7 @@ "y": 223 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -447806,7 +445548,7 @@ { "id": 2428, "notes": "Digging at SIMWVRP sends you back to Tropicton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -447814,7 +445556,7 @@ "y": 220 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -447841,7 +445583,7 @@ { "id": 2429, "notes": "Digging at YUAWSQK sends you back to Tropicton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -447849,7 +445591,7 @@ "y": 220 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -447876,7 +445618,7 @@ { "id": 2430, "notes": "Digging at AWCYSQM sends you back to Tropicton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -447884,7 +445626,7 @@ "y": 221 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -447911,7 +445653,7 @@ { "id": 2431, "notes": "Digging at LSMFTHA sends you back to Tropicton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -447919,7 +445661,7 @@ "y": 222 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -447946,14 +445688,14 @@ { "id": 2432, "notes": "Agree to find out about Fennel Seeds for Peru", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -447974,14 +445716,14 @@ { "id": 2433, "notes": "Get info about fennel from Tuque", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448002,14 +445744,14 @@ { "id": 2434, "notes": "Peru sends you after fennel", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448034,7 +445776,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -448063,7 +445805,7 @@ { "id": 2436, "notes": "Fennel 1 dig location", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -448071,7 +445813,7 @@ "y": 329 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -448102,7 +445844,7 @@ { "id": 2437, "notes": "Fennel 2 dig location", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -448110,7 +445852,7 @@ "y": 329 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -448141,7 +445883,7 @@ { "id": 2438, "notes": "Fennel 3 dig location", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -448149,7 +445891,7 @@ "y": 330 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -448180,7 +445922,7 @@ { "id": 2439, "notes": "Fennel 4 dig location", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -448188,7 +445930,7 @@ "y": 331 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -448219,7 +445961,7 @@ { "id": 2440, "notes": "Fennel 5 dig location", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -448227,7 +445969,7 @@ "y": 331 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -448258,7 +446000,7 @@ { "id": 2441, "notes": "Fennel 6 dig location", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -448266,7 +446008,7 @@ "y": 332 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -448297,7 +446039,7 @@ { "id": 2442, "notes": "Fennel 7 dig location", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -448305,7 +446047,7 @@ "y": 332 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -448336,7 +446078,7 @@ { "id": 2444, "notes": "Use Tool to find Higgins the first time", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -448344,7 +446086,7 @@ "y": 309 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search high and low all around, but find nothing interesting.", @@ -448370,14 +446112,14 @@ { "id": 2445, "notes": "Accept Selena's vague quest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448399,16 +446141,14 @@ "id": 2447, "notes": "Dig for your reward! ", "title": "Selena's Ethereal Summons", - "requires_questid_npc": [ - 75 - ], + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 584, "y": 310 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -448423,6 +446163,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 75, 2452 ], "hide_reply_on_fail": false, @@ -448434,14 +446175,14 @@ { "id": 2446, "notes": "Selena finishes her reading", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448462,14 +446203,14 @@ { "id": 2448, "notes": "Higgins requests Bath Salts and Cider", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448490,11 +446231,11 @@ { "id": 2449, "notes": "Ted Sells a large package of bath salts ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 250, "items_required": [], "fail_npc_chat": "I'm afraid you don't have enough for the bath salts. I'll be happy to hold them for you, though.", @@ -448518,7 +446259,7 @@ { "id": 2450, "notes": "Find Bath Salts", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -448526,7 +446267,7 @@ "y": 287 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -448557,11 +446298,11 @@ { "id": 2451, "notes": "Abigail gives you apple cider mix", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -448569,7 +446310,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448590,11 +446331,11 @@ { "id": 2452, "notes": "Give Higgins his Apple Cider and Bath Salts", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -448627,11 +446368,11 @@ { "id": 2453, "notes": "Selena gives you a crystal statue because you're just too cool", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -448639,7 +446380,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448660,16 +446401,14 @@ { "id": 2454, "notes": "Call Adolphus correctly", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448690,16 +446429,14 @@ { "id": 2455, "notes": "Call Gustavus correctly", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448720,7 +446457,7 @@ { "id": 2457, "notes": "Use the Escape from Adolphus' Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -448728,10 +446465,10 @@ "y": 348 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448752,16 +446489,14 @@ { "id": 2456, "notes": "Call Mercurius correctly", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448782,7 +446517,7 @@ { "id": 2458, "notes": "Use the Escape from Gustavus' Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -448790,10 +446525,10 @@ "y": 343 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448814,7 +446549,7 @@ { "id": 2459, "notes": "Use the Escape from Mercurius' Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -448822,10 +446557,10 @@ "y": 341 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448847,12 +446582,10 @@ "id": 2460, "notes": "Check for all presents given", "title": "Big Blue's Fishy Friends", - "requires_questid_npc": [ - 1905 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -448879,7 +446612,9 @@ 2471, 2472 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1905 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Vetiver", @@ -448889,11 +446624,11 @@ { "id": 2461, "notes": "After Quest, Big or Little Blue sends you to one island in exchange for a diamond", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -448922,14 +446657,14 @@ { "id": 2462, "notes": "Big or Little Blue sends you to Gustavus' Unknown Isle (middle)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448950,14 +446685,14 @@ { "id": 2463, "notes": "Big or Little Blue sends you to Adolphus' Unknown Isle (west)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -448978,14 +446713,14 @@ { "id": 2464, "notes": "Big or Little Blue sends you to Mercurius' Unknown Isle (east)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449006,14 +446741,14 @@ { "id": 2465, "notes": "Big Blue sends you to the store for produce", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449034,14 +446769,14 @@ { "id": 2466, "notes": "Big Blue sends you out to look for three gems", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449062,11 +446797,11 @@ { "id": 2467, "notes": "Get Corn and Pear from Zeke", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 50, "items_required": [ { @@ -449099,11 +446834,11 @@ { "id": 2468, "notes": "Get Beautiful Grapes from Zeke", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 25, "items_required": [ { @@ -449132,14 +446867,14 @@ { "id": 2469, "notes": "Learn the Three Wise Fish names", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449160,11 +446895,11 @@ { "id": 2470, "notes": "Give Adolphus Corn and Topaz", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -449197,11 +446932,11 @@ { "id": 2471, "notes": "Give Gustavus Pear and Emerald", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -449234,11 +446969,11 @@ { "id": 2472, "notes": "Give Mercurius Grapes and Amethyst", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -449271,14 +447006,14 @@ { "id": 2473, "notes": "Gustavus Sends you back to big or little blue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449299,14 +447034,14 @@ { "id": 2474, "notes": "Adolphus sends you sort of the right place", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449327,14 +447062,14 @@ { "id": 2475, "notes": "Gustavus' new Wise Fish pitch ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449355,14 +447090,14 @@ { "id": 2476, "notes": "Big Blue accepts summons from Gustavus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449383,16 +447118,14 @@ { "id": 2477, "notes": "Call Vesuvius correctly", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449413,7 +447146,7 @@ { "id": 2478, "notes": "Use the Escape from Vesuvius' Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -449421,10 +447154,10 @@ "y": 247 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449445,14 +447178,14 @@ { "id": 2479, "notes": "Little Blue sends you to Vesuvius' Unknown Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449473,14 +447206,14 @@ { "id": 2480, "notes": "Vesuvius sends you back to Little Blue.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449501,14 +447234,14 @@ { "id": 2481, "notes": "Mercurius sends you sort of the right place", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449529,11 +447262,11 @@ { "id": 2489, "notes": "Liza Gives money, bucket, asks you to talk to Henry", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -449541,7 +447274,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -449562,14 +447295,14 @@ { "id": 2482, "notes": "Little Blue puts you back on land", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449590,14 +447323,14 @@ { "id": 2483, "notes": "Dotti says she heard a scary noise.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449618,14 +447351,14 @@ { "id": 2484, "notes": "Find the guinea hen", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449646,14 +447379,14 @@ { "id": 2485, "notes": "Guinea asks for 11 acorns", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449674,11 +447407,11 @@ { "id": 2486, "notes": "Give Guinea Hen 11 acorns", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -449715,7 +447448,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -449727,7 +447460,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 25, @@ -449748,14 +447481,14 @@ { "id": 2488, "notes": "Big Troll helps you go see the fish, because you asked nicely.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449784,7 +447517,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -449792,7 +447525,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 13000, "items_gained": [], "quest_points": 250, @@ -449813,14 +447546,14 @@ { "id": 2491, "notes": "Henry tells you to not get a modern looking repair", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449841,11 +447574,11 @@ { "id": 2492, "notes": "Krista sends you out for lac", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -449853,7 +447586,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449874,11 +447607,11 @@ { "id": 2493, "notes": "Flicka gives you lac", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -449886,7 +447619,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449907,11 +447640,11 @@ { "id": 2494, "notes": "Krista takes Lac", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -449919,7 +447652,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449940,11 +447673,11 @@ { "id": 2495, "notes": "Krista gives you the marked wood", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -449952,7 +447685,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -449973,11 +447706,11 @@ { "id": 2496, "notes": "Cedric takes length of cedar, gives axe", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -449989,7 +447722,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -450010,14 +447743,14 @@ { "id": 2497, "notes": "Ryland asks for a bucket of water", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -450038,11 +447771,11 @@ { "id": 2498, "notes": "Give Ryland Pail of Water", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450071,14 +447804,14 @@ { "id": 2499, "notes": "Ryland gives you sharpened axe", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -450099,11 +447832,11 @@ { "id": 2500, "notes": "Cedric takes ol' Betsy, gives rough hewn cedar plug", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450115,7 +447848,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -450136,11 +447869,11 @@ { "id": 2501, "notes": "Give Cedar Plug to Krista", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450148,7 +447881,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -450169,14 +447902,14 @@ { "id": 2502, "notes": "Pester Krista for the Bucket", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -450197,14 +447930,14 @@ { "id": 2503, "notes": "Pester Krista for the Bucket 2 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -450225,11 +447958,11 @@ { "id": 2504, "notes": "Finally get the bucket", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -450258,14 +447991,14 @@ { "id": 2505, "notes": "Henry takes pity on you and gives you more travel money", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -450286,14 +448019,14 @@ { "id": 2506, "notes": "You agree to deliver the first pair of Jade's Gifts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 500, "items_gained": [], "quest_points": 0, @@ -450301,7 +448034,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have agreed to bring Birthstone Necklaces to Nadine and Krista. You were given $500.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -450314,14 +448047,14 @@ { "id": 2515, "notes": "Yellow Dragon Asks for 7 Ferns - this action fixes the yellow dragon's CP0/CP11 problem", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -450342,11 +448075,11 @@ { "id": 2507, "notes": "You deliver Jade's gift to Krista.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450375,11 +448108,11 @@ { "id": 2508, "notes": "You deliver Jade's gift to Nadine.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450408,11 +448141,11 @@ { "id": 2509, "notes": "Jade gives you money for the second pair of gifts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Are you sure you delivered both? Please double check.", @@ -450438,11 +448171,11 @@ { "id": 2510, "notes": "You deliver Jade's gift to Ethel.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450471,11 +448204,11 @@ { "id": 2511, "notes": "You deliver Jade's gift to Viola.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450512,7 +448245,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450543,22 +448276,22 @@ { "id": 2513, "notes": "Tracks first pair of deliveries for Jade's Gifts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [ 2507, @@ -450574,22 +448307,22 @@ { "id": 2514, "notes": "Tracks second pair of deliveries for Jade's Gifts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [ 2510, @@ -450606,12 +448339,10 @@ "id": 2516, "notes": "Give Yellow Dragon 7 Ferns", "title": "Yellow Dragon's Greenery", - "requires_questid_npc": [ - 1681 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450634,7 +448365,9 @@ "success_npc_chat": "Seven ferns! I'll plant these right now! Here - take a few of these things for your trouble. I have ever so many!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1681 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "Vetiver", @@ -450645,12 +448378,10 @@ "id": 2530, "notes": "Give 15 Huckleberries &Thimbleberries to Minnie ", "title": "Minnie's Blue Ribbon Berry Pie", - "requires_questid_npc": [ - 1624 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450677,7 +448408,9 @@ "success_npc_chat": "Oh, goodness, thank you! I cannot wait to see what the judges think of my berry pie this year at the fair. Wish me luck!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1624 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "Nuova", @@ -450687,14 +448420,14 @@ { "id": 2517, "notes": "Yellow Dragon sends you to Dr. Fernlove", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -450715,11 +448448,11 @@ { "id": 2518, "notes": "Dr. Fernlove gives you 7 Acclimated Ferns", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450727,7 +448460,7 @@ "quantity": 7 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -450748,14 +448481,14 @@ { "id": 2519, "notes": "Yellow Dragons asks you to plant the 7 ferns", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -450776,7 +448509,7 @@ { "id": 2520, "notes": "Plant Fern 1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -450784,7 +448517,7 @@ "y": 413 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450816,7 +448549,7 @@ { "id": 2521, "notes": "Plant Fern 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -450824,7 +448557,7 @@ "y": 412 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450856,7 +448589,7 @@ { "id": 2522, "notes": "Plant Fern 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -450864,7 +448597,7 @@ "y": 411 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450896,7 +448629,7 @@ { "id": 2523, "notes": "Plant Fern 4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -450904,7 +448637,7 @@ "y": 411 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450936,7 +448669,7 @@ { "id": 2524, "notes": "Plant Fern 5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -450944,7 +448677,7 @@ "y": 411 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -450976,7 +448709,7 @@ { "id": 2525, "notes": "Plant Fern 6", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -450984,7 +448717,7 @@ "y": 412 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -451016,7 +448749,7 @@ { "id": 2526, "notes": "Plant Fern 7", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -451024,7 +448757,7 @@ "y": 413 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -451056,7 +448789,7 @@ { "id": 2527, "notes": "Dig in front of Yellow Dragon's door - whoops!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -451064,7 +448797,7 @@ "y": 413 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -451092,12 +448825,10 @@ "id": 2528, "notes": "Yellow dragon rewards you. ", "title": "Yellow Dragon's Better Greenery", - "requires_questid_npc": [ - 2516 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -451128,7 +448859,9 @@ 2525, 2526 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2516 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "Vetiver", @@ -451138,14 +448871,14 @@ { "id": 2529, "notes": "Agree to look for gumdrop button", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -451166,14 +448899,14 @@ { "id": 2531, "notes": "Agreeing to get 30 berries", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -451194,14 +448927,14 @@ { "id": 2532, "notes": "Agree to get Jack a new Candlestick. (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -451222,11 +448955,11 @@ { "id": 2533, "notes": "Give Sandy Flint 20 Ores to make the candlestick.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -451263,7 +448996,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -451292,17 +449025,15 @@ { "id": 2535, "notes": "Finding the gumdrop button", - "title": "", - "requires_questid_npc": [ - 2529 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", "x": 41, "y": 416 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -451322,6 +449053,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 2529, 2529 ], "hide_reply_on_fail": false, @@ -451337,7 +449069,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -451370,14 +449102,14 @@ { "id": 2539, "notes": "Viola tells you where her nephews are. (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -451398,14 +449130,14 @@ { "id": 2537, "notes": "Agree to find Waldo's Missing ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -451426,7 +449158,7 @@ { "id": 2538, "notes": "Use tool to find Gingerbread Man", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -451434,7 +449166,7 @@ "y": 414 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -451458,14 +449190,14 @@ { "id": 2540, "notes": "Zeke tells you to talk to Karl (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -451486,22 +449218,22 @@ { "id": 2549, "notes": "Sandy Flint needs 20 copper ore for candlestick (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -451514,14 +449246,14 @@ { "id": 2541, "notes": "Karl tells you to talk to Zeke.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -451542,14 +449274,14 @@ { "id": 2542, "notes": "Karl tells you Auntie Viola has the bukkit... bucket.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -451570,11 +449302,11 @@ { "id": 2543, "notes": "Viola actually does have Waldo's bucket after all, and gives it to you.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -451582,7 +449314,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -451607,7 +449339,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -451640,11 +449372,11 @@ { "id": 2545, "notes": "Antonio does a magic trick for you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -451681,11 +449413,11 @@ { "id": 2546, "notes": "Antonio does another magic trick for you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -451722,11 +449454,11 @@ { "id": 2547, "notes": "Antonio does his grand trick for you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -451763,11 +449495,11 @@ { "id": 2548, "notes": "Antonio's revenge.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -451804,7 +449536,7 @@ { "id": 2550, "notes": "Blue Dragon's Bird Isle Stump Clue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -451812,7 +449544,7 @@ "y": 177 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -451839,7 +449571,7 @@ { "id": 2551, "notes": "Blue Dragon's Snow Isle Stump Clue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -451847,7 +449579,7 @@ "y": 29 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -451874,7 +449606,7 @@ { "id": 2552, "notes": "Blue Dragon's Desert Isle Stump Clue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -451882,7 +449614,7 @@ "y": 433 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -451909,7 +449641,7 @@ { "id": 2553, "notes": "Blue Dragon's Rider Maze Clue #1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -451917,7 +449649,7 @@ "y": 177 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -451944,7 +449676,7 @@ { "id": 2554, "notes": "Blue Dragon's Rider Maze Clue #2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -451952,7 +449684,7 @@ "y": 175 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -451979,7 +449711,7 @@ { "id": 2555, "notes": "Blue Dragon's Rider Maze Clue #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -451987,7 +449719,7 @@ "y": 173 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -452014,7 +449746,7 @@ { "id": 2556, "notes": "Blue Dragon's Rider Maze Clue #4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -452022,7 +449754,7 @@ "y": 170 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -452049,7 +449781,7 @@ { "id": 2557, "notes": "Blue Dragon's Rider Maze Clue #6", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -452057,7 +449789,7 @@ "y": 167 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -452084,7 +449816,7 @@ { "id": 2558, "notes": "Blue Dragon's Rider Maze Clue #5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -452092,7 +449824,7 @@ "y": 173 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -452119,7 +449851,7 @@ { "id": 2559, "notes": "Blue Dragon's Rider Maze Clue #7", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -452127,7 +449859,7 @@ "y": 162 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -452154,7 +449886,7 @@ { "id": 2560, "notes": "Blue Dragon's Rider Maze Clue #8", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -452162,7 +449894,7 @@ "y": 151 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -452189,7 +449921,7 @@ { "id": 2561, "notes": "Blue Dragon's Rider Maze Too Far Clue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -452197,7 +449929,7 @@ "y": 180 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -452224,7 +449956,7 @@ { "id": 2562, "notes": "Blue Dragon's Rider Maze Too Far Clue #2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -452232,7 +449964,7 @@ "y": 180 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -452259,7 +449991,7 @@ { "id": 2563, "notes": "Blue Dragon's Sand Isle Clue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -452267,7 +449999,7 @@ "y": 428 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -452294,7 +450026,7 @@ { "id": 2564, "notes": "Blue Dragon's Jungle Isle Stump Clue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -452302,7 +450034,7 @@ "y": 170 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -452329,14 +450061,14 @@ { "id": 2565, "notes": "Martha Calls Miah", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -452357,14 +450089,14 @@ { "id": 2566, "notes": "Miah asks you to find Minty", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -452385,14 +450117,14 @@ { "id": 2567, "notes": "Minty will follow you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -452417,7 +450149,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -452425,7 +450157,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 75, @@ -452446,14 +450178,14 @@ { "id": 2569, "notes": "Fergus sends you to replace his magic", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -452474,14 +450206,14 @@ { "id": 2570, "notes": "Ferrel sends you for supplies.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -452502,11 +450234,11 @@ { "id": 2571, "notes": "Ferrel checks your level", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "It doesn't look like you are adventurous enough to get to The Cloud Isles yet. I know of someone else that might be able to give you some if you are interested in knowing.", @@ -452530,11 +450262,11 @@ { "id": 2572, "notes": "Mrs. Claus shares her Pixie Dust", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -452542,7 +450274,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -452563,11 +450295,11 @@ { "id": 2573, "notes": "Ferrel gets his supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -452600,11 +450332,11 @@ { "id": 2574, "notes": "Ferrel gives you the new pot.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -452612,7 +450344,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -452633,11 +450365,11 @@ { "id": 2575, "notes": "Fergus gets his new pot.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -452670,7 +450402,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -452678,7 +450410,7 @@ "quantity": 25 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 75, @@ -452699,11 +450431,11 @@ { "id": 2577, "notes": "You agree to get Melanie some food.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Maravilloso! Bring them to her when you have them.", @@ -452727,14 +450459,14 @@ { "id": 2579, "notes": "You agree to get Melanie a pet mouse.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -452755,14 +450487,14 @@ { "id": 2581, "notes": "You agree to get Melanie a teddy bear.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -452783,11 +450515,11 @@ { "id": 2580, "notes": "You give Melanie a mouse.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -452816,11 +450548,11 @@ { "id": 2578, "notes": "You give Melanie lizards for lunch..", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -452849,11 +450581,11 @@ { "id": 2582, "notes": "You give Melanie a teddy bear.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -452882,11 +450614,11 @@ { "id": 2583, "notes": "You get Melanie a teddy bear.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 200, "items_required": [ { @@ -452923,11 +450655,11 @@ { "id": 2584, "notes": "You agree to get the materials for a teddy bear.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "0", @@ -452951,11 +450683,11 @@ { "id": 2585, "notes": "Antonio rewards you for feeding Melanie.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -452986,11 +450718,11 @@ { "id": 2586, "notes": "Antonio rewards you for getting a mouse for Melanie.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -452998,7 +450730,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -453021,11 +450753,11 @@ { "id": 2587, "notes": "Antonio rewards you for getting a teddy bear for Melanie.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453033,7 +450765,7 @@ "quantity": 8 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -453056,11 +450788,11 @@ { "id": 2588, "notes": "tracking re: intro to melanie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Si! That is Melanie, my Gryphon. She is a sweet thing. Do you want to pet her?", @@ -453070,7 +450802,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Si! That is Melanie, my Gryphon. She is a sweet thing. Do you want to pet her?", "requires_awardid": null, "requires_questid_completed": [], @@ -453084,11 +450816,11 @@ { "id": 2589, "notes": "tracking re: Antonio's talented hands", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Si! Si! My hands are very, very talented. For instance, if you bring me three cloths and ten bits of cotton, I will make you a thing to cuddle. I can do this trick but once.", @@ -453098,7 +450830,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Si! Si! My hands are very, very talented. For instance, if you bring me three cloths and ten bits of cotton, I will make you a thing to cuddle. I can do this trick but once.", "requires_awardid": null, "requires_questid_completed": [], @@ -453116,7 +450848,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453153,14 +450885,14 @@ { "id": 2591, "notes": "Agree to get 5 peppermints", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -453181,14 +450913,14 @@ { "id": 2592, "notes": "Agree to take 5 peppermints to Elliott", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -453209,11 +450941,11 @@ { "id": 2593, "notes": "Give Elliott 5 Peppermints", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453253,7 +450985,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453282,11 +451014,11 @@ { "id": 2595, "notes": "Agree to help Monkey Thieves Guild", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "5 bananas each, but first go see Haku in Hotton's Bank. Look closely for him. eek eek ooo!", @@ -453310,7 +451042,7 @@ { "id": 2596, "notes": "Use tool to find Haku monkey #1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -453318,7 +451050,7 @@ "y": 418 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -453344,11 +451076,11 @@ { "id": 2597, "notes": "Give bananas to Haku monkey #1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453377,11 +451109,11 @@ { "id": 2598, "notes": "Give bananas to Kuna, monkey #2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453410,21 +451142,21 @@ { "id": 2599, "notes": "tracking re finding Kuna, monkey #2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Kuna is found at the Appleton Race Track!", "requires_awardid": null, "requires_questid_completed": [], @@ -453438,11 +451170,11 @@ { "id": 2637, "notes": "Pony Express Completed Delivery #11 Yepa/Santon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453450,7 +451182,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 0, @@ -453471,21 +451203,21 @@ { "id": 2600, "notes": "tracking re: finding Unama, monkey #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Unama is found in Wington's Blacksmith!", "requires_awardid": null, "requires_questid_completed": [], @@ -453499,11 +451231,11 @@ { "id": 2601, "notes": "Give bananas to Unama, monkey #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453532,7 +451264,7 @@ { "id": 2602, "notes": "Use tool to find Akun, monkey #4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -453540,7 +451272,7 @@ "y": 28 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search high and low all around, but find nothing interesting.", @@ -453566,11 +451298,11 @@ { "id": 2603, "notes": "Give bananas to Akun, monkey #4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453599,14 +451331,14 @@ { "id": 2604, "notes": "Matata tells you where to find last monkey", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -453627,7 +451359,7 @@ { "id": 2605, "notes": "Use tool to find Tahaku, monkey #5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -453635,7 +451367,7 @@ "y": 168 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search high and low all around, but find nothing interesting.", @@ -453662,12 +451394,10 @@ "id": 2606, "notes": "Give 5 bananas to Tahaku and completed quest ", "title": "Monkey Thieves Guild", - "requires_questid_npc": [ - 1453 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453690,7 +451420,9 @@ "success_npc_chat": "(Tahaku grabs his bananas and drops the bag of wishing coins!)", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1453 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Nuova", @@ -453700,11 +451432,11 @@ { "id": 2636, "notes": "Pony Express Agree to delivery #11", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453733,11 +451465,11 @@ { "id": 2607, "notes": "Pony Express Agree to delivery #1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453766,11 +451498,11 @@ { "id": 2608, "notes": "Pony Express Completed Delivery #1 Jasper/Earton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453778,7 +451510,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -453799,11 +451531,11 @@ { "id": 2609, "notes": "Pony Express Agree to delivery #2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453832,11 +451564,11 @@ { "id": 2610, "notes": "Pony Express Completed Delivery #2 Max Attaire/Treeton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453844,7 +451576,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -453865,11 +451597,11 @@ { "id": 2611, "notes": "Pony Express Agree to delivery #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453898,11 +451630,11 @@ { "id": 2612, "notes": "Pony Express Completed Delivery #3 George Napper/Appleton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453910,7 +451642,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3500, "items_gained": [], "quest_points": 0, @@ -453931,11 +451663,11 @@ { "id": 2613, "notes": "Pony Express Agree to delivery #4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453964,11 +451696,11 @@ { "id": 2614, "notes": "Pony Express Completed Delivery #4 Mandy/Tail", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -453976,7 +451708,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3500, "items_gained": [], "quest_points": 0, @@ -453997,11 +451729,11 @@ { "id": 2615, "notes": "Pony Express Agree to delivery #5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454030,11 +451762,11 @@ { "id": 2616, "notes": "Pony Express Completed Delivery #5 Fin/Dolphin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454042,7 +451774,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -454063,11 +451795,11 @@ { "id": 2617, "notes": "Get the quest from the Magenta Dragon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I didn't really think you were up to it.", @@ -454078,7 +451810,7 @@ "warp_x": null, "warp_y": null, "success_message": "The Magenta Dragon has asked you to find the egg from which he hatched and return it to him whole.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -454091,7 +451823,7 @@ { "id": 2618, "notes": "Find clues outside the Magenta Dragon's cave", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -454099,7 +451831,7 @@ "y": 395 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -454126,14 +451858,14 @@ { "id": 2619, "notes": "Penfold suggests you make a plaster cast of the tracks you found.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -454154,11 +451886,11 @@ { "id": 2620, "notes": "Get Plaster and Water from Patrick in Ashton.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 200, "items_required": [ { @@ -454191,7 +451923,7 @@ { "id": 2621, "notes": "Make a plaster cast of the tracks outside the Magenta Dragon's cave.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -454199,7 +451931,7 @@ "y": 395 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454238,11 +451970,11 @@ { "id": 2622, "notes": "Give the Plaster Paw print Cast to Penfold", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454271,7 +452003,7 @@ { "id": 2623, "notes": "Uncover Max the Ferret in the Blue Dragon's maze.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -454279,7 +452011,7 @@ "y": 332 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -454289,7 +452021,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Searching around with your rake, you come upon a little den built from sticks, stones and ash. Inside, you find a chocolate-colored ferret, sleeping curled up in a ball.", "requires_awardid": null, "requires_questid_completed": [], @@ -454305,11 +452037,11 @@ { "id": 2624, "notes": "Hansel's Supply list", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454317,7 +452049,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -454338,11 +452070,11 @@ { "id": 2625, "notes": "Hansel gives you the letters of credit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454350,7 +452082,7 @@ "quantity": 12 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -454371,11 +452103,11 @@ { "id": 2626, "notes": "Pony Express Agree to delivery #6", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454404,11 +452136,11 @@ { "id": 2627, "notes": "Pony Express Completed Delivery #6 Bubba Topaz/Hotton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454416,7 +452148,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -454437,11 +452169,11 @@ { "id": 2628, "notes": "Pony Express Agree to delivery #7", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454470,11 +452202,11 @@ { "id": 2629, "notes": "Pony Express Completed Delivery #7 Jaxon Whanacrackur/Hotton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454482,7 +452214,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 4000, "items_gained": [], "quest_points": 0, @@ -454503,11 +452235,11 @@ { "id": 2630, "notes": "Pony Express Agree to delivery #8", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454536,11 +452268,11 @@ { "id": 2631, "notes": "Pony Express Completed Delivery #8 Bob Barnett/Tropicton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454548,7 +452280,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -454569,11 +452301,11 @@ { "id": 2632, "notes": "Pony Express Agree to delivery #9", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454602,11 +452334,11 @@ { "id": 2633, "notes": "Pony Express Completed Delivery #9 Lilac/Flower", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454614,7 +452346,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -454635,11 +452367,11 @@ { "id": 2634, "notes": "Pony Express Agree to delivery #10", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454668,11 +452400,11 @@ { "id": 2635, "notes": "Pony Express Completed Delivery #10 Tucker/Carrotton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454680,7 +452412,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1500, "items_gained": [], "quest_points": 0, @@ -454701,11 +452433,11 @@ { "id": 2638, "notes": "Pony Express Agree to delivery #12", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454734,11 +452466,11 @@ { "id": 2639, "notes": "Pony Express Completed Delivery #12 Priscilla/Crystalton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454746,7 +452478,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -454767,11 +452499,11 @@ { "id": 2640, "notes": "Pony Express Agree to delivery #13", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454800,11 +452532,11 @@ { "id": 2641, "notes": "Pony Express Completed Delivery #13 Jayne/Shellton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454812,7 +452544,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -454833,11 +452565,11 @@ { "id": 2642, "notes": "Pony Express Agree to delivery #14", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454866,11 +452598,11 @@ { "id": 2643, "notes": "Pony Express Completed Delivery #14 Mortimer/Starfish", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454878,7 +452610,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -454899,11 +452631,11 @@ { "id": 2644, "notes": "Pony Express Agree to delivery #15", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454932,11 +452664,11 @@ { "id": 2645, "notes": "Pony Express Completed Delivery #15 Willamena/Whiskerton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -454944,7 +452676,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 4500, "items_gained": [], "quest_points": 0, @@ -454965,14 +452697,14 @@ { "id": 2646, "notes": "Agree to find Red Tube Man", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -454993,7 +452725,7 @@ { "id": 2647, "notes": "Use tool to find Red Tube Man", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -455001,7 +452733,7 @@ "y": 351 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455017,7 +452749,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found the Red Wacky Waving Inflatable Arm Flailing Tube Man! Better head back to Rodney!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -455032,11 +452764,11 @@ { "id": 2648, "notes": "Give Red Tube Man to Rodney", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455065,14 +452797,14 @@ { "id": 2649, "notes": "Agree to find Green Tube Man", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -455093,7 +452825,7 @@ { "id": 2650, "notes": "Use tool to find Green Tube Man", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -455101,7 +452833,7 @@ "y": 364 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455117,7 +452849,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found the Green Wacky Waving Inflatable Arm Flailing Tube Man! Better head back to Rodney!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -455132,11 +452864,11 @@ { "id": 2651, "notes": "Give Green Tube Man to Rodney", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455144,7 +452876,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -455165,14 +452897,14 @@ { "id": 2652, "notes": "Agree to find Blue Tube Man", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -455193,7 +452925,7 @@ { "id": 2653, "notes": "Use tool to find Blue Tube Man", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -455201,7 +452933,7 @@ "y": 315 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455217,7 +452949,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have found the Blue Wacky Waving Inflatable Arm Flailing Tube Man! Better head back to Rodney!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -455232,11 +452964,11 @@ { "id": 2654, "notes": "Give Blue Tube Man to Rodney", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455244,7 +452976,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -455265,14 +452997,14 @@ { "id": 2655, "notes": "Agree to find Last Pink Tube Man", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -455293,7 +453025,7 @@ { "id": 2656, "notes": "Clue to find Pink Tube Man", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -455301,7 +453033,7 @@ "y": 363 }, "tracked": false, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search high and low all around, but find nothing interesting.", @@ -455312,7 +453044,7 @@ "warp_x": null, "warp_y": null, "success_message": "You spotted the Pink Tube Man high in the trees, but suddenly the wind picked it up and it flew right into the mud hole!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -455328,11 +453060,11 @@ { "id": 2657, "notes": "Porthole Wilma gets the letter of credit.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455361,11 +453093,11 @@ { "id": 2658, "notes": "Porthole Wilma signs her copy and gives you the coconuts", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455398,11 +453130,11 @@ { "id": 2659, "notes": "Cannonball Cate gets her letter of credit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455431,11 +453163,11 @@ { "id": 2660, "notes": "Cannonball Cate gives you the signed copy and her first delivery", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455447,7 +453179,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -455468,7 +453200,7 @@ { "id": 2661, "notes": "Use tool to find Pink Tube Man", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -455476,7 +453208,7 @@ "y": 362 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455492,7 +453224,7 @@ "warp_x": null, "warp_y": null, "success_message": "You found the Pink Tube Man in the mud hole! Well, at least the arms are still flailing. You should probably get this back to Rodney before all of your horses get covered in mud, too!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -455508,12 +453240,10 @@ "id": 2662, "notes": "Give Pink Tube Man to Rodney ", "title": "The Search for Rodney's Wacky Tube Men", - "requires_questid_npc": [ - 1565 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455536,7 +453266,9 @@ "success_npc_chat": "No matter! You have done well finding the Wacky Inflatable Arm Flailing Tube Men and I will let Al Arrington know about your job well done! Maybe if you come back later, I might have another sales job for you, too!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1565 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Nuova", @@ -455546,11 +453278,11 @@ { "id": 2663, "notes": "Rika gets the letter of credit.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455579,11 +453311,11 @@ { "id": 2664, "notes": "Rika gives you the signed copy and the spices.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455595,7 +453327,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -455616,11 +453348,11 @@ { "id": 2665, "notes": "Max sends you to Shellton for a hotel pillow. (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Just go get me the pillow, will you?", @@ -455646,11 +453378,11 @@ { "id": 2666, "notes": "Rosemary Sleepytime inscribes a pillow for Max.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455679,11 +453411,11 @@ { "id": 2667, "notes": "Trade Max the pillow for his Magenta Egg shard", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455716,7 +453448,7 @@ { "id": 2668, "notes": "Use your rake to uncover BugBug's lair", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -455724,7 +453456,7 @@ "y": 335 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all around, but uncover nothing interesting.", @@ -455750,14 +453482,14 @@ { "id": 2669, "notes": "BugBug sends you in search of peppermint balls. (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -455778,14 +453510,14 @@ { "id": 2670, "notes": "Mrs Claus asks for ingredients for peppermints balls.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -455808,11 +453540,11 @@ { "id": 2671, "notes": "Mrs Claus makes you a Peppermint Ball for BugBug", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455849,22 +453581,22 @@ { "id": 2672, "notes": "(Tracking only) King Phil has taken quest necklace.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -455877,11 +453609,11 @@ { "id": 2673, "notes": "Give BugBug a peppermint ball, get Shard No.2.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -455914,7 +453646,7 @@ { "id": 2674, "notes": "Uncover Eris the Ferret", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -455922,7 +453654,7 @@ "y": 343 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -455932,7 +453664,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Raking carefully, you find an old shoe-box. Opening the box, out pops a small, chocolate ferret!", "requires_awardid": null, "requires_questid_completed": [], @@ -455948,14 +453680,14 @@ { "id": 2675, "notes": "Eris says she doesn't have any dragon shards. (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -455963,7 +453695,7 @@ "warp_x": null, "warp_y": null, "success_message": "Eris says she doesn't have any dragon eggshell shards.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -455976,7 +453708,7 @@ { "id": 2676, "notes": "Uncover Daniel the Ferret", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -455984,7 +453716,7 @@ "y": 348 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -455994,7 +453726,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Raking carefully, you find a huge stash of old socks. Curled up in the middle is a huge, chocolate-silver ferret hob.", "requires_awardid": null, "requires_questid_completed": [], @@ -456010,14 +453742,14 @@ { "id": 2677, "notes": "Dan says Eris took his shard. (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -456025,7 +453757,7 @@ "warp_x": null, "warp_y": null, "success_message": "Daniel the Ferret says Eris the Ferret took his Dragon Egg Shard.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -456038,22 +453770,22 @@ { "id": 2678, "notes": "Eris is adamantly refusing to talk to you for second time. Must go see Daniel again. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -456066,11 +453798,11 @@ { "id": 2734, "notes": "Give the first dream box to Jasper.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456078,7 +453810,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -456099,14 +453831,14 @@ { "id": 2679, "notes": "Dan tells you where to go get Raisins to use to lure Eris out of her den. (Tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -456114,7 +453846,7 @@ "warp_x": null, "warp_y": null, "success_message": "Daniel the Ferret says that raisins should be available in food stores, and suggests you try looking in Ashton.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -456127,11 +453859,11 @@ { "id": 2733, "notes": "Receive first dream box from Isleen.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456139,7 +453871,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -456147,7 +453879,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have been given the Dream Box and asked to deliver it to Jasper in Earton.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -456160,11 +453892,11 @@ { "id": 2680, "notes": "Patrick Peasancarots tells you where to get raisins", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I already told you. Hotton.", @@ -456188,11 +453920,11 @@ { "id": 2681, "notes": "Clementine Crate sells you a box of raisins.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 100, "items_required": [ { @@ -456221,11 +453953,11 @@ { "id": 2682, "notes": "Throw raisins down the maze and steal back the Eggshells.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456258,11 +453990,11 @@ { "id": 2683, "notes": "Test to see if you have all the eggshell shards.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have all the shell shards yet, so you don't need to worry about it.", @@ -456290,14 +454022,14 @@ { "id": 2735, "notes": "Agree to get food for Augie's cat.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -456318,11 +454050,11 @@ { "id": 2685, "notes": "Stinky gives you travel glitter -- for the last time!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456330,7 +454062,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -456351,11 +454083,11 @@ { "id": 2686, "notes": "Amariel takes the egg shards and gold and gives you a mended, whole egg.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456399,7 +454131,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456432,14 +454164,14 @@ { "id": 2688, "notes": "Agree to find Harmonies harmonica (goes with 110)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -456447,7 +454179,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have agreed to find Harmony's Harmonica.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -456460,14 +454192,14 @@ { "id": 2689, "notes": "Agree to find teddy bear for Dominique (goes with 35)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -456475,7 +454207,7 @@ "warp_x": null, "warp_y": null, "success_message": "You have agreed to find Tally's Teddy Bear for Dominique.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -456488,11 +454220,11 @@ { "id": 2690, "notes": "Patrick says nobody's tried to sell him a dragon egg (tracking only, so does get asked twice).", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "A... a what? A dragon egg, you say? You've got to be kidding.", @@ -456502,7 +454234,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "A... a what? A dragon egg, you say? You've got to be kidding.", "requires_awardid": null, "requires_questid_completed": [], @@ -456516,11 +454248,11 @@ { "id": 2691, "notes": "Manco gets the letter of credit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456549,11 +454281,11 @@ { "id": 2692, "notes": "Manco gives you the walnuts", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456565,7 +454297,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -456586,11 +454318,11 @@ { "id": 2693, "notes": "Cinnamon gets the letter of credit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456619,11 +454351,11 @@ { "id": 2694, "notes": "Cinnamon gives you the first shipment of milk", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456635,7 +454367,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -456656,14 +454388,14 @@ { "id": 2695, "notes": "Agree to find baby bunnies for Mama Bunny", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -456684,7 +454416,7 @@ { "id": 2696, "notes": "Find baby bunny #1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -456692,7 +454424,7 @@ "y": 220 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456723,7 +454455,7 @@ { "id": 2697, "notes": "Find baby bunny #2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -456731,7 +454463,7 @@ "y": 219 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456762,7 +454494,7 @@ { "id": 2698, "notes": "Find baby bunny #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -456770,7 +454502,7 @@ "y": 219 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456801,7 +454533,7 @@ { "id": 2699, "notes": "Find baby bunny #4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -456809,7 +454541,7 @@ "y": 223 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456840,7 +454572,7 @@ { "id": 2700, "notes": "Find baby bunny #5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -456848,7 +454580,7 @@ "y": 223 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456879,7 +454611,7 @@ { "id": 2701, "notes": "Find baby bunny #6", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -456887,7 +454619,7 @@ "y": 218 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456918,7 +454650,7 @@ { "id": 2702, "notes": "Find baby bunny #7", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -456926,7 +454658,7 @@ "y": 224 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -456957,7 +454689,7 @@ { "id": 2703, "notes": "Find baby bunny #8", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -456965,7 +454697,7 @@ "y": 217 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457000,7 +454732,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457033,14 +454765,14 @@ { "id": 2705, "notes": "Penfold suggests places to look for the ferrets (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -457048,7 +454780,7 @@ "warp_x": null, "warp_y": null, "success_message": "Penfold identifies the paw prints as ferret tracks.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -457061,7 +454793,7 @@ { "id": 2707, "notes": "Dig up Anika's Lost Hat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -457069,7 +454801,7 @@ "y": 64 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457100,14 +454832,14 @@ { "id": 2708, "notes": "Get the yellow hat quest from Anika", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -457132,7 +454864,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457161,11 +454893,11 @@ { "id": 2710, "notes": "Bowen gets the letters of credit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457194,11 +454926,11 @@ { "id": 2711, "notes": "Bowen gives you the apples", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457210,7 +454942,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -457231,11 +454963,11 @@ { "id": 2712, "notes": "Bowen gives you the oranges", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457247,7 +454979,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -457268,11 +455000,11 @@ { "id": 2713, "notes": "Chaffie gets Hansel's letter of credit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457301,11 +455033,11 @@ { "id": 2714, "notes": "Chaffie gives you the flour shipment", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457317,7 +455049,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -457338,11 +455070,11 @@ { "id": 2715, "notes": "Dr. Fernlove gets the letter of credit.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457371,11 +455103,11 @@ { "id": 2716, "notes": "Dr. Fernlove gives you the berries (!)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457387,7 +455119,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -457408,11 +455140,11 @@ { "id": 2717, "notes": "Ricky gets the letters of credit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457441,11 +455173,11 @@ { "id": 2718, "notes": "Ricky gives you the eggs", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457457,7 +455189,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -457478,11 +455210,11 @@ { "id": 2719, "notes": "Ricky gives you the butter", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457494,7 +455226,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -457515,11 +455247,11 @@ { "id": 2720, "notes": "Ricky gives you cream cheese", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457531,7 +455263,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -457552,11 +455284,11 @@ { "id": 2721, "notes": "Hansel gets his apples", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457589,11 +455321,11 @@ { "id": 2722, "notes": "Hansel gets his berries.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457626,11 +455358,11 @@ { "id": 2723, "notes": "Hansel gets his spices.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457663,11 +455395,11 @@ { "id": 2724, "notes": "Hansel gets the milk", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457700,11 +455432,11 @@ { "id": 2725, "notes": "Hansel gets the butter", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457737,11 +455469,11 @@ { "id": 2726, "notes": "Hansel gets the cream cheese", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457774,11 +455506,11 @@ { "id": 2727, "notes": "Hansel gets his oranges", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457811,11 +455543,11 @@ { "id": 2728, "notes": "Hansel gets his eggs.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457848,11 +455580,11 @@ { "id": 2729, "notes": "Hansel gets the flour.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457885,11 +455617,11 @@ { "id": 2730, "notes": "Hansel gets the coconuts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457922,11 +455654,11 @@ { "id": 2731, "notes": "Hansel gets the walnuts", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457959,11 +455691,11 @@ { "id": 2732, "notes": "Hansel gets the molasses.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -457997,12 +455729,10 @@ "id": 2736, "notes": "Give fish to Augie ", "title": "A Meal for Shadow", - "requires_questid_npc": [ - 2295 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458025,7 +455755,9 @@ "success_npc_chat": "Wonderful! This should feed Shadow for a day or two. Here's some scorpions in trade.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2295 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "Desertmorn", @@ -458035,14 +455767,14 @@ { "id": 2737, "notes": "Agree to get scallops for Shadow", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -458063,11 +455795,11 @@ { "id": 2738, "notes": "Get scallops for Shadow", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458075,7 +455807,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -458097,12 +455829,10 @@ "id": 2739, "notes": "You give the scallops to Augie.", "title": "Scallops for Shadow", - "requires_questid_npc": [ - 2768 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458125,7 +455855,9 @@ "success_npc_chat": "Wonderful! Thank you so much. Please take this dinosaur bone as a thank you. It does me no good, but might be of use to you.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2768 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "Desertmorn", @@ -458135,14 +455867,14 @@ { "id": 2741, "notes": "Agree to get honeycombs for Crash", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -458163,14 +455895,14 @@ { "id": 2742, "notes": "You agree to help Just Gus find his long lost love", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -458195,7 +455927,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458232,11 +455964,11 @@ { "id": 2744, "notes": "You deliver a letter to Willamena and get another.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458269,11 +456001,11 @@ { "id": 2745, "notes": "You deliver a letter to Priscilla and get another.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458306,14 +456038,14 @@ { "id": 2746, "notes": "You agree to tell Gus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -458334,11 +456066,11 @@ { "id": 2747, "notes": "You give Davisse the letter", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458367,14 +456099,14 @@ { "id": 2748, "notes": "You swear that Gus is sincere about making amends", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -458395,11 +456127,11 @@ { "id": 2749, "notes": "You agree to deliver the engraved compass to Davisse", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458407,7 +456139,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -458428,11 +456160,11 @@ { "id": 2750, "notes": "You give the engraved compass to Davisse", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458461,11 +456193,11 @@ { "id": 2751, "notes": "You get diamonds and roses for Michelle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458477,7 +456209,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -458499,12 +456231,10 @@ "id": 2752, "notes": "Just Gus rewards you ", "title": "Just Gus Makes Amends", - "requires_questid_npc": [ - 2200 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458512,7 +456242,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 300, @@ -458523,7 +456253,9 @@ "success_npc_chat": "Ye done the impossible, matey. Iffn ye be needin' sometin' -- anytin' -- ye can count on me!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2200 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "DesertMorn", @@ -458533,11 +456265,11 @@ { "id": 2753, "notes": "You give the gifts to Michelle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458570,21 +456302,21 @@ { "id": 2754, "notes": "You annoy Michelle - just for tracking purposes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "That horse thar be lookin' awfully good. As mine, of course.", "requires_awardid": null, "requires_questid_completed": [], @@ -458598,11 +456330,11 @@ { "id": 2755, "notes": "You get empty feed sacks", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 600, "items_required": [ { @@ -458631,7 +456363,7 @@ { "id": 2756, "notes": "You made a sandbag", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -458639,7 +456371,7 @@ "y": 57 }, "tracked": true, - "repeats": 6, + "max_repeats": 6, "money_cost": 0, "items_required": [ { @@ -458659,7 +456391,7 @@ "warp_x": null, "warp_y": null, "success_message": "You shovel sand into the empty feed sack. You created a Sandbag!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -458675,12 +456407,10 @@ "id": 2757, "notes": "You give sandbags to Smelly ", "title": "Smelly Toes' Sea Surge Mess", - "requires_questid_npc": [ - 2231 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458707,7 +456437,9 @@ "success_npc_chat": "May ye be blessed wit' good grog and clear passage past Davy Jones' locker! I'll stack 'em up shortly. Here be a bit o' reward for thee.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2231 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "DesertMorn", @@ -458717,14 +456449,14 @@ { "id": 2761, "notes": "Dolly sends you to Olav", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -458745,11 +456477,11 @@ { "id": 2758, "notes": "Agree to help Smelly Toes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Be a right smart idea, gettin' feed sacks. Heave ho and on ye go!", @@ -458773,14 +456505,14 @@ { "id": 2760, "notes": "Katinka asks for your help", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -458801,22 +456533,22 @@ { "id": 2759, "notes": "", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 600, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -458833,7 +456565,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458841,7 +456573,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 25, @@ -458862,11 +456594,11 @@ { "id": 2777, "notes": "Agree to bring a package to Karina for Jean Stonwasht", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458874,7 +456606,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1500, "items_gained": [], "quest_points": 0, @@ -458895,11 +456627,11 @@ { "id": 2762, "notes": "Olav sends you to Kay Macaw in Wington", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458907,7 +456639,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -458928,11 +456660,11 @@ { "id": 2763, "notes": "Kay gets her bill", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -458965,11 +456697,11 @@ { "id": 2764, "notes": "Olav gives you important papers for Katinka.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -459000,14 +456732,14 @@ { "id": 2856, "notes": "Agree to find Frog band members", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -459028,11 +456760,11 @@ { "id": 2765, "notes": "Katinka gets her presents", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -459065,11 +456797,11 @@ { "id": 2766, "notes": "Stinky gives you a diamond to cover traveling expenses.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [ { @@ -459077,7 +456809,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -459098,11 +456830,11 @@ { "id": 2767, "notes": "Agree to teach Augie how to fish", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": ".", @@ -459127,12 +456859,10 @@ "id": 2768, "notes": "Give fishing equipment to Augie. ", "title": "Augie Learns to Fish", - "requires_questid_npc": [ - 2736 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -459155,7 +456885,9 @@ "success_npc_chat": "These look perfect! Thank you.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2736 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "Desertmorn", @@ -459165,11 +456897,11 @@ { "id": 2769, "notes": "Katinka gives you the signed papers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -459198,11 +456930,11 @@ { "id": 2770, "notes": "Ivanna takes care of Katinka's account.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -459239,7 +456971,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -459272,14 +457004,14 @@ { "id": 2772, "notes": "Fishies for Dorothy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -459304,7 +457036,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -459341,11 +457073,11 @@ { "id": 2774, "notes": "Dorothy trades 5 big fish for 1 Obsidian", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -459378,11 +457110,11 @@ { "id": 2775, "notes": "Dorothy trades 10 little fish for 1 Pearl", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -459415,14 +457147,14 @@ { "id": 2776, "notes": "Dorothy takes fish trades", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -459443,14 +457175,14 @@ { "id": 2778, "notes": "Holli Daysin tells you she saw Karina", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -459458,7 +457190,7 @@ "warp_x": null, "warp_y": null, "success_message": "Holli mentions that she sent Karina to go speak to Witherton Jones.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -459471,14 +457203,14 @@ { "id": 2779, "notes": "Witherton Jones says he sent Karina up to Rainy Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -459486,7 +457218,7 @@ "warp_x": null, "warp_y": null, "success_message": "Witherton Jones mentioned that he told Karina to head to Rainy Meadows.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -459499,14 +457231,14 @@ { "id": 2780, "notes": "Manco tells you Karina is at the Jungle Temple", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -459514,7 +457246,7 @@ "warp_x": null, "warp_y": null, "success_message": "Manco told you to check around the Jungle Temple for Karina.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -459527,11 +457259,11 @@ { "id": 2781, "notes": "Give Karina the package", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -459568,7 +457300,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -459584,7 +457316,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 200, @@ -459605,22 +457337,22 @@ { "id": 2783, "notes": "Karina sees a Toucan and runs off (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -459633,11 +457365,11 @@ { "id": 2784, "notes": "Vicky Shank gives you a package to deliver to Colina and check to be sure you have 25% award", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -459666,11 +457398,11 @@ { "id": 2785, "notes": "Give Colina the package from Vicky Shank", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -459678,7 +457410,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -459703,10 +457435,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 50, @@ -459727,14 +457459,14 @@ { "id": 2787, "notes": "Eli's tip (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -459755,14 +457487,14 @@ { "id": 2788, "notes": "Captain Jack's Tip (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -459783,11 +457515,11 @@ { "id": 2789, "notes": "Cara's tip (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I 'eard tell of a new butter and egg man over in Molten Meadows. Go see if 'e'd want the business. While yer there, check out the miller. She's my supplier, but I'm sure she could handle a bakery, too.", @@ -459811,14 +457543,14 @@ { "id": 2790, "notes": "Nana's tip (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -459839,14 +457571,14 @@ { "id": 2791, "notes": "Minnie's tip (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -459867,14 +457599,14 @@ { "id": 2792, "notes": "Patricia's tip (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -459895,11 +457627,11 @@ { "id": 2793, "notes": "Pony Express Agree to delivery #16", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -459928,11 +457660,11 @@ { "id": 2794, "notes": "Pony Express Completed Delivery #16 Timothy/Rider", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -459940,7 +457672,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -459961,11 +457693,11 @@ { "id": 2795, "notes": "Pony Express Agree to delivery #17", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -459994,11 +457726,11 @@ { "id": 2796, "notes": "Pony Express Completed Delivery #17 Spike/Treeton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -460010,7 +457742,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1500, "items_gained": [], "quest_points": 0, @@ -460031,11 +457763,11 @@ { "id": 2797, "notes": "Pony Express Agree to delivery #18", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -460064,11 +457796,11 @@ { "id": 2798, "notes": "Pony Express Completed Delivery #18 Phyllis/Hotton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -460080,7 +457812,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -460101,11 +457833,11 @@ { "id": 2799, "notes": "Pony Express Agree to delivery #19", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -460134,11 +457866,11 @@ { "id": 2800, "notes": "Pony Express Completed Delivery #19 Stephen/Hare", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -460146,7 +457878,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -460167,11 +457899,11 @@ { "id": 2801, "notes": "Pony Express Agree to delivery #20", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -460200,11 +457932,11 @@ { "id": 2802, "notes": "Pony Express Completed Delivery #20 Jack Reelin/Bird", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -460216,7 +457948,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 200, "items_gained": [], "quest_points": 0, @@ -460237,14 +457969,14 @@ { "id": 2803, "notes": "Yorick gives you a clue.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460265,14 +457997,14 @@ { "id": 2804, "notes": "Kyleigh gives you a clue.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460293,14 +458025,14 @@ { "id": 2805, "notes": "Agree to find Crash's crush", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460321,14 +458053,14 @@ { "id": 2806, "notes": "Basil gives you a clue.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460349,11 +458081,11 @@ { "id": 2807, "notes": "Agree to take a message to Crash", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -460361,7 +458093,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460382,14 +458114,14 @@ { "id": 2808, "notes": "Karl gives you a clue.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460410,14 +458142,14 @@ { "id": 2809, "notes": "Remy gives you a clue.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460438,14 +458170,14 @@ { "id": 2810, "notes": "Rosemary gives a clue.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460466,14 +458198,14 @@ { "id": 2811, "notes": "George gives a clue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460494,14 +458226,14 @@ { "id": 2812, "notes": "Holli gives a clue.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460529,7 +458261,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -460562,14 +458294,14 @@ { "id": 2814, "notes": "Agree to run ahead of Crash", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460590,14 +458322,14 @@ { "id": 2815, "notes": "Isadora sends you to Triton (1st time)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460618,14 +458350,14 @@ { "id": 2816, "notes": "Triton Poofs you to land", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460646,14 +458378,14 @@ { "id": 2817, "notes": "Isadora sends you to Triton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460674,14 +458406,14 @@ { "id": 2818, "notes": "Triton sends you to land for more info", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460702,14 +458434,14 @@ { "id": 2819, "notes": "Bastien tells of the dolphin and box ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460730,14 +458462,14 @@ { "id": 2820, "notes": "Dorothy wants 5 Normal Fish", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460758,11 +458490,11 @@ { "id": 2821, "notes": "Trade normal fish for box from Dorothy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -460795,14 +458527,14 @@ { "id": 2822, "notes": "Give Triton Box? (oops!)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460823,11 +458555,11 @@ { "id": 2823, "notes": "Give Bastien the box", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -460839,7 +458571,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460860,11 +458592,11 @@ { "id": 2824, "notes": "Give Triton the scroll", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -460872,7 +458604,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460893,11 +458625,11 @@ { "id": 2825, "notes": "Triton poofs you to land and thanks you!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -460909,7 +458641,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460931,15 +458663,13 @@ "id": 2826, "notes": "Isadora thanks you and quest completed! ", "title": "Under The Sea Mystery", - "requires_questid_npc": [ - 2813 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 200, @@ -460951,6 +458681,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 2813, 2825 ], "hide_reply_on_fail": false, @@ -460962,11 +458693,11 @@ { "id": 2827, "notes": "Rose gives you fruit salad ingredient list", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -460974,7 +458705,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -460995,11 +458726,11 @@ { "id": 2828, "notes": "Give Rose oranges", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461028,11 +458759,11 @@ { "id": 2829, "notes": "Give Rose the apples", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461061,11 +458792,11 @@ { "id": 2830, "notes": "Give Rose the bananas", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461094,11 +458825,11 @@ { "id": 2831, "notes": "Give Rose the pears", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461127,11 +458858,11 @@ { "id": 2832, "notes": "Give Rose the grapes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461160,11 +458891,11 @@ { "id": 2833, "notes": "Give Rose the berries", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461197,11 +458928,11 @@ { "id": 2834, "notes": "Check that Rose has all the fruit salad ingredients", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461237,14 +458968,14 @@ { "id": 2835, "notes": "Agree to get marshmallows and cream for Rose", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -461265,11 +458996,11 @@ { "id": 2836, "notes": "Cinnamon gives you a bottle of cream", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 300, "items_required": [ { @@ -461305,7 +459036,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461342,11 +459073,11 @@ { "id": 2838, "notes": "Agree to run errand for Venda", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461354,7 +459085,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -461375,11 +459106,11 @@ { "id": 2839, "notes": "Give Anani Palm Fronds", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461387,7 +459118,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -461409,12 +459140,10 @@ "id": 2840, "notes": "Give Venda money ", "title": "Venda's Errand", - "requires_questid_npc": [ - 855 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461433,7 +459162,9 @@ "success_npc_chat": "Thank you very much! I appreciate you running that errand for me. Here, maybe you and your horse can get a use out of this.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 855 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "Nuova", @@ -461443,14 +459174,14 @@ { "id": 2842, "notes": "Smiddy needs iron for scoops", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -461471,11 +459202,11 @@ { "id": 2843, "notes": "Give iron to Smiddy get scoops in return", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -461512,7 +459243,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461524,7 +459255,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 75, @@ -461545,14 +459276,14 @@ { "id": 2845, "notes": "Erebus jumps you out of forest ring. Just in case player gets there...", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -461573,11 +459304,11 @@ { "id": 2846, "notes": "Hansel moves on from the refrigerator", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have all of my dairy products yet. Go get the rest. Remember, I need butter, eggs, cream cheese, and milk.", @@ -461606,11 +459337,11 @@ { "id": 2847, "notes": "Hansel moves on to the Pantry", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I asked you for all of my produce items; that would be the apples, the oranges, the berries, the coconuts, and the walnuts. Come back with the rest of my produce.", @@ -461640,14 +459371,14 @@ { "id": 2848, "notes": "Big Tom needs ebony wood", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -461672,7 +459403,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461701,14 +459432,14 @@ { "id": 2850, "notes": "Big Tom needs lots of cotton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -461729,14 +459460,14 @@ { "id": 2851, "notes": "Big Tom gives you a bit more $", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -461757,11 +459488,11 @@ { "id": 2852, "notes": "Give Big Tom 50 cotton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461791,12 +459522,10 @@ "id": 2853, "notes": "Give Big Tom 50 more cotton", "title": "Cat Construction Job #2", - "requires_questid_npc": [ - 2849 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461815,7 +459544,9 @@ "success_npc_chat": "Yeah, this is what we need for the post base. Thanks, kid. 'Ere's your payment for the cotton.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2849 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "Nuova", @@ -461825,14 +459556,14 @@ { "id": 2854, "notes": "Big Tom needs feathers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -461854,12 +459585,10 @@ "id": 2855, "notes": "Give Big Tom 30 feathers ", "title": "Cat Construction Job #3", - "requires_questid_npc": [ - 2853 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -461878,7 +459607,9 @@ "success_npc_chat": "Yeah, right. These are just what I was sayin'! 'Ere's your payment for the feathers, kid.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2853 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "Nuova", @@ -461888,14 +459619,14 @@ { "id": 2857, "notes": "Tell M-Lap about band practice", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -461916,14 +459647,14 @@ { "id": 2858, "notes": "M-Lap is here for practice!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -461944,14 +459675,14 @@ { "id": 2859, "notes": "Tell Eram about band practice", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -461972,14 +459703,14 @@ { "id": 2860, "notes": "Eram is here for practice!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462000,14 +459731,14 @@ { "id": 2861, "notes": "Tell Calil about band practice", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462028,14 +459759,14 @@ { "id": 2862, "notes": "Calil is here for practice!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462056,14 +459787,14 @@ { "id": 2863, "notes": "Tell Remmihs about band practice", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462084,14 +459815,14 @@ { "id": 2864, "notes": "Remmihs is here for practice!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462119,7 +459850,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "No, I think you are missing someone. Come back when you find them all, okay?", @@ -462148,22 +459879,22 @@ { "id": 2866, "notes": "Told about talking to people in Molten Meadows for Hansels Bakery suppliers (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -462176,14 +459907,14 @@ { "id": 2867, "notes": "Agree to collect cotton for Leasa", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462204,11 +459935,11 @@ { "id": 2868, "notes": "Give 25 pieces of cotton to Leasa", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462237,11 +459968,11 @@ { "id": 2869, "notes": "Agree to bring cotton to Barb Sower for Leasa", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462249,7 +459980,7 @@ "quantity": 50 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462270,11 +460001,11 @@ { "id": 2870, "notes": "Give cotton to Barb Sower and get quilting fabric back", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462303,11 +460034,11 @@ { "id": 2871, "notes": "get the fabric bolt from Barb for Leasa", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462315,7 +460046,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462336,11 +460067,11 @@ { "id": 2872, "notes": "Give the bolt of fabric to Leasa", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462352,7 +460083,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -462373,14 +460104,14 @@ { "id": 2873, "notes": "Agree to gather dye ingredients for Leasa", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462401,11 +460132,11 @@ { "id": 2874, "notes": "Give 4 leaf clovers and dandelions to Leasa", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462438,11 +460169,11 @@ { "id": 2875, "notes": "Give blackberries and strawberries to Leasa", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462475,11 +460206,11 @@ { "id": 2876, "notes": "Leasa checks that you gave her all the dye items", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I'm afraid you are still missing something. I need it all in order to start dying this fabric.", @@ -462489,7 +460220,7 @@ "goto_npc_chatpoint": 0, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Ah, yes. These will work well. I know that was probably quite a bit of work, but I just have one more thing, if you are willing?", "requires_awardid": null, "requires_questid_completed": [ @@ -462506,14 +460237,14 @@ { "id": 2877, "notes": "Agree to get thread from Hudson for Leasa", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462534,11 +460265,11 @@ { "id": 2878, "notes": "Pick up thread from Hudson", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462546,7 +460277,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462568,12 +460299,10 @@ "id": 2879, "notes": "Give thread to Leasa", "title": "Leasa's Quilt", - "requires_questid_npc": [ - 56 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462581,7 +460310,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 250, @@ -462592,7 +460321,9 @@ "success_npc_chat": "Wonderful. Now I can get to work piecing this together. I have the batting and backing all ready, so you won't need to worry about that. Here. Take this for all your hard work.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 56 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Miranda", @@ -462602,22 +460333,22 @@ { "id": 2880, "notes": "Leasa asks if you will deliver the quilt once it's completed (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -462630,11 +460361,11 @@ { "id": 2881, "notes": "Agree to bring Leasa's Quilt to Baby Karina", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462642,7 +460373,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462663,11 +460394,11 @@ { "id": 2882, "notes": "Give Baby Karina the quilt from Leasa", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462675,7 +460406,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462697,12 +460428,10 @@ "id": 2883, "notes": "Tell Leasa that Baby Karina got the quilt", "title": "Leasa's Quilt Delivery", - "requires_questid_npc": [ - 2879 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462710,7 +460439,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1500, "items_gained": [], "quest_points": 25, @@ -462721,7 +460450,9 @@ "success_npc_chat": "Thanks again! The bread just came out of the oven. You can have a loaf for all your help.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2879 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Miranda", @@ -462731,14 +460462,14 @@ { "id": 2884, "notes": "Agree to get Azmaguru's Necklace", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462759,14 +460490,14 @@ { "id": 2885, "notes": "Floria needs items for necklace", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462787,11 +460518,11 @@ { "id": 2886, "notes": "Genivive gives you beads", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462799,7 +460530,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -462820,11 +460551,11 @@ { "id": 2887, "notes": "Give Floria feathers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462853,11 +460584,11 @@ { "id": 2888, "notes": "Give Floria leather", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462886,11 +460617,11 @@ { "id": 2889, "notes": "Give Floria dino bone", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462919,11 +460650,11 @@ { "id": 2890, "notes": "Give Floria beads", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462952,11 +460683,11 @@ { "id": 2891, "notes": "Floria checks for everything then gives you necklace", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -462990,14 +460721,14 @@ { "id": 2892, "notes": "Agree to help Betty Garments get organized", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -463022,7 +460753,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463038,7 +460769,7 @@ "quantity": 25 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 125, @@ -463059,14 +460790,14 @@ { "id": 2894, "notes": "Spister Mooner asks for Cifteen Foconuts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -463091,7 +460822,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463121,12 +460852,10 @@ "id": 2896, "notes": "Return to Isleen after delivering the dream to Jasper ", "title": "Isleen's Dreams #1", - "requires_questid_npc": [ - 1756 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463134,7 +460863,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 50, @@ -463145,7 +460874,9 @@ "success_npc_chat": "Thank you so much! Are you sure you're ready for the next delivery?", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1756 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "CheshireKitty", @@ -463155,14 +460886,14 @@ { "id": 2897, "notes": "Get nails and logs for Betty", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 100, "items_gained": [], "quest_points": 0, @@ -463183,11 +460914,11 @@ { "id": 2898, "notes": "Liam gives you nails for Betty", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 50, "items_required": [ { @@ -463216,11 +460947,11 @@ { "id": 2899, "notes": "Give nails to Betty", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463249,11 +460980,11 @@ { "id": 2900, "notes": "Give logs to Betty", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463282,11 +461013,11 @@ { "id": 2901, "notes": "Betty checks that you have nails and logs", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "No, you're still missing something. We need nails and logs!", @@ -463296,7 +461027,7 @@ "goto_npc_chatpoint": 18, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Yes, we are ready to make shelves!", "requires_awardid": null, "requires_questid_completed": [ @@ -463313,11 +461044,11 @@ { "id": 2902, "notes": "Get bins and paint from Percy.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463329,7 +461060,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -463350,14 +461081,14 @@ { "id": 2903, "notes": "Check Whiskerton Store for stuff", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -463378,11 +461109,11 @@ { "id": 2904, "notes": "Give bins and paint to Betty", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463419,7 +461150,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463431,7 +461162,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 200, @@ -463452,11 +461183,11 @@ { "id": 2906, "notes": "Pony Express Agree to delivery #21", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463485,11 +461216,11 @@ { "id": 2907, "notes": "Pony Express Completed Delivery #21 Seamus/Turtle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463501,7 +461232,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -463522,11 +461253,11 @@ { "id": 2908, "notes": "Pony Express Agree to delivery #22", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463555,11 +461286,11 @@ { "id": 2909, "notes": "Pony Express Completed Delivery #22 Sally/Hoof", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463571,7 +461302,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -463592,11 +461323,11 @@ { "id": 2910, "notes": "Pony Express Agree to delivery #23", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463625,11 +461356,11 @@ { "id": 2911, "notes": "Pony Express Completed Delivery #23 Yorick/Snowball", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463637,7 +461368,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -463658,11 +461389,11 @@ { "id": 2912, "notes": "Pony Express Agree to delivery #24", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463691,11 +461422,11 @@ { "id": 2913, "notes": "Pony Express Completed Delivery #24 Bess/Starfish", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463703,7 +461434,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 500, "items_gained": [], "quest_points": 0, @@ -463724,11 +461455,11 @@ { "id": 2914, "notes": "Pony Express Agree to delivery #25", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463757,16 +461488,14 @@ { "id": 2916, "notes": "Hyrokkin sends you to find herring", - "title": "", - "requires_questid_npc": [ - 2292 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -463777,7 +461506,9 @@ "success_npc_chat": "I haven't a clue. Maybe my friend Jack O'Lantern might know. He knows more about these islands than I do.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2292 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -463787,11 +461518,11 @@ { "id": 2915, "notes": "Pony Express Completed Delivery #25 Brock/Earton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463803,7 +461534,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -463824,11 +461555,11 @@ { "id": 2917, "notes": "Jack sends you to Jack Reelin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463836,7 +461567,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 750, "items_gained": [], "quest_points": 0, @@ -463857,11 +461588,11 @@ { "id": 2918, "notes": "Jack gives you Hyrokkin's fish", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463899,12 +461630,10 @@ "id": 2919, "notes": "Hyrokkin get's her fish ", "title": "Hyrokkin's Feast", - "requires_questid_npc": [ - 2292 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -463931,7 +461660,9 @@ "success_npc_chat": "(Hyrokkin opens the barrel and inhales deeply.) These are perfect, reminds me of home. Here, take these for your trouble and wish me luck!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2292 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "BklynFilly", @@ -463941,14 +461672,14 @@ { "id": 2920, "notes": "Phyllis Colt needs formula", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1500, "items_gained": [], "quest_points": 0, @@ -463969,11 +461700,11 @@ { "id": 2921, "notes": "Oliver Oates gives you formula", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -464006,7 +461737,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464014,7 +461745,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 50, @@ -464035,11 +461766,11 @@ { "id": 2923, "notes": "Recieve the second dream box from Isleen", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464047,7 +461778,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464068,11 +461799,11 @@ { "id": 2924, "notes": "Give WildFire The dream box", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464080,7 +461811,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464102,12 +461833,10 @@ "id": 2925, "notes": "Return to Isleen after delivering the second dream box. ", "title": "Isleen's Dreams #2", - "requires_questid_npc": [ - 2896 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464115,7 +461844,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 50, @@ -464126,7 +461855,9 @@ "success_npc_chat": "I'm sure he was glad to have his dreams back. Thank you for delivering that for me.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2896 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "CheshireKitty", @@ -464136,11 +461867,11 @@ { "id": 2926, "notes": "Get the third and final dream box from Isleen.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464148,7 +461879,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464169,11 +461900,11 @@ { "id": 2927, "notes": "Give the dream box to the Purple Dragon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464181,7 +461912,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464203,12 +461934,10 @@ "id": 2928, "notes": "Talk to Isleen after delivering the third dream box. ", "title": "Isleen's Dreams #3", - "requires_questid_npc": [ - 2925 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464216,7 +461945,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 75, @@ -464227,7 +461956,9 @@ "success_npc_chat": "Thank you so much. You really have no idea how much you have helped me out. Hopefully my leg will heal soon and I can go back to work, but you've given me some time to heal.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2925 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "CheshireKitty", @@ -464237,14 +461968,14 @@ { "id": 2929, "notes": "Agree to pick up Hay for Ted Capocella", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464265,14 +461996,14 @@ { "id": 2930, "notes": "Agree to get 3 more bales for Mary", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464293,11 +462024,11 @@ { "id": 2931, "notes": "Give Mary 3 Bales of Hay", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464330,11 +462061,11 @@ { "id": 2932, "notes": "Give Ted Capocella his Hay Order.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464363,11 +462094,11 @@ { "id": 2933, "notes": "Candide gives you the yarn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464375,7 +462106,7 @@ "quantity": 25 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464396,11 +462127,11 @@ { "id": 2934, "notes": "Katinka gets the yarn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464429,11 +462160,11 @@ { "id": 2935, "notes": "Katinka gives you the Sweater and Hat Set.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464441,7 +462172,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464462,11 +462193,11 @@ { "id": 2936, "notes": "Sara gets her gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464506,7 +462237,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464535,14 +462266,14 @@ { "id": 2955, "notes": "Nerida sends you to the Unicorn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464563,14 +462294,14 @@ { "id": 2938, "notes": "Agree to pick up grain for Ted Capocella", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464593,11 +462324,11 @@ { "id": 2939, "notes": "Pick up Grain from Daria Pale for Ted.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464605,7 +462336,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464630,7 +462361,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464659,16 +462390,14 @@ { "id": 2941, "notes": "You agree to find Ted Capocella's Racing Saddle", - "title": "", - "requires_questid_npc": [ - 32 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464679,7 +462408,9 @@ "success_npc_chat": "I believe I left it with Adrianna, she lives to the east of me. I would check with her.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 32 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -464689,11 +462420,11 @@ { "id": 2942, "notes": "Receive Ted Capocella's broken racing saddle from Adrianna.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464701,7 +462432,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464722,11 +462453,11 @@ { "id": 2943, "notes": "Give Ted's racing saddle to Bridgett", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464755,11 +462486,11 @@ { "id": 2944, "notes": "Receive Ted Capocella's fixed racing saddle from Bridgett Briddel", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464767,7 +462498,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464789,12 +462520,10 @@ "id": 2945, "notes": "Return Ted Capocella's Racing Saddle.", "title": "Ted's Racing Saddle", - "requires_questid_npc": [ - 32 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464813,7 +462542,9 @@ "success_npc_chat": "Oh, thank you! This will help relieve some of my stress and it's one less thing I have to do. Please have this in return.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 32 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "CheshireKitty", @@ -464823,14 +462554,14 @@ { "id": 2946, "notes": "Puck sends you to Rhoswen", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464851,14 +462582,14 @@ { "id": 2947, "notes": "Rhoswen asks you for help.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464879,7 +462610,7 @@ { "id": 2948, "notes": "You found a Geode!!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -464887,7 +462618,7 @@ "y": 31 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464918,11 +462649,11 @@ { "id": 2949, "notes": "Rhoswen gets her items.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -464955,14 +462686,14 @@ { "id": 2950, "notes": "Oren sends you for supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -464983,11 +462714,11 @@ { "id": 2951, "notes": "You give Oren his supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465020,11 +462751,11 @@ { "id": 2952, "notes": "Puck checks your quest level.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "I'm sorry, thou must have completed 75% of thy quests to assist me, come back when thou hast completed them.", @@ -465034,7 +462765,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "I was correct, thou hast shown great strength of will. Thou are just the mortal I need.", "requires_awardid": 3, "requires_questid_completed": [], @@ -465048,14 +462779,14 @@ { "id": 2953, "notes": "Sylph asks for supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -465076,11 +462807,11 @@ { "id": 2954, "notes": "You give Sylph her supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465113,11 +462844,11 @@ { "id": 2956, "notes": "Unicorn accepts his apples", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465146,7 +462877,7 @@ { "id": 2957, "notes": "You found the Unicorn Hair", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -465154,7 +462885,7 @@ "y": 362 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465185,11 +462916,11 @@ { "id": 2958, "notes": "You give Nerida the Unicorn Hair.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465218,14 +462949,14 @@ { "id": 2959, "notes": "Foster sends you for supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -465246,11 +462977,11 @@ { "id": 2960, "notes": "Foster gets his supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465283,14 +463014,14 @@ { "id": 2961, "notes": "Blossom asks for supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -465311,11 +463042,11 @@ { "id": 2962, "notes": "Blossom gets her supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465360,7 +463091,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465401,14 +463132,14 @@ { "id": 2964, "notes": "Unicorn sends you back to Nerida", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9, + "max_repeats": 9, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -465429,14 +463160,14 @@ { "id": 2965, "notes": "Puck sends you to Jungle Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -465457,7 +463188,7 @@ { "id": 2966, "notes": "You found an Orchid! #1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -465465,7 +463196,7 @@ "y": 320 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465496,7 +463227,7 @@ { "id": 2967, "notes": "You found an Orchid #2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -465504,7 +463235,7 @@ "y": 323 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465535,7 +463266,7 @@ { "id": 2968, "notes": "You found an Orchid #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -465543,7 +463274,7 @@ "y": 328 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465574,7 +463305,7 @@ { "id": 2969, "notes": "You found an Orchid #4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -465582,7 +463313,7 @@ "y": 322 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465613,7 +463344,7 @@ { "id": 2970, "notes": "You found an Orchid #5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -465621,7 +463352,7 @@ "y": 323 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465652,7 +463383,7 @@ { "id": 2971, "notes": "You found an Orchid #6", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -465660,7 +463391,7 @@ "y": 332 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465691,14 +463422,14 @@ { "id": 2972, "notes": "Gretel's little chore", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -465719,11 +463450,11 @@ { "id": 2973, "notes": "Gretel give you the trays", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465760,11 +463491,11 @@ { "id": 2974, "notes": "Oberon gets his goodies.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465794,12 +463525,10 @@ "id": 2975, "notes": "Titania receives her orchids and thanks you ", "title": "Oberon's Midsummer Celebration", - "requires_questid_npc": [ - 2963 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465826,7 +463555,9 @@ "success_npc_chat": "Thou shall be rewarded for all thy hard work on our behalf. Here, accept these baubles as my gift. Now thou must leave our gathering, Farewell, mortal, ever shall thee be blessed, now trip away, no more to stay!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2963 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "BklynFilly", @@ -465836,14 +463567,14 @@ { "id": 2976, "notes": "Titania sends you away from the Mystic Forest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -465865,12 +463596,10 @@ "id": 2977, "notes": "Pyramid Labyrinth Quest #10 Torrid Isle. S of docks.", "title": "Pyramid Treasure #10", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -465899,11 +463628,11 @@ { "id": 2978, "notes": "Janice gives ginger ale", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 4, + "max_repeats": 4, "money_cost": 0, "items_required": [ { @@ -465932,14 +463661,14 @@ { "id": 2979, "notes": "You agree to find a spinning wheel for Janice - collect $6k", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 6000, "items_gained": [], "quest_points": 0, @@ -465960,14 +463689,14 @@ { "id": 2980, "notes": "Laurence asks you for help with his turban", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -465988,14 +463717,14 @@ { "id": 3000, "notes": "Agree to find items for Anabelle ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -466016,14 +463745,14 @@ { "id": 2981, "notes": "Agree to help Felicia find her mom", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -466044,17 +463773,15 @@ { "id": 2982, "notes": "Find Felicia's Mom", - "title": "", - "requires_questid_npc": [ - 2981 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 622, "y": 468 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -466068,7 +463795,9 @@ "success_npc_chat": "You found Felicia's mom.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2981 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -466082,10 +463811,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 4000, "items_gained": [], "quest_points": 25, @@ -466106,14 +463835,14 @@ { "id": 2984, "notes": "Maude emerges from the pile of papers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -466134,11 +463863,11 @@ { "id": 2985, "notes": "Beatrice Bibliophile helps you with Laurence", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -466150,7 +463879,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -466171,11 +463900,11 @@ { "id": 2986, "notes": "Liza gives you a modern spinning wheel", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -466183,7 +463912,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -466204,11 +463933,11 @@ { "id": 2987, "notes": "Albert Junker sells you the linen", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 200, "items_required": [ { @@ -466238,12 +463967,10 @@ "id": 2988, "notes": "Give Spinning Wheel to Janice ", "title": "Maude's Modern Spinning Wheel", - "requires_questid_npc": [ - 2490 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 6000, "items_required": [ { @@ -466262,7 +463989,9 @@ "success_npc_chat": "Please keep the $6000! It's worth it to me! The family tradition means so much more to us than mere money. I was going to give you this extra, too, for your trouble. Thank you so much, fer shur!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2490 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Vetiver", @@ -466272,11 +464001,11 @@ { "id": 2989, "notes": "Laurence gets the book and instructions", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -466313,7 +464042,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -466343,12 +464072,10 @@ "id": 2991, "notes": "Sandcastle Moat #20 north end Torrid", "title": "Sandcastle Moat #20", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -466372,14 +464099,14 @@ { "id": 2992, "notes": "Swim to Dust Isle from Torrid Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -466400,14 +464127,14 @@ { "id": 2993, "notes": "Vivian asks for an inspiring item", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -466428,22 +464155,22 @@ { "id": 2994, "notes": "Chained action for checking an item with Vivian (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -466456,11 +464183,11 @@ { "id": 2995, "notes": "Show Vivian a little lizard", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -466493,14 +464220,14 @@ { "id": 3004, "notes": "Emmett Perl sends you to Rain Isle the first time", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -466521,11 +464248,11 @@ { "id": 2996, "notes": "Show Vivian a scorpion", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -466558,11 +464285,11 @@ { "id": 2997, "notes": "Show Vivian a diamond", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -466595,11 +464322,11 @@ { "id": 2998, "notes": "Show Vivian a coconut", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -466636,10 +464363,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 25, @@ -466664,7 +464391,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -466701,14 +464428,14 @@ { "id": 3002, "notes": "Agree to find Grasshoppers and Worms for Anabelle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -466730,12 +464457,10 @@ "id": 3003, "notes": "Give Anabelle the Grasshoppers and Earthworms", "title": "Eaglets' Dinner", - "requires_questid_npc": [ - 3001 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -466762,7 +464487,9 @@ "success_npc_chat": "Hawwk! Hawwwaakk! (She nods her head in thanks and drops something down from her nest for you.)", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3001 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "CheshireKitty", @@ -466772,14 +464499,14 @@ { "id": 3005, "notes": "Emmett Perl sends you to Rain Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -466800,14 +464527,14 @@ { "id": 3006, "notes": "Leontine sends you to Vine Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -466828,11 +464555,11 @@ { "id": 3007, "notes": "Beginning of Leontine's quest.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Look, I'm not going through all this again. Get lost!", @@ -466842,7 +464569,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Never you mind. You're not them. Now scat!", "requires_awardid": null, "requires_questid_completed": [], @@ -466856,11 +464583,11 @@ { "id": 3008, "notes": "Agree to help Danner get boat supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "The best rope is made with vines found on this 'ere isle. Go ask one of the local residents for some help findin' some.", @@ -466884,14 +464611,14 @@ { "id": 3009, "notes": "Go find some vines", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -466912,7 +464639,7 @@ { "id": 3010, "notes": "Vine #1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -466920,7 +464647,7 @@ "y": 222 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -466936,7 +464663,7 @@ "warp_x": null, "warp_y": null, "success_message": "You look up into the trees and cut down a long vine.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -466951,7 +464678,7 @@ { "id": 3011, "notes": "Vine #2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -466959,7 +464686,7 @@ "y": 223 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -466975,7 +464702,7 @@ "warp_x": null, "warp_y": null, "success_message": "You look up into the trees and cut down a long vine.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -466990,7 +464717,7 @@ { "id": 3012, "notes": "Vine #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -466998,7 +464725,7 @@ "y": 224 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467014,7 +464741,7 @@ "warp_x": null, "warp_y": null, "success_message": "You look up into the trees and cut down a long vine.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -467029,7 +464756,7 @@ { "id": 3013, "notes": "Vine #4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -467037,7 +464764,7 @@ "y": 221 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467053,7 +464780,7 @@ "warp_x": null, "warp_y": null, "success_message": "You look up into the trees and cut down a long vine.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -467068,7 +464795,7 @@ { "id": 3014, "notes": "Vine #5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -467076,7 +464803,7 @@ "y": 220 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467092,7 +464819,7 @@ "warp_x": null, "warp_y": null, "success_message": "You look up into the trees and cut down a long vine.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -467107,11 +464834,11 @@ { "id": 3015, "notes": "Give vines to Esther", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467144,11 +464871,11 @@ { "id": 3016, "notes": "Agree to run errand for Jada", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467156,7 +464883,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -467181,7 +464908,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467189,7 +464916,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 500, "items_gained": [], "quest_points": 25, @@ -467210,14 +464937,14 @@ { "id": 3044, "notes": "Agree to find button for Icy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 50, + "max_repeats": 50, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -467242,7 +464969,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467275,14 +465002,14 @@ { "id": 3019, "notes": "Robinson wants fruit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -467307,7 +465034,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467344,14 +465071,14 @@ { "id": 3021, "notes": "Agree to help Cheeky", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -467372,14 +465099,14 @@ { "id": 3022, "notes": "Matata okays Cheeky for the guild", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -467400,14 +465127,14 @@ { "id": 3023, "notes": "Cheeky not a monkey??!!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -467429,12 +465156,10 @@ "id": 3024, "notes": "Det. Cheekster gives reward. ", "title": "More Monkey Business", - "requires_questid_npc": [ - 2606 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467442,7 +465167,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 100, @@ -467453,7 +465178,9 @@ "success_npc_chat": "Thanks again for all of your help. Here's a little something special for your troubles.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2606 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Nuova", @@ -467463,14 +465190,14 @@ { "id": 3025, "notes": "Agree to find wendy for Griffin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -467491,7 +465218,7 @@ { "id": 3026, "notes": "Find Wendy's footprints leading to Eartip forest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -467499,7 +465226,7 @@ "y": 176 }, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -467525,14 +465252,14 @@ { "id": 3027, "notes": "Wendy asks for her uncle's ladder.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -467553,11 +465280,11 @@ { "id": 3028, "notes": "Recieve ladder from Griffin for Wendy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467565,7 +465292,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -467586,11 +465313,11 @@ { "id": 3029, "notes": "You bring Wendy the ladder and get her kite out of the tree for her.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467619,11 +465346,11 @@ { "id": 3030, "notes": "Wendy gives you back the ladder and you both go back to her Uncle Griffin's", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467631,7 +465358,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -467656,7 +465383,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467685,14 +465412,14 @@ { "id": 3032, "notes": "Weekday asks for help", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -467713,11 +465440,11 @@ { "id": 3148, "notes": "Agree to get three honeycombs for Integra", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, never mind.", @@ -467741,11 +465468,11 @@ { "id": 3033, "notes": "Clarissa needs bottles.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Uhm... what?", @@ -467769,11 +465496,11 @@ { "id": 3034, "notes": "Tony Grocer sells you a crate of empty bottles.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 2000, "items_required": [ { @@ -467802,11 +465529,11 @@ { "id": 3035, "notes": "Buy 24 gummed labels from Trayja", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 600, "items_required": [ { @@ -467835,11 +465562,11 @@ { "id": 3036, "notes": "Give Clarissa the bottles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467868,11 +465595,11 @@ { "id": 3037, "notes": "Give Clarissa the labels", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467905,7 +465632,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Not yet, sorry. There's still something you need to find.", @@ -467932,11 +465659,11 @@ { "id": 3039, "notes": "Agree to get butterflies to replace the ones Nedrick's dog ate.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, forget it.", @@ -467960,7 +465687,7 @@ { "id": 3040, "notes": "Find Butterfly No. 1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -467968,7 +465695,7 @@ "y": 79 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -467999,7 +465726,7 @@ { "id": 3041, "notes": "Find Butterfly No. 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -468007,7 +465734,7 @@ "y": 75 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468038,7 +465765,7 @@ { "id": 3042, "notes": "Find Butterfly No. 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -468046,7 +465773,7 @@ "y": 79 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468081,7 +465808,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468110,7 +465837,7 @@ { "id": 3045, "notes": "Find Icy's button", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -468118,7 +465845,7 @@ "y": 30 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468153,7 +465880,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468161,7 +465888,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1500, "items_gained": [], "quest_points": 75, @@ -468182,14 +465909,14 @@ { "id": 3047, "notes": "Icy Sends you to Icicle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -468210,14 +465937,14 @@ { "id": 3048, "notes": "Icy sends you back to Snow", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -468239,12 +465966,10 @@ "id": 3049, "notes": "Sandcastle Moat #21 Polar Isle s of Olivia's", "title": "Sandcastle Moat #21", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Sandcastle Moat!", @@ -468268,14 +465993,14 @@ { "id": 3050, "notes": "Agree to ask Ted his pie order for Olivia.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -468296,14 +466021,14 @@ { "id": 3051, "notes": "Find out Ted's pie order for Olivia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -468324,14 +466049,14 @@ { "id": 3052, "notes": "Tell Olivia Ted's Pie order.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -468352,14 +466077,14 @@ { "id": 3053, "notes": "Gather Blueberries for Olivia.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -468380,11 +466105,11 @@ { "id": 3054, "notes": "Bring Olivia 15 blueberries", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468413,11 +466138,11 @@ { "id": 3055, "notes": "Take the pie back to ted.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468425,7 +466150,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -468446,11 +466171,11 @@ { "id": 3056, "notes": "Give Ted the pie from olivia.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468483,10 +466208,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 25, @@ -468507,14 +466232,14 @@ { "id": 3058, "notes": "Michelle tells you that she wants a gift from Just Gus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -468522,7 +466247,7 @@ "warp_x": null, "warp_y": null, "success_message": "Michelle told you she expects a gift from Just Gus before she will accept his apology.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -468535,11 +466260,11 @@ { "id": 3059, "notes": "Agree to find abacus for Alexi", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I can hardly wait to be reunited with my abacus. Please hurry!", @@ -468563,7 +466288,7 @@ { "id": 3060, "notes": "Find Alexi's Abacus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -468571,7 +466296,7 @@ "y": 237 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468602,11 +466327,11 @@ { "id": 3171, "notes": "3rd pig gives you his pallet of adobe bricks", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468614,7 +466339,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -468639,7 +466364,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468668,11 +466393,11 @@ { "id": 3062, "notes": "Gretel gives you a plate of cookies to give to Mother Goose", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468680,7 +466405,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -468705,7 +466430,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468738,11 +466463,11 @@ { "id": 3064, "notes": "Leontine sends you for party favors.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, never mind. You're not them anyway!", @@ -468766,11 +466491,11 @@ { "id": 3065, "notes": "Sasha Stacker sells you an ancient box of unfashionable party favors.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 100, "items_required": [ { @@ -468803,7 +466528,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468836,14 +466561,14 @@ { "id": 3067, "notes": "Agree to talk to Elsa and find out what pie she ordered for Olivia.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -468864,14 +466589,14 @@ { "id": 3068, "notes": "Ask Elsa her pie order.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -468892,14 +466617,14 @@ { "id": 3069, "notes": "Tell Olivia, Elsa's order", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -468920,14 +466645,14 @@ { "id": 3070, "notes": "Gather apples for Olivia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -468948,11 +466673,11 @@ { "id": 3071, "notes": "Give olivia the apples", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468981,11 +466706,11 @@ { "id": 3072, "notes": "Take Elsa her pie from Olivia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -468993,7 +466718,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -469014,11 +466739,11 @@ { "id": 3073, "notes": "Give Elsa her pie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -469048,15 +466773,13 @@ "id": 3074, "notes": "Return to Olivia for reward ", "title": "Olivia's Pies #2", - "requires_questid_npc": [ - 3057 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3500, "items_gained": [], "quest_points": 25, @@ -469067,7 +466790,9 @@ "success_npc_chat": "That's wonderful! Here you are, please take this as a reward. Are you ready for my last order?", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3057 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "CheshireKitty", @@ -469077,14 +466802,14 @@ { "id": 3075, "notes": "Agree to ask Valarie her pie order for Olivia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -469105,14 +466830,14 @@ { "id": 3076, "notes": "Ask Valarie her pie order", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -469133,14 +466858,14 @@ { "id": 3077, "notes": "Tell Olivia Valarie's order.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -469161,14 +466886,14 @@ { "id": 3078, "notes": "agree to talk to Ben Burlap for olivia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -469189,11 +466914,11 @@ { "id": 3079, "notes": "Receive cherries from Ben Burlap", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -469201,7 +466926,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -469222,11 +466947,11 @@ { "id": 3084, "notes": "Give Able, the pigeon, to Colina in Ashton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -469255,11 +466980,11 @@ { "id": 3080, "notes": "Give Olivia the cherries.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -469288,11 +467013,11 @@ { "id": 3081, "notes": "Agree to take Valarie her pie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -469300,7 +467025,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -469321,11 +467046,11 @@ { "id": 3082, "notes": "Give Valarie her pic.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -469355,15 +467080,13 @@ "id": 3083, "notes": "Return to Olivia for reward", "title": "Olivia's Pies #3", - "requires_questid_npc": [ - 3074 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 50, @@ -469374,7 +467097,9 @@ "success_npc_chat": "Oh, thank you! That means I'm all caught up. Since you were such a big help, please take this as a reward.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3074 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "CheshireKitty", @@ -469384,11 +467109,11 @@ { "id": 3085, "notes": "Goodwin gives you four trained homing pigeons to release at various spots for him.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -469417,11 +467142,11 @@ { "id": 3086, "notes": "Give Baker, the pigeon, to Dolly in Hotton.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -469450,11 +467175,11 @@ { "id": 3087, "notes": "Give Charlie, the pigeon, to Pablo on Art Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -469483,11 +467208,11 @@ { "id": 3088, "notes": "Give Delta, the pigeon, to Caren in Tropicton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -469520,7 +467245,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You didn't do it right. You still have to deliver pigeons. Oh, well...", @@ -469544,11 +467269,11 @@ { "id": 3090, "notes": "Esther makes a suggestion ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Look on the next island, I think you'll find something there.", @@ -469572,11 +467297,11 @@ { "id": 3091, "notes": "Emmett makes a suggestion", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Come to think of it, I noticed a really nice uninhabited tree house on this very island. It's near the southeast tip. Take a look and see if it will do.", @@ -469600,14 +467325,14 @@ { "id": 3092, "notes": "Danner makes a suggestion", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -469628,11 +467353,11 @@ { "id": 3093, "notes": "Weekday thanks you and sends you to talk to Rob.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -469640,7 +467365,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -469662,12 +467387,10 @@ "id": 3094, "notes": "Robinson thanks you ", "title": "Weekday's Request", - "requires_questid_npc": [ - 3020 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -469675,7 +467398,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 100, @@ -469686,7 +467409,9 @@ "success_npc_chat": "Thank you so much! I'll start out right away. Please accept this as a token of my appreciation.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3020 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "BklynFilly", @@ -469696,14 +467421,14 @@ { "id": 3095, "notes": "Agree to get chocolate and strawberries for Eli Grits", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -469724,14 +467449,14 @@ { "id": 3096, "notes": "Ben Burlap tells you that he will sell you chocolate for $1000", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -469752,14 +467477,14 @@ { "id": 3097, "notes": "Nana Knutkake tells you that she will sell you chocolate for $1500", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -469780,11 +467505,11 @@ { "id": 3098, "notes": "Ben Burlap sells you the chocolate", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -469813,11 +467538,11 @@ { "id": 3099, "notes": "Nana Knutkake sells you the chocolate", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1500, "items_required": [ { @@ -469846,22 +467571,22 @@ { "id": 3100, "notes": "You have bought a brick of chocolate (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -469878,7 +467603,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -469911,22 +467636,22 @@ { "id": 3102, "notes": "Hint on where to find home for Robinson/Weekday (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -469939,11 +467664,11 @@ { "id": 3103, "notes": "Octavius would like a giant coconut.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I wonder who wrote the Book of Love?", @@ -469971,7 +467696,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470004,11 +467729,11 @@ { "id": 3105, "notes": "Breezy wants a ruby necklace.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "No, not really, I was just kidding.", @@ -470036,7 +467761,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470065,7 +467790,7 @@ { "id": 3107, "notes": "Meet Farley, a ventriloquist's dummy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -470073,7 +467798,7 @@ "y": 55 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake carefully, but find nothing interesting.", @@ -470099,14 +467824,14 @@ { "id": 3108, "notes": "Agree to help Edgar", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -470127,14 +467852,14 @@ { "id": 3110, "notes": "Agree to find Farley", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -470162,7 +467887,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470191,14 +467916,14 @@ { "id": 3111, "notes": "Stinky agrees to help look for Farley", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -470219,14 +467944,14 @@ { "id": 3112, "notes": "Vincent tells you where to search for Farley", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -470247,14 +467972,14 @@ { "id": 3113, "notes": "Agree to pick up oil for Merry Comber", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -470275,11 +468000,11 @@ { "id": 3114, "notes": "Pick up oil from Betsy Burlap for Merry Comber", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -470308,11 +468033,11 @@ { "id": 3153, "notes": "Pony Express Agree to delivery #26", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470341,11 +468066,11 @@ { "id": 3116, "notes": "Arbuckle wants 5 peacock feathers.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Yes, five. Yes.", @@ -470370,12 +468095,10 @@ "id": 3117, "notes": "Give Arbuckle 5 peacock feathers", "title": "Arbuckle's Feathers", - "requires_questid_npc": [ - 697 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470394,7 +468117,9 @@ "success_npc_chat": "Oh, yes, perfect. Arranged in a nice vase in a pyramid, yes, perfect, yes. Thank you so much! Have a reward, you kind person, you!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 697 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "SpottedRose", @@ -470404,11 +468129,11 @@ { "id": 3118, "notes": "Waverly Wants Fish", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, forget it.", @@ -470432,11 +468157,11 @@ { "id": 3120, "notes": "Dominique wants a bottle with a message in it that she saw earlier.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I forgot what I was going to say.", @@ -470461,12 +468186,10 @@ "id": 3119, "notes": "Bring Waverly his fish. ", "title": "Waverly's New Hobby", - "requires_questid_npc": [ - 97 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470489,7 +468212,9 @@ "success_npc_chat": "Oooo, ain't they pretty! I'll just put them here in the water, there you go, and thank you! This is going to be a great hobby! Here's a bit of pay for your trouble. Goodbye!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 97 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "SpottedRose", @@ -470499,7 +468224,7 @@ { "id": 3121, "notes": "Find a bottle with a message in.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -470507,7 +468232,7 @@ "y": 172 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470522,7 +468247,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Raking carefully in the sand, you hear a CLINK, and find an old, brown bottle, stoppered with a cork. You can hear paper inside when you shake it.", "requires_awardid": null, "requires_questid_completed": [], @@ -470537,12 +468262,10 @@ "id": 3122, "notes": "Dominique pays you for finding the story.", "title": "Another Land of Horses?", - "requires_questid_npc": [ - 36 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470561,7 +468284,9 @@ "success_npc_chat": "I wonder who the person who sent this was. It's so... tantalizing! Oh, well, please accept this reward for getting the bottle for me. And my thanks!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 36 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "SpottedRose", @@ -470571,14 +468296,14 @@ { "id": 3123, "notes": "Agree to help Stacie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -470599,7 +468324,7 @@ { "id": 3124, "notes": "Find venus fly trap #1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -470607,7 +468332,7 @@ "y": 162 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470638,7 +468363,7 @@ { "id": 3125, "notes": "Find venus fly trap #2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -470646,7 +468371,7 @@ "y": 163 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470677,7 +468402,7 @@ { "id": 3126, "notes": "Find venus fly trap #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -470685,7 +468410,7 @@ "y": 164 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470716,7 +468441,7 @@ { "id": 3127, "notes": "Find venus fly trap #4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -470724,7 +468449,7 @@ "y": 163 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470755,7 +468480,7 @@ { "id": 3128, "notes": "Find venus fly trap #5 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -470763,7 +468488,7 @@ "y": 164 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470794,7 +468519,7 @@ { "id": 3129, "notes": "Find venus fly trap #6 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -470802,7 +468527,7 @@ "y": 165 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470837,7 +468562,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470874,14 +468599,14 @@ { "id": 3131, "notes": "You agree to help Heather", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -470903,12 +468628,10 @@ "id": 3132, "notes": "You give Heather the flies ", "title": "Heather's Quest for Flies", - "requires_questid_npc": [ - 3130 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -470927,7 +468650,9 @@ "success_npc_chat": "I know this was an unsavory task. Please take this generous reward.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3130 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "Desertmorn", @@ -470937,16 +468662,14 @@ { "id": 3133, "notes": "You agree to find Heather's niece.", - "title": "", - "requires_questid_npc": [ - 3132 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -470957,7 +468680,9 @@ "success_npc_chat": "I would be so grateful if you could. I can't leave the docks and I'm worried sick about her.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3132 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Desertmorn", @@ -470967,13 +468692,11 @@ { "id": 3134, "notes": "You agree to get Stacie some help", - "title": "", - "requires_questid_npc": [ - 3130 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Hurry up, okay?", @@ -470987,7 +468710,9 @@ "success_npc_chat": "Hurry up, okay?", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3130 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Desertmorn", @@ -470997,27 +468722,27 @@ { "id": 3136, "notes": "tracking only for Stacie", - "title": "", - "requires_questid_npc": [ - 3130 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3130 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Desertmorn", @@ -471028,15 +468753,13 @@ "id": 3135, "notes": "You tell Heather where Stacie is ", "title": "Heather's Missing Niece", - "requires_questid_npc": [ - 3132 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 6000, "items_gained": [], "quest_points": 125, @@ -471047,7 +468770,9 @@ "success_npc_chat": "I'm not letting that girl out of my sights once she gets back here. I am indebted to you. Please take this reward.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3132 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Desertmorn", @@ -471057,16 +468782,14 @@ { "id": 3137, "notes": "You agree to get Heather three hooded pitcher plants", - "title": "", - "requires_questid_npc": [ - 3135 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -471077,7 +468800,9 @@ "success_npc_chat": "Terrific. I would be thrilled if you could get me three Hooded Pitcher Plants. They are rather small, but very distinct-looking.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3135 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Desertmorn", @@ -471087,7 +468812,7 @@ { "id": 3138, "notes": "Find Hooded Pitcher Plant#1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -471095,7 +468820,7 @@ "y": 151 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471126,7 +468851,7 @@ { "id": 3139, "notes": "Find Hooded Pitcher Plant#2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -471134,7 +468859,7 @@ "y": 148 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471165,7 +468890,7 @@ { "id": 3140, "notes": "Find Hooded Pitcher Plant#3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -471173,7 +468898,7 @@ "y": 146 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471205,12 +468930,10 @@ "id": 3141, "notes": "Give Heather 3 Plants", "title": "Heather's Pitcher Plants", - "requires_questid_npc": [ - 3135 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471229,7 +468952,9 @@ "success_npc_chat": "Thank you so much. These are fine, healthy specimens. Take this as a reward.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3135 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Desertmorn", @@ -471239,14 +468964,14 @@ { "id": 3142, "notes": "You agree to find Rick's Windchimes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -471267,14 +468992,14 @@ { "id": 3143, "notes": "You annoy the Bridge Troll", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -471282,7 +469007,7 @@ "warp_x": 650, "warp_y": 113, "success_message": "Yikes! That wasn't very nice of the troll!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -471295,27 +469020,27 @@ { "id": 3146, "notes": "tracking only for Stacie", - "title": "", - "requires_questid_npc": [ - 3130 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3130 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Desertmorn", @@ -471329,7 +469054,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471358,11 +469083,11 @@ { "id": 3145, "notes": "You trade for the wind chimes.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471395,14 +469120,14 @@ { "id": 3147, "notes": "You agree to get Troll some copper", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -471427,7 +469152,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471456,14 +469181,14 @@ { "id": 3150, "notes": "Agree to get a new flag for BabyBear", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -471484,11 +469209,11 @@ { "id": 3151, "notes": "MarianneLookitup gives you a leftover flag.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471518,12 +469243,10 @@ "id": 3152, "notes": "Give BabyBear a new flag.", "title": "Baby Bear's Lost Toy", - "requires_questid_npc": [ - 2376 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471550,7 +469273,9 @@ "success_npc_chat": "YAAAAAAAYYY! (Baby Bear reaches out for the flag and immediately begins hoisting and lowering it. Then she turns around, scoops up some silver linings and sparkling feathers, and gives them to you.) Tagoooo!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2376 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "SpottedRose", @@ -471560,11 +469285,11 @@ { "id": 3154, "notes": "Pony Express completed delivery #26 Cosmos/Sunshine", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471597,11 +469322,11 @@ { "id": 3155, "notes": "Pony Express Agree to delivery #27", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471630,11 +469355,11 @@ { "id": 3156, "notes": "Pony Express Completed delivery #27 Wesley/Hotton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471663,11 +469388,11 @@ { "id": 3157, "notes": "Pony Express Agree to delivery #28", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471696,11 +469421,11 @@ { "id": 3158, "notes": "Pony Express Completed delivery #28 Cailyn/Treeton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471733,11 +469458,11 @@ { "id": 3159, "notes": "Pony Express Agree to delivery #29", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471766,11 +469491,11 @@ { "id": 3160, "notes": "Pony Express Completed delivery #29 Baily/Lilac", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471799,11 +469524,11 @@ { "id": 3162, "notes": "Pony Express Completed delivery #30 Jada/Frigid Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471832,11 +469557,11 @@ { "id": 3161, "notes": "Pony Express Agree to delivery #30", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471865,11 +469590,11 @@ { "id": 3164, "notes": "Get bits from Ferrel Ironman", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471881,7 +469606,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -471906,7 +469631,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -471939,14 +469664,14 @@ { "id": 3166, "notes": "Agree to ask Jungle Isle people about Rashida's missing chess piece", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -471967,22 +469692,22 @@ { "id": 3167, "notes": "Orson Shells tells you Vern played chess after him (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -471995,22 +469720,22 @@ { "id": 3168, "notes": "Vern tells you his friend, Rebecca, helped him put away the game. (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -472023,11 +469748,11 @@ { "id": 3169, "notes": "Get the chess piece from Rebecca", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472035,7 +469760,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -472060,7 +469785,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472089,11 +469814,11 @@ { "id": 3172, "notes": "Give adobe bricks to Postmaster General and receive red bricks", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472127,12 +469852,10 @@ "id": 3173, "notes": "Give 3rd pig his red bricks", "title": "The Third Little Pig's Brick Mix-Up", - "requires_questid_npc": [ - 1461 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472151,7 +469874,9 @@ "success_npc_chat": "Wow, they do look just like the ones on my home, don't they? I'm glad the Postmaster admitted his mistake and fixed it. Some places don't do that, you know, and insist you filled out the order form wrong.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1461 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "OkamiFreak", @@ -472161,11 +469886,11 @@ { "id": 3174, "notes": "DaisyGerbera wants you to bring her five peacock feathers for an experiment.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, forget it, then. I thought you were purple. Never mind.", @@ -472190,12 +469915,10 @@ "id": 3175, "notes": "Give Daisy her peacock feathers.", "title": "Daisy Gerbera's Bright Idea", - "requires_questid_npc": [ - 20 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472214,7 +469937,9 @@ "success_npc_chat": "Oh, yes! Yes, yes indeed, yes, these will do very nicely. Here's a bit of a reward for you, now don't spend it on foolish things like flowers from someone else's shop! Ta-ta!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 20 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "SpottedRose", @@ -472224,11 +469949,11 @@ { "id": 3176, "notes": "Agree to bring back items for Princess Pookie.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472240,7 +469965,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -472261,11 +469986,11 @@ { "id": 3177, "notes": "Second set of things to bring back for Pookie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472277,15 +470002,15 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -472298,11 +470023,11 @@ { "id": 3178, "notes": "Third set of things to bring back for Pookie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472314,15 +470039,15 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -472335,11 +470060,11 @@ { "id": 3179, "notes": "Return the Miniature Horse to Holly", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472347,7 +470072,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -472368,11 +470093,11 @@ { "id": 3180, "notes": "Give Jayne back his knit hat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472380,7 +470105,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -472401,11 +470126,11 @@ { "id": 3181, "notes": "Give Rodney back his wacky tube man", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472413,7 +470138,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1500, "items_gained": [], "quest_points": 0, @@ -472434,11 +470159,11 @@ { "id": 3182, "notes": "Give Felton back the dino bone.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472446,7 +470171,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -472467,11 +470192,11 @@ { "id": 3183, "notes": "Give Easter Bunny back the Easter Egg", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472479,7 +470204,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -472500,11 +470225,11 @@ { "id": 3184, "notes": "Return the Whip to Witherton Jones", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472516,7 +470241,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -472546,7 +470271,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472585,14 +470310,14 @@ { "id": 3186, "notes": "Agree to pick up a dog toy for Mikko", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -472613,11 +470338,11 @@ { "id": 3189, "notes": "Agree to get some orange tree saplings for Charla Mae", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I'm sorry, but it seems you're not quite adventurous enough to visit Lava Isle yet. Come back when you have completed 25% of your quests, please.", @@ -472641,11 +470366,11 @@ { "id": 3187, "notes": "Get dog toy from Iggy Chewtoy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472653,7 +470378,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -472675,12 +470400,10 @@ "id": 3188, "notes": "Give Mikko the dog toy he ordered and get reward ", "title": "Barney's Birthday Present", - "requires_questid_npc": [ - 656 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472699,7 +470422,9 @@ "success_npc_chat": "Oh, you even had it wrapped! (He peeks through the paper covering the toy and grins.) I just know Barney will love it! Thank you so much for picking this up. Here, take this for your trouble.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 656 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "OkamiFreak", @@ -472709,11 +470434,11 @@ { "id": 3190, "notes": "Pay $300 to find 3 orange tree saplings from Bowen's orchard", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 300, "items_required": [], "fail_npc_chat": "Sorry, but you don't have the $300 I need for the saplings. Come back when you have the money.", @@ -472737,7 +470462,7 @@ { "id": 3191, "notes": "Dig up 1st orange sapling", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -472745,7 +470470,7 @@ "y": 334 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472776,7 +470501,7 @@ { "id": 3192, "notes": "Dig up 2nd orange sapling", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -472784,7 +470509,7 @@ "y": 335 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472815,7 +470540,7 @@ { "id": 3193, "notes": "Dig up 3rd orange sapling", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -472823,7 +470548,7 @@ "y": 336 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472858,7 +470583,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472887,14 +470612,14 @@ { "id": 3195, "notes": "Atreyu asks you to find a vet to help Falcor", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -472915,11 +470640,11 @@ { "id": 3196, "notes": "Get Falcor's medicine from Caren Hart", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -472927,7 +470652,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -472948,11 +470673,11 @@ { "id": 3197, "notes": "Dr. Heimlich points you to the Tropicton vet for Falcor's medicine", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I do. Try seeing the vet in Tropicton. She'll probably be able to help, since she's closest to the Cloud Isles and its mythical creatures.", @@ -472977,12 +470702,10 @@ "id": 3198, "notes": "Give Atreyu the medicine for Falcor ", "title": "The Seemingly Neverending Illness", - "requires_questid_npc": [ - 743 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473001,7 +470724,9 @@ "success_npc_chat": "(He takes the box and reads the instructions.) Oh, this should work wonders on my old friend! I'll give this to him right away. Thank you ever so much for your kindness!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 743 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "OkamiFreak", @@ -473011,14 +470736,14 @@ { "id": 3199, "notes": "Agree to get more treats for Jaxon Whanacrackur's pet store", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -473039,11 +470764,11 @@ { "id": 3200, "notes": "Luke gives you box of treats for Hotton Pets", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473051,7 +470776,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -473076,7 +470801,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473105,11 +470830,11 @@ { "id": 3202, "notes": "Max Attire wants a book on Fruit Bats from the AppleTon Library", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473138,11 +470863,11 @@ { "id": 3206, "notes": "Brock Limestone asks you to get him two meteorites.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Ow! I sat on my keys.", @@ -473166,11 +470891,11 @@ { "id": 3203, "notes": "Librarian bemoans the fact that libraries are always the last to get new books.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "See that kid over there? She just slapped me with a fish!", @@ -473194,11 +470919,11 @@ { "id": 3204, "notes": "Flo Stemson gives you a copy of her newly published book.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473231,7 +470956,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473264,17 +470989,15 @@ { "id": 3207, "notes": "Dig up the Nickel-Iron meteorite on Icicle Isle", - "title": "", - "requires_questid_npc": [ - 3206 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 720, "y": 29 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473289,11 +471012,12 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You dig very carefully, looking for dark spots in the bright, white snow. You soon uncover a peach-pit sized nickel-iron meteorite, and take it with you.", "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 3206, 3206 ], "hide_reply_on_fail": false, @@ -473305,17 +471029,15 @@ { "id": 3208, "notes": "Dig up the carbonaceous chondrite on Ice Isle", - "title": "", - "requires_questid_npc": [ - 3206 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 594, "y": 50 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473335,6 +471057,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 3206, 3206 ], "hide_reply_on_fail": false, @@ -473346,11 +471069,11 @@ { "id": 3212, "notes": "Agree to get paint for splattering from Pablo for Basil Snoremore", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I changed my mind. I don't need paint anymore. Sorry.", @@ -473374,11 +471097,11 @@ { "id": 3209, "notes": "Give Snow Isle meteorites to Brock Limestone", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473415,7 +471138,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473444,7 +471167,7 @@ { "id": 3211, "notes": "Dig up the Tektite", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -473452,7 +471175,7 @@ "y": 474 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473467,7 +471190,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Digging carefully and sifting the sand, you find a teardrop-shaped black tektite!", "requires_awardid": null, "requires_questid_completed": [], @@ -473483,11 +471206,11 @@ { "id": 3213, "notes": "Get paint for Basil", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473520,7 +471243,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473549,14 +471272,14 @@ { "id": 3215, "notes": "Laurence sends you out for the camel tack ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -473577,11 +471300,11 @@ { "id": 3216, "notes": "Hessa gives you the new tack", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473610,11 +471333,11 @@ { "id": 3217, "notes": "Laurence gets the tack", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473643,14 +471366,14 @@ { "id": 3218, "notes": "Laurence makes some suggestions", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -473671,7 +471394,7 @@ { "id": 3219, "notes": "Chauncey Clue #1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -473679,7 +471402,7 @@ "y": 465 }, "tracked": true, - "repeats": 50, + "max_repeats": 50, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -473706,7 +471429,7 @@ { "id": 3220, "notes": "Chauncey Clue #2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -473714,7 +471437,7 @@ "y": 456 }, "tracked": true, - "repeats": 50, + "max_repeats": 50, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -473741,7 +471464,7 @@ { "id": 3221, "notes": "Chauncey Clue #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -473749,7 +471472,7 @@ "y": 451 }, "tracked": true, - "repeats": 50, + "max_repeats": 50, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -473776,7 +471499,7 @@ { "id": 3222, "notes": "Chauncey Clue #4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -473784,7 +471507,7 @@ "y": 450 }, "tracked": true, - "repeats": 50, + "max_repeats": 50, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -473811,7 +471534,7 @@ { "id": 3223, "notes": "Chauncey Clue #5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -473819,7 +471542,7 @@ "y": 469 }, "tracked": true, - "repeats": 50, + "max_repeats": 50, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -473847,12 +471570,10 @@ "id": 3224, "notes": "Laurence rewards your efforts ", "title": "Laurence's Companion", - "requires_questid_npc": [ - 2990 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473860,7 +471581,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 150, @@ -473871,7 +471592,9 @@ "success_npc_chat": "Oh my, yes, Chauncey looks just like T.E. Lawrence's camel now! You have done a wonderful job finding him for me. Here, take this as a token of our appreciation.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2990 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "BklynFilly", @@ -473881,14 +471604,14 @@ { "id": 3225, "notes": "Chauncey agrees to go home", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -473909,11 +471632,11 @@ { "id": 3226, "notes": "Olav checks your level", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "I'm afraid you are not experienced enough....you can always come back when you've had more adventures.", @@ -473923,7 +471646,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "All of my vendors are on the main islands, but I don't know where they get their materials. You should be ready for anything.", "requires_awardid": 1, "requires_questid_completed": [], @@ -473937,11 +471660,11 @@ { "id": 3227, "notes": "Olav sends you on your way", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473949,7 +471672,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 0, @@ -473970,11 +471693,11 @@ { "id": 3228, "notes": "Greig gives you the reeds", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -473982,7 +471705,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -474003,14 +471726,14 @@ { "id": 3229, "notes": "Cedric sends you for logs", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -474031,11 +471754,11 @@ { "id": 3230, "notes": "Cedric gets his logs, you get your shingles.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474068,14 +471791,14 @@ { "id": 3231, "notes": "Genevieve sends you for red clay", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -474096,7 +471819,7 @@ { "id": 3232, "notes": "You find red clay", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -474104,7 +471827,7 @@ "y": 136 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474135,7 +471858,7 @@ { "id": 3233, "notes": "You find red clay", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -474143,7 +471866,7 @@ "y": 128 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474174,7 +471897,7 @@ { "id": 3234, "notes": "You find red clay", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -474182,7 +471905,7 @@ "y": 123 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474213,7 +471936,7 @@ { "id": 3235, "notes": "You find red clay", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -474221,7 +471944,7 @@ "y": 125 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474252,7 +471975,7 @@ { "id": 3236, "notes": "You find red clay", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -474260,7 +471983,7 @@ "y": 139 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474291,7 +472014,7 @@ { "id": 3237, "notes": "You find red clay", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -474299,7 +472022,7 @@ "y": 127 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474330,11 +472053,11 @@ { "id": 3238, "notes": "Genevieve gets her clay, you get Olav's tiles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474367,14 +472090,14 @@ { "id": 3239, "notes": "Murray sends you to Ashton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -474395,11 +472118,11 @@ { "id": 3240, "notes": "Patrick gives you the Tar Paper", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474407,7 +472130,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -474428,11 +472151,11 @@ { "id": 3241, "notes": "Olav gets his Reeds", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474461,11 +472184,11 @@ { "id": 3242, "notes": "Olav gets his Shingles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474494,11 +472217,11 @@ { "id": 3243, "notes": "Olav gets his Terra Cotta Tiles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474527,11 +472250,11 @@ { "id": 3244, "notes": "Olav gets his Tar Paper", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474561,12 +472284,10 @@ "id": 3245, "notes": "Olav gets his list back and rewards you ", "title": "Olav's Supplies", - "requires_questid_npc": [ - 2771 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474594,7 +472315,9 @@ 3243, 3244 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2771 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "BklynFilly", @@ -474604,11 +472327,11 @@ { "id": 3246, "notes": "Belinda Buckle wants an amethyst necklace.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Uhm.... I forgot.", @@ -474636,7 +472359,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474665,14 +472388,14 @@ { "id": 3248, "notes": "Cadence wants a mole trap.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -474693,11 +472416,11 @@ { "id": 3249, "notes": "Smith finds the idea of a mole trap oppressive.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "What in tarnation....", @@ -474721,14 +472444,14 @@ { "id": 3250, "notes": "Cadence wants you to ask at the food store for a barrel.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -474749,11 +472472,11 @@ { "id": 3251, "notes": "No barrels at the food store.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "What?", @@ -474781,7 +472504,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -474789,7 +472512,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 50, @@ -474810,11 +472533,11 @@ { "id": 3253, "notes": "Olav checks that you're bringing all the supplies, not just some.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have everything yet. I told you to bring it all at once! Check your list and come back once you have everything.", @@ -474824,7 +472547,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Very good, did you get all of them?", "requires_awardid": null, "requires_questid_completed": [ @@ -474842,13 +472565,11 @@ { "id": 3254, "notes": "Barbara Bookbinder Bets you $1000 that you can't answer her questions", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 1000, "items_required": [], "fail_npc_chat": "You do not have the $1000 for this challenge. Come back when you do, please!", @@ -474876,10 +472597,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 50, @@ -474900,14 +472621,14 @@ { "id": 3256, "notes": "Kelda asks you to look into her mysterious noises.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -474928,7 +472649,7 @@ { "id": 3257, "notes": "You find a clue!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -474936,7 +472657,7 @@ "y": 46 }, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look up at all the tiny details, but alas, nothing interesting.", @@ -474962,7 +472683,7 @@ { "id": 3258, "notes": "You find another clue!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -474970,7 +472691,7 @@ "y": 47 }, "tracked": true, - "repeats": 50, + "max_repeats": 50, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -474997,14 +472718,14 @@ { "id": 3259, "notes": "Kelda sends you to find the creature.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -475025,11 +472746,11 @@ { "id": 3260, "notes": "John O'Lantern gives a pumpkin for free once.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -475062,7 +472783,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -475091,14 +472812,14 @@ { "id": 3262, "notes": "No-Navel Nancy sends you for 4 seashells", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -475119,11 +472840,11 @@ { "id": 3263, "notes": "Dr Starsdottir wants hot chocolate, and lots of it.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, well, if you can't be bothered, then. Shut the door.", @@ -475147,11 +472868,11 @@ { "id": 3264, "notes": "Give Dr Starsdottir her hot chocolate.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -475184,7 +472905,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -475217,14 +472938,14 @@ { "id": 3266, "notes": "Gytha asked you to ask Esmerelda if Mrow is in her garden.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -475245,22 +472966,22 @@ { "id": 3271, "notes": "You are aware of the existence of King Phil. Tracking/timestalkedto var.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -475273,14 +472994,14 @@ { "id": 3267, "notes": "Talked to Esmerelda about Mrow.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -475305,10 +473026,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 50, @@ -475329,11 +473050,11 @@ { "id": 3269, "notes": "Gytha gives you a cup of tea", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -475341,7 +473062,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -475362,11 +473083,11 @@ { "id": 3270, "notes": "Gytha gives you a biscuit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 25, + "max_repeats": 25, "money_cost": 0, "items_required": [ { @@ -475395,11 +473116,11 @@ { "id": 3272, "notes": "Sir Az gives you his application and sends you to King Phil to petition his case.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -475407,7 +473128,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -475428,11 +473149,11 @@ { "id": 3273, "notes": "King Phil sends you back with a reply.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -475444,7 +473165,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -475466,12 +473187,10 @@ "id": 3274, "notes": "You delivered King Phil's response. ", "title": "Sir Az's Poetry Application", - "requires_questid_npc": [ - 897 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -475479,7 +473198,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 100, @@ -475490,7 +473209,9 @@ "success_npc_chat": "(He unfolds the paper eagerly, then reads King Phil's message. His brow furrows. You brace yourself for the thunderstorm... but he smiles!) Oh frabjous day, calloo! Callay! The King himself appreciaaaaa-
-Tes my work! ", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 897 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "BrightLights", @@ -475500,22 +473221,22 @@ { "id": 3275, "notes": "You are aware of the existence of Sir Az. Tracking for hinting npcs to stop hinting.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -475528,22 +473249,22 @@ { "id": 3276, "notes": "Track Humpty Dumpty (he learns Patience doesn't know him)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -475556,14 +473277,14 @@ { "id": 3282, "notes": "Beebonnet Buck sent you off for four bales of straw and ten sticks.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -475584,14 +473305,14 @@ { "id": 3277, "notes": "Beebonnet Buck asked you to go find his knitting needles.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -475612,7 +473333,7 @@ { "id": 3278, "notes": "Find birds' nest in giant palm tree, Beebonnet Buck's Missing Needles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -475620,7 +473341,7 @@ "y": 13 }, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search high and low all around, but find nothing interesting.", @@ -475631,7 +473352,7 @@ "warp_x": null, "warp_y": null, "success_message": "Looking far up into the giant palm, you see a small birds' nest filled with cheeping baby birds! They're all looking southeast down the shoreline.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -475647,14 +473368,14 @@ { "id": 3279, "notes": "Magda tells you where to find the knitting needles.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -475675,7 +473396,7 @@ { "id": 3280, "notes": "Find knitting needles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -475683,7 +473404,7 @@ "y": 21 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -475718,7 +473439,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -475730,7 +473451,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 75, @@ -475751,11 +473472,11 @@ { "id": 3283, "notes": "Levi Sugarcube sells you 4 bales of straw.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 400, "items_required": [ { @@ -475785,12 +473506,10 @@ "id": 3284, "notes": "You delivered the thatching materials. ", "title": "Beebonnet Buck's Roof Repair", - "requires_questid_npc": [ - 3281 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -475817,7 +473536,9 @@ "success_npc_chat": "(Tongue poking out of the side of his mouth, he counts the bales of straw and sticks.) Arrr, perfect! I can fix me roof like lightnin' with these. Here, take these necklaces; Magda tried to steal 'em, but I beat her off.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3281 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "BrightLights", @@ -475827,14 +473548,14 @@ { "id": 3285, "notes": "Gillian tells you to go find Rivvie the dog. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -475855,14 +473576,14 @@ { "id": 3286, "notes": "Rivvie has buried the first aid kit by a really big stick.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -475883,7 +473604,7 @@ { "id": 3287, "notes": "Dig up the first aid kit.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -475891,7 +473612,7 @@ "y": 92 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -475926,7 +473647,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -475934,7 +473655,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 75, @@ -475955,11 +473676,11 @@ { "id": 3289, "notes": "Chiropticon gives you autographed photos", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -475971,7 +473692,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -475992,7 +473713,7 @@ { "id": 3290, "notes": "You found more hoof prints", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -476000,7 +473721,7 @@ "y": 47 }, "tracked": true, - "repeats": 25, + "max_repeats": 25, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -476027,7 +473748,7 @@ { "id": 3291, "notes": "you find more hoof prints", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -476035,7 +473756,7 @@ "y": 50 }, "tracked": true, - "repeats": 25, + "max_repeats": 25, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -476062,7 +473783,7 @@ { "id": 3292, "notes": "you find more hoof prints", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -476070,7 +473791,7 @@ "y": 48 }, "tracked": true, - "repeats": 25, + "max_repeats": 25, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -476097,7 +473818,7 @@ { "id": 3293, "notes": "you find more hoof prints", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -476105,7 +473826,7 @@ "y": 47 }, "tracked": true, - "repeats": 25, + "max_repeats": 25, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -476133,12 +473854,10 @@ "id": 3294, "notes": "You give Kelda her photo and get a reward. ", "title": "Kelda's Visitor", - "requires_questid_npc": [ - 1980 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476161,7 +473880,9 @@ "success_npc_chat": "My this is an unusual picture of a moose, I hope he let's me know next time he stops by. Oh and here, please accept this little guy as a token of my appreciation.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1980 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "BrooklynFilly", @@ -476172,12 +473893,10 @@ "id": 3295, "notes": "Enzo gets his photo ", "title": "Enzo's Surprise", - "requires_questid_npc": [ - 3294 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476196,7 +473915,9 @@ "success_npc_chat": "(You give Enzo the photo and watch his eyes open wide in astonishment.) Wow! You really met Chiropticon! And he signed it too! Wait 'til I show Gina, I told her he was real! Thanks a bunch!!!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3294 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "BklynFilly", @@ -476206,14 +473927,14 @@ { "id": 3296, "notes": "Ruthie tells you about Old John.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -476234,22 +473955,22 @@ { "id": 3297, "notes": "I need to learn to hit edit, not add as new- reuse", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -476262,11 +473983,11 @@ { "id": 3298, "notes": "Old John is looking lonely. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "(John heaves a big sigh, looking despondent.)", @@ -476290,22 +474011,22 @@ { "id": 3299, "notes": "I need to learn to hit edit, not add as new- reuse", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -476318,27 +474039,27 @@ { "id": 3300, "notes": "I need to learn to hit edit, not add as new- reuse", - "title": "", - "requires_questid_npc": [ - 3298 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3298 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -476348,14 +474069,14 @@ { "id": 3301, "notes": "Ruthie sends you out for 5 apples and to go to Ollie Scooper for a toy for John", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -476376,13 +474097,11 @@ { "id": 3302, "notes": "You brought Ruthie the apples.", - "title": "", - "requires_questid_npc": [ - 3301 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476405,7 +474124,9 @@ "success_npc_chat": "Oh, these are the biggest apples I've ever seen! Please take one to all of the horses. And listen, don't start herd drama. Go in order of herd dominance. Kate first, all right? Then Dude, then Decaf, then Ellie. John last, all right?", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3301 + ], "hide_reply_on_fail": true, "difficulty": null, "author": null, @@ -476415,14 +474136,14 @@ { "id": 3303, "notes": "Ollie will sell you a red rubber ball.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -476443,11 +474164,11 @@ { "id": 3304, "notes": "You gave Old John the Red Rubber Ball.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476476,11 +474197,11 @@ { "id": 3305, "notes": "You bought a red rubber ball.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -476509,21 +474230,21 @@ { "id": 3306, "notes": "Jack O' tells you he needs help. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Well, as it happens, so I do... I've had so many pumpkins this year and so many orders that I haven't had time to deliver them all. Could you do that for me?", "requires_awardid": null, "requires_questid_completed": [], @@ -476537,11 +474258,11 @@ { "id": 3314, "notes": "Lilibeth sends you out", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476553,7 +474274,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -476574,11 +474295,11 @@ { "id": 3307, "notes": "You gave Old Kate an apple.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476607,11 +474328,11 @@ { "id": 3308, "notes": "You gave Old Dude an apple.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476640,11 +474361,11 @@ { "id": 3309, "notes": "You gave Old Decaf an apple.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476673,11 +474394,11 @@ { "id": 3310, "notes": "You gave Old Ellie an apple.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476706,11 +474427,11 @@ { "id": 3311, "notes": "You gave Old John an apple.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476739,16 +474460,14 @@ { "id": 3312, "notes": "The horses all start playing with the ball.", - "title": "", - "requires_questid_npc": [ - 3304 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -476759,7 +474478,9 @@ "success_npc_chat": "( Before you can kick the ball back, it's intercepted by Old Kate! She's come to investigate the hullaballoo. She noses the ball across the way to Old Decaf, who kicks it back to Old John, who kicks it to Old Ellie, who kicks it to Old Dude!)", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3304 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -476770,15 +474491,13 @@ "id": 3313, "notes": "Ruthie rewards you.", "title": "Ruthie's New Retiree", - "requires_questid_npc": [ - 951 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 7500, "items_gained": [], "quest_points": 100, @@ -476789,7 +474508,9 @@ "success_npc_chat": "They did? All of them? Well, I never! (She laughs.) I wish I'd seen Kate give up her dignity and kick a ball around! Well, I'm glad John's settled in. Hard on a horse to not have any friends. Thanks for helping me take care of them!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 951 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "BrightLights", @@ -476799,11 +474520,11 @@ { "id": 3315, "notes": "Betsy gets her delivery", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476836,11 +474557,11 @@ { "id": 3316, "notes": "Iris gets her delivery", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476877,7 +474598,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476910,11 +474631,11 @@ { "id": 3318, "notes": "Alton sends you to Holli", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476922,7 +474643,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -476943,11 +474664,11 @@ { "id": 3319, "notes": "Holli gets her centerpieces", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -476984,7 +474705,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -477013,11 +474734,11 @@ { "id": 3321, "notes": "Woody sends you to Appleton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -477025,7 +474746,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -477046,11 +474767,11 @@ { "id": 3322, "notes": "George gets his zoo.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -477087,7 +474808,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -477116,11 +474837,11 @@ { "id": 3324, "notes": "Chanda sends you to Percy Pakij", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -477128,7 +474849,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -477149,13 +474870,11 @@ { "id": 3325, "notes": "Start of Demetrius' poetry quiz", - "title": "", - "requires_questid_npc": [ - 541 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 1000, "items_required": [], "fail_npc_chat": "Ah, but my friend... woe, you do not have $1,000 here! How can we start if you lack the funds?", @@ -477169,7 +474888,9 @@ "success_npc_chat": "And so we begin!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 541 + ], "hide_reply_on_fail": true, "difficulty": null, "author": "BrightLights", @@ -477179,11 +474900,11 @@ { "id": 3326, "notes": "Percy gets his candles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -477224,7 +474945,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -477261,11 +474982,11 @@ { "id": 3328, "notes": "Demetrius offered you a bonus question.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Ah, but you do not have the money here! Alas, you will be unable to answer the bonus question. Good day to you!", @@ -477276,7 +474997,7 @@ "warp_x": null, "warp_y": null, "success_message": "Demetrius offered a $2,000 bonus if you're able to answer both parts of his bonus question!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -477290,15 +475011,13 @@ "id": 3329, "notes": "Completed Demetrius' poetry quiz", "title": "Demetrius' Poetry Challenge", - "requires_questid_npc": [ - 541 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 75, @@ -477306,10 +475025,12 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Demetrius' Poetry Challenge! You earned $10,000 and 75 quest points. ", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 541 + ], "hide_reply_on_fail": false, "difficulty": "Advanced", "author": "BrightLights", @@ -477319,14 +475040,14 @@ { "id": 3330, "notes": "You correctly answered both parts of Demetrius' bonus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -477334,7 +475055,7 @@ "warp_x": null, "warp_y": null, "success_message": "You correctly answered Demetrius' bonus question! You earned $2,000!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -477347,14 +475068,14 @@ { "id": 3344, "notes": "Shoneah asks for supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -477375,14 +475096,14 @@ { "id": 3331, "notes": "Ruby asks you to bring Matty in for dinner", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -477403,14 +475124,14 @@ { "id": 3332, "notes": "Matty throws a fit.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -477431,14 +475152,14 @@ { "id": 3333, "notes": "Ruby despairs of her son", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -477459,14 +475180,14 @@ { "id": 3334, "notes": "Matty stomps in.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -477487,14 +475208,14 @@ { "id": 3335, "notes": "Ruby asks you for help.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -477502,7 +475223,7 @@ "warp_x": null, "warp_y": null, "success_message": "Ruby Stonesthrow has asked you to find someone who can help her figure out why Matty behaves the way he does.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -477515,22 +475236,22 @@ { "id": 3336, "notes": "Talked to Boxy Bernie.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -477543,14 +475264,14 @@ { "id": 3337, "notes": "Boxy Bernie has offered his suggestions.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -477558,7 +475279,7 @@ "warp_x": null, "warp_y": null, "success_message": "Boxy Bernie has offered some suggestions as to how to help Matty control his emotions better.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -477571,22 +475292,22 @@ { "id": 3338, "notes": "Talked to Mums-The-Word Maria", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -477599,14 +475320,14 @@ { "id": 3339, "notes": "Finished with MTW-Maria", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -477614,7 +475335,7 @@ "warp_x": null, "warp_y": null, "success_message": "Mums-The-Word Maria has offered some suggestions on how Matty might learn to control his emotions better.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -477627,14 +475348,14 @@ { "id": 3340, "notes": "Finished with both psychi-pirates. I miss compound conditionals so much. Just saying.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -477642,7 +475363,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've gotten advice from both Boxy Bernie and Mums-The-Word Maria on how to help Matty control his emotions! This should be a good starting point for him.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -477655,14 +475376,14 @@ { "id": 3341, "notes": "Ruby tells you to talk to Matty.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -477683,14 +475404,14 @@ { "id": 3342, "notes": "Talk to Matty. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -477711,14 +475432,14 @@ { "id": 3343, "notes": "Endgame. [Ruby Stonesthrow's Parenting Woes]", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 200, @@ -477726,7 +475447,7 @@ "warp_x": null, "warp_y": null, "success_message": "You helped Matty learn some techniques to help manage his emotions- and hopefully things will be quieter in the household! You helped with Ruby Stonesthrow's Parenting Woes quest! You earned $10,000 and 200 quest points!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -477743,7 +475464,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -477776,11 +475497,11 @@ { "id": 3346, "notes": "Shoneah gives you the belt and offers to buy Silver and Turquoise.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -477788,7 +475509,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -477810,12 +475531,10 @@ "id": 3347, "notes": "Sani accepts the belt and rewards you. ", "title": "Sani's Anniversary", - "requires_questid_npc": [ - 3345 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -477838,7 +475557,9 @@ "success_npc_chat": "(Looking over the belt .) This is indeed a wonderful example of Shoneah's skill. Yepa will wear it proudly. Here, please accept this for making an old couple's anniversary special!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3345 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "BklynFilly", @@ -477848,11 +475569,11 @@ { "id": 3348, "notes": "Shoneah buys Silver Ore", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -477881,11 +475602,11 @@ { "id": 3349, "notes": "Shoneah buys Turquoise", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -477914,11 +475635,11 @@ { "id": 3350, "notes": "Lilibeth will buy wildflowers from you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Could you? I'll pay you $50 for each bunch of wildflowers! Bring as many as you can, I can always use them.", @@ -477942,11 +475663,11 @@ { "id": 3351, "notes": "Lilibeth buys a Bunch of Wildflowers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -477975,11 +475696,11 @@ { "id": 3352, "notes": "Jack gives you the fish photo", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -477987,7 +475708,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 0, @@ -478008,11 +475729,11 @@ { "id": 3353, "notes": "Woody gets the photo and asks for supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478041,11 +475762,11 @@ { "id": 3354, "notes": "Woody gets his logs, you get the fish.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 2000, "items_required": [ { @@ -478086,11 +475807,11 @@ { "id": 3355, "notes": "Pablo agrees to paint the fish", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478123,11 +475844,11 @@ { "id": 3356, "notes": "Pablo gives you the finished fish", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -478164,7 +475885,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478201,11 +475922,11 @@ { "id": 3358, "notes": "Argus gives the box for Apollo", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478213,7 +475934,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -478234,14 +475955,14 @@ { "id": 3359, "notes": "Argus sends you to Apollo", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -478262,14 +475983,14 @@ { "id": 3360, "notes": "Apollo sends you back to Argus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -478290,11 +476011,11 @@ { "id": 3361, "notes": "Apollo gets the Gryphon Chow.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478323,11 +476044,11 @@ { "id": 3362, "notes": "Apollo gets the gold and gives you the baby Gryphon.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478360,14 +476081,14 @@ { "id": 3363, "notes": "Sierra wants a new bed for Karina", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -478388,22 +476109,22 @@ { "id": 3364, "notes": "Gillian will make the bed for $2000, or you can bring her logs. Choice option", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 17, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -478416,22 +476137,22 @@ { "id": 3384, "notes": "Piece of Gillian's choice option chain, #1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -478444,22 +476165,22 @@ { "id": 3365, "notes": "You chose to give Gillian $2000. CHAIN", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -478472,11 +476193,11 @@ { "id": 3366, "notes": "You chose to give Gillian $2000; give her the money.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 2000, "items_required": [], "fail_npc_chat": "You don't have the right amount here! I'll need $2000 in advance, please.", @@ -478500,11 +476221,11 @@ { "id": 3367, "notes": "Gofer asks you to pick up his parts", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478512,7 +476233,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -478533,14 +476254,14 @@ { "id": 3368, "notes": "You chose to gather logs. Talk to Jane. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -478548,7 +476269,7 @@ "warp_x": null, "warp_y": null, "success_message": "You chose to collect logs for Gillian. Talk to Jane to find out where to go. ", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -478561,14 +476282,14 @@ { "id": 3369, "notes": "Jane tells you where to find said logs", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -478576,7 +476297,7 @@ "warp_x": null, "warp_y": null, "success_message": "Jane told you were to dig to find the logs.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -478589,7 +476310,7 @@ { "id": 3370, "notes": "Log #1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -478597,7 +476318,7 @@ "y": 89 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478629,7 +476350,7 @@ { "id": 3371, "notes": "Log #2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -478637,7 +476358,7 @@ "y": 135 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478669,7 +476390,7 @@ { "id": 3372, "notes": "Log #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -478677,7 +476398,7 @@ "y": 136 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478709,7 +476430,7 @@ { "id": 3373, "notes": "Log #4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -478717,7 +476438,7 @@ "y": 132 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478753,7 +476474,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478786,7 +476507,7 @@ { "id": 3374, "notes": "Log #5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -478794,7 +476515,7 @@ "y": 95 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478826,11 +476547,11 @@ { "id": 3375, "notes": "You told Gillian that you had all of the logs.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478859,22 +476580,22 @@ { "id": 3376, "notes": "You've met Aili. This is for dialogue.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -478887,11 +476608,11 @@ { "id": 3379, "notes": "Deliver bed to Sierra", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478907,7 +476628,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've agreed to ask Jayne if he will help Sierra bring the bed into the house.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -478920,11 +476641,11 @@ { "id": 3377, "notes": "Pick up the bed from Gillian", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478932,7 +476653,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -478953,11 +476674,11 @@ { "id": 3378, "notes": "Ferrel gives you the new bicycle chain", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -478965,7 +476686,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -478986,14 +476707,14 @@ { "id": 3380, "notes": "Jayne will help you bring the bed inside.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -479001,7 +476722,7 @@ "warp_x": null, "warp_y": null, "success_message": "Jayne will help Sierra bring the bed inside.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -479014,11 +476735,11 @@ { "id": 3381, "notes": "Rick Hammerstroke gives you the bicycle wheels", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -479026,7 +476747,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -479051,10 +476772,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 175, @@ -479062,7 +476783,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Baby Karina's New Bed! You earned $10,000 and 175 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -479079,7 +476800,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -479120,14 +476841,14 @@ { "id": 3386, "notes": "Apollo asks for your help.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -479148,11 +476869,11 @@ { "id": 3387, "notes": "Can you find the treasure? (Level check & first clue).", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Arrr! Ye be still but a landlubber! Try me log again when ye has more adventures under ye belt!", @@ -479176,7 +476897,7 @@ { "id": 3388, "notes": "Clue outside Robinson's tree", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479184,7 +476905,7 @@ "y": 198 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479211,7 +476932,7 @@ { "id": 3389, "notes": "Clue on Rain Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479219,7 +476940,7 @@ "y": 162 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479246,7 +476967,7 @@ { "id": 3390, "notes": "Clue on Web Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479254,7 +476975,7 @@ "y": 29 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479281,7 +477002,7 @@ { "id": 3391, "notes": "Clue on Ring Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479289,7 +477010,7 @@ "y": 134 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479316,7 +477037,7 @@ { "id": 3392, "notes": "1st Clue on Torrid Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479324,7 +477045,7 @@ "y": 433 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479351,7 +477072,7 @@ { "id": 3393, "notes": "2nd clue on Torrid Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479359,7 +477080,7 @@ "y": 456 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479386,7 +477107,7 @@ { "id": 3394, "notes": "1st Clue on Whorl Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479394,7 +477115,7 @@ "y": 134 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479421,7 +477142,7 @@ { "id": 3395, "notes": "2nd Clue on Whorl Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479429,7 +477150,7 @@ "y": 199 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479456,7 +477177,7 @@ { "id": 3396, "notes": "3rd clue on Whorl Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479464,7 +477185,7 @@ "y": 176 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479491,7 +477212,7 @@ { "id": 3397, "notes": "Clue on Icicle Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479499,7 +477220,7 @@ "y": 29 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479526,7 +477247,7 @@ { "id": 3398, "notes": "Clue on Hat Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479534,7 +477255,7 @@ "y": 26 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479561,7 +477282,7 @@ { "id": 3399, "notes": "Clue on Magma Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479569,7 +477290,7 @@ "y": 234 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479596,7 +477317,7 @@ { "id": 3412, "notes": "Lily #1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479604,7 +477325,7 @@ "y": 243 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479631,14 +477352,14 @@ { "id": 3401, "notes": "Paul told you the ponies have scampered away", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -479660,16 +477381,14 @@ "id": 3400, "notes": "You found the treasure! ", "title": "Robinson's Logbook", - "requires_questid_npc": [ - 3094 - ], + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 967, "y": 224 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -479693,6 +477412,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 3094, 3399 ], "hide_reply_on_fail": false, @@ -479705,12 +477425,10 @@ "id": 3440, "notes": "Complete painting for Mirah on Whorl", "title": "Painting for Mirah", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed Mirah's painting.", @@ -479734,7 +477452,7 @@ { "id": 3402, "notes": "Find first set of pony prints by the pond", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479742,7 +477460,7 @@ "y": 238 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479769,7 +477487,7 @@ { "id": 3403, "notes": "Second set of pony prints by tree", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479777,7 +477495,7 @@ "y": 242 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479804,7 +477522,7 @@ { "id": 3404, "notes": "Third set of pony tracks- they branch off from here. Start point", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479812,7 +477530,7 @@ "y": 244 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479839,7 +477557,7 @@ { "id": 3405, "notes": "Angel goes south, tracks 1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479847,7 +477565,7 @@ "y": 248 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479874,7 +477592,7 @@ { "id": 3406, "notes": "Angel goes south, tracks 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479882,7 +477600,7 @@ "y": 254 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479909,7 +477627,7 @@ { "id": 3407, "notes": "Angel goes south, tracks 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -479917,7 +477635,7 @@ "y": 254 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -479944,14 +477662,14 @@ { "id": 3408, "notes": "Angel is found, Cara sent her home", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -479975,11 +477693,11 @@ { "id": 3409, "notes": "All three ponies apprehended; return them to Paul", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -480016,7 +477734,7 @@ { "id": 3410, "notes": "You've found at least one pony, but not all of them.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -480024,7 +477742,7 @@ "y": 244 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -480051,7 +477769,7 @@ { "id": 3411, "notes": "2nd Clue on Web Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -480059,7 +477777,7 @@ "y": 24 }, "tracked": true, - "repeats": 20, + "max_repeats": 20, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -480086,14 +477804,14 @@ { "id": 3413, "notes": "Spike tells you she's seen Lily", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -480114,7 +477832,7 @@ { "id": 3414, "notes": "Devie #1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -480122,7 +477840,7 @@ "y": 243 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -480149,7 +477867,7 @@ { "id": 3415, "notes": "Devie #2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -480157,7 +477875,7 @@ "y": 245 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -480184,11 +477902,11 @@ { "id": 3416, "notes": "Devie #3: Found", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -480219,21 +477937,21 @@ { "id": 3417, "notes": "Robinson passes on the treasure", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "No, no thanks....I always liked the hunt more than the treasure itself. You keep it, and use it in good health.", "requires_awardid": null, "requires_questid_completed": [], @@ -480247,11 +477965,11 @@ { "id": 3418, "notes": "Return quadrant to Carolyn Caravel", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -480259,7 +477977,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -480280,11 +477998,11 @@ { "id": 3419, "notes": "Ask Cecil Shuteye for a cookie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "Sure. I actually just baked a batch. It will be $100.", @@ -480308,11 +478026,11 @@ { "id": 3420, "notes": "Buy cookie from Cecil", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 100, "items_required": [ { @@ -480344,11 +478062,11 @@ { "id": 3421, "notes": "Deliver cookie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -480384,10 +478102,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 275, @@ -480411,22 +478129,22 @@ { "id": 3423, "notes": "Made both deliveries for Paul", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [ 3421, @@ -480443,12 +478161,10 @@ "id": 3424, "notes": "Ice Sculpture #11", "title": "Ice Sculpture #11", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Ice Sculpture.", @@ -480459,7 +478175,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ice Sculpture #11! You earned $4000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -480473,12 +478189,10 @@ "id": 3425, "notes": "Jungle Temple #11", "title": "Jungle Temple #11", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -480503,12 +478217,10 @@ "id": 3426, "notes": "Jungle Temple #12", "title": "Jungle Temple #12", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -480532,22 +478244,22 @@ { "id": 3427, "notes": "You've decided what you were doing for GIllian. (Tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -480564,7 +478276,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -480601,7 +478313,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -480634,7 +478346,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -480671,7 +478383,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -480704,7 +478416,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -480737,11 +478449,11 @@ { "id": 3433, "notes": "Start of Winthrop's tack care quiz", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 1000, "items_required": [], "fail_npc_chat": "Looks like you'll need to hit the bank- you don't have $1,000 here.", @@ -480769,10 +478481,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 75, @@ -480780,7 +478492,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Winthrop's Tack Care Quiz! You earned $10,000 and 75 quest points. ", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -480793,11 +478505,11 @@ { "id": 3435, "notes": "Choose to take Winthrop's bonus question", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [], "fail_npc_chat": "What did you do with the $1,000 you just earned? Unfortunately you won't be able to try this quiz.", @@ -480808,7 +478520,7 @@ "warp_x": null, "warp_y": null, "success_message": "You staked $1,000 on your knowledge of tack care and agreed to try Winthrop's bonus question!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -480821,14 +478533,14 @@ { "id": 3436, "notes": "Winthrop's bonus correct", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -480836,7 +478548,7 @@ "warp_x": null, "warp_y": null, "success_message": "You got Winthrop's bonus question correct! You earned back the $1,000 you'd staked plus a $2,000 bonus.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -480849,11 +478561,11 @@ { "id": 3437, "notes": "Start of Miguela's tack quiz", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 1000, "items_required": [], "fail_npc_chat": "Sorry, it doesn't look like you have enough here.", @@ -480881,10 +478593,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 50, @@ -480892,7 +478604,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Miguela's Tack Quiz! You earned $10,000 and 50 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -480905,14 +478617,14 @@ { "id": 3439, "notes": "Miguela's bonus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -480920,7 +478632,7 @@ "warp_x": null, "warp_y": null, "success_message": "You got Miguela's bonus question correct! You earned $1,000!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -480934,12 +478646,10 @@ "id": 3441, "notes": "Complete painting for Chanda on Web", "title": "Painting for Chanda", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed Chanda's painting.", @@ -480964,12 +478674,10 @@ "id": 3442, "notes": "Complete painting for Freddy in Ashton", "title": "Painting for Freddy", - "requires_questid_npc": [ - 1683 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed Freddy's painting.", @@ -480983,7 +478691,9 @@ "success_npc_chat": "Freddy: That is just amazing! Very nice work, there. I couldn't have done it better myself.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1683 + ], "hide_reply_on_fail": false, "difficulty": "Advanced", "author": "Miranda", @@ -480997,7 +478707,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed Esther's painting.", @@ -481025,7 +478735,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed Jada's painting.", @@ -481049,14 +478759,14 @@ { "id": 3445, "notes": "Nomasonto asks for your help", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -481079,14 +478789,14 @@ { "id": 3446, "notes": "Lapis Maki gives you her list.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -481107,7 +478817,7 @@ { "id": 3447, "notes": "You find the Chunk of Coral", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -481115,7 +478825,7 @@ "y": 112 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481146,11 +478856,11 @@ { "id": 3448, "notes": "You give Lapis Maki her materials", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481183,11 +478893,11 @@ { "id": 3449, "notes": "Lapis Maki gives you Mtomka's Necklace", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481195,7 +478905,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -481220,7 +478930,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481253,14 +478963,14 @@ { "id": 3451, "notes": "Ricardo tells you that his horse won't sweat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -481281,14 +478991,14 @@ { "id": 3452, "notes": "Audrey gives advice on the treatment of anhidrosis; refers you to Tropicton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -481313,7 +479023,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481321,7 +479031,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 75, @@ -481342,14 +479052,14 @@ { "id": 3453, "notes": "You've agreed to help Crow's Nest Carrie get rid of the scorpions", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -481370,22 +479080,22 @@ { "id": 3454, "notes": "Track Humpty, tale of tarantula", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -481399,12 +479109,10 @@ "id": 3531, "notes": "Allaire rewards you {travel costs $800} ", "title": "Allaire's Missing Apples", - "requires_questid_npc": [ - 3518 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481423,7 +479131,9 @@ "success_npc_chat": "This carved apple is very interesting. Thank you so much. I think I'll take some time and get to know my new neighbor. Please, take this $5000 as a reward.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3518 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Desertmorn", @@ -481433,11 +479143,11 @@ { "id": 3530, "notes": "Spencer gives you a carved apple head", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481445,7 +479155,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -481466,14 +479176,14 @@ { "id": 3455, "notes": "tracking... Cap'n Solomon/Red beans and rice", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -481494,11 +479204,11 @@ { "id": 3457, "notes": "You give Señor Cangrejo the scorpion gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481527,22 +479237,22 @@ { "id": 3462, "notes": "nevermind...", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -481555,11 +479265,11 @@ { "id": 3458, "notes": "You give Carlotta one and a half dozen scorpions", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481588,11 +479298,11 @@ { "id": 3459, "notes": " Carlotta gives you the scorpion gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481625,7 +479335,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481654,14 +479364,14 @@ { "id": 3461, "notes": "You meet Señor Cangrejo (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -481682,14 +479392,14 @@ { "id": 3463, "notes": "Shastri tells you where Sammy ran", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -481710,7 +479420,7 @@ { "id": 3464, "notes": "You find a clue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -481718,7 +479428,7 @@ "y": 220 }, "tracked": true, - "repeats": 100, + "max_repeats": 100, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -481745,7 +479455,7 @@ { "id": 3465, "notes": "You found another clue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -481753,7 +479463,7 @@ "y": 221 }, "tracked": true, - "repeats": 100, + "max_repeats": 100, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -481780,7 +479490,7 @@ { "id": 3466, "notes": "Another clue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -481788,7 +479498,7 @@ "y": 220 }, "tracked": true, - "repeats": 100, + "max_repeats": 100, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -481815,7 +479525,7 @@ { "id": 3467, "notes": "You find Samantha!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -481823,7 +479533,7 @@ "y": 219 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481858,7 +479568,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481893,11 +479603,11 @@ { "id": 3469, "notes": "Caren Hart gives HI1 equivalent of One-AC", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481905,7 +479615,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -481926,11 +479636,11 @@ { "id": 3471, "notes": "Mona gives you 7 pony sculptures", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481938,7 +479648,7 @@ "quantity": 7 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -481959,11 +479669,11 @@ { "id": 3472, "notes": "Deliver to Bess (Starfish)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -481971,7 +479681,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -481994,11 +479704,11 @@ { "id": 3473, "notes": "Deliver to Esther (Vine)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482006,7 +479716,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -482029,11 +479739,11 @@ { "id": 3474, "notes": "Deliver to Jade Maki", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482041,7 +479751,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -482064,11 +479774,11 @@ { "id": 3475, "notes": "Deliver to Kelda", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482076,7 +479786,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -482097,11 +479807,11 @@ { "id": 3476, "notes": "Deliver to Mirah", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482109,7 +479819,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -482130,11 +479840,11 @@ { "id": 3477, "notes": "Deliver to Rebecca", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482142,7 +479852,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -482163,11 +479873,11 @@ { "id": 3511, "notes": "Delivery to Tony Grocer/Chillton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482196,11 +479906,11 @@ { "id": 3478, "notes": "Deliver to Sara", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482208,7 +479918,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -482230,12 +479940,10 @@ "id": 3479, "notes": "Endgame; You have delivered all the ponies and returned to Mona", "title": "Mona's Birthday Deliveries", - "requires_questid_npc": [ - 288 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, it doesn't seem that you've delivered all the ponies. They needed to go to Bess, Esther, Jade Maki, Kelda, Mirah, Rebecca, and Sarah.", @@ -482257,7 +479965,9 @@ 3477, 3478 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 288 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "BrightLights", @@ -482267,14 +479977,14 @@ { "id": 3480, "notes": "You've delivered all the ponies; time to go back to Mona.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -482282,7 +479992,7 @@ "warp_x": null, "warp_y": null, "success_message": "That was the last delivery! Time to head back to Mona.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [ 3472, @@ -482303,14 +480013,14 @@ { "id": 3481, "notes": "You've annoyed Crow's Nest Carrie once again.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -482331,14 +480041,14 @@ { "id": 3482, "notes": "You've annoyed Crow's Nest Carrie yet again.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -482359,14 +480069,14 @@ { "id": 3483, "notes": "You've agreed to help Crow's Nest Carrie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -482387,14 +480097,14 @@ { "id": 3484, "notes": "Kirby tells you to see Sando", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -482402,7 +480112,7 @@ "warp_x": null, "warp_y": null, "success_message": "You need a Lyre snake to eat all the scorpions you released. Time to ask Sando for help! ", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -482415,21 +480125,21 @@ { "id": 4155, "notes": "Kirby sends you to Sando", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": 434, "warp_y": 445, - "success_message": "", + "success_message": null, "success_npc_chat": "Tell him I said hi!", "requires_awardid": null, "requires_questid_completed": [], @@ -482443,11 +480153,11 @@ { "id": 3485, "notes": "Sando gives you tortillas for Harriet", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482455,7 +480165,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -482476,11 +480186,11 @@ { "id": 3487, "notes": "You give the scarf to Madame Babushka", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482509,11 +480219,11 @@ { "id": 3486, "notes": "Harriet gives you a scarf in exchange for the tortillas.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482546,14 +480256,14 @@ { "id": 3488, "notes": "You've agreed to help find Madame Babushka's scarves", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -482574,7 +480284,7 @@ { "id": 3489, "notes": "You find a scarf #1/single palm north of pyramid", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -482582,7 +480292,7 @@ "y": 463 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482614,7 +480324,7 @@ { "id": 3490, "notes": "You find a scarf #2/dbl palm north of pyramid", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -482622,7 +480332,7 @@ "y": 464 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482654,7 +480364,7 @@ { "id": 3491, "notes": "You find a scarf #3/single palm on beach near driftwood", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -482662,7 +480372,7 @@ "y": 465 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482694,7 +480404,7 @@ { "id": 3492, "notes": "You find a scarf #4/1st dbl palm on beach north of shack", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -482702,7 +480412,7 @@ "y": 469 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482734,7 +480444,7 @@ { "id": 3493, "notes": "You find a scarf #5/palm just south of pyramid", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -482742,7 +480452,7 @@ "y": 467 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482774,7 +480484,7 @@ { "id": 3494, "notes": "You find a scarf #6/single palm south of shack", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -482782,7 +480492,7 @@ "y": 474 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482814,7 +480524,7 @@ { "id": 3495, "notes": "You find a scarf #7/sandcastle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -482822,7 +480532,7 @@ "y": 473 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482855,12 +480565,10 @@ "id": 3496, "notes": "Madame Babushka rewards you {travel costs $600}", "title": "Madame Babushka's Missing Scarves", - "requires_questid_npc": [ - 3497 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482883,7 +480591,9 @@ "success_npc_chat": "My lovely scarves! How unexpected and delightful! I am ever so grateful that you found these. (Madame Babushka hugs her scarves.) Please, take this as a reward.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3497 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Desertmorn", @@ -482894,12 +480604,10 @@ "id": 3497, "notes": "Crow's Nest Carrie rewards you. {travel costs Zero} ", "title": "Crow's Nest Carrie's Missing Foghorn", - "requires_questid_npc": [ - 2329 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482922,7 +480630,9 @@ "success_npc_chat": "(Crow's Nest Carrie sits up abruptly, looking shocked! A huge grin spreads across her face.) I be much obliged to ye, matey. Here's a bit a glitter for all yer troubles. Now clear out so's I kin git back to me job!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2329 + ], "hide_reply_on_fail": false, "difficulty": "Advanced", "author": "Desertmorn", @@ -482932,11 +480642,11 @@ { "id": 3499, "notes": "You return Stinky's copper-bottomed pot", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -482969,11 +480679,11 @@ { "id": 3498, "notes": "tracking Madame Bubushka.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have that.", @@ -482983,8 +480693,8 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -482997,11 +480707,11 @@ { "id": 3586, "notes": "Carlotta checks to see if you are adventurous enough", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Aye, carumba! You need to build up your adventuring muscles. Come back when you are able to visit pirates, my friend.", @@ -483011,7 +480721,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You are indeed brave and adventurous. Indeed, my friend!", "requires_awardid": 2, "requires_questid_completed": [], @@ -483025,14 +480735,14 @@ { "id": 3548, "notes": "tracking Madame Babushka/missing scarves quest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -483053,14 +480763,14 @@ { "id": 3619, "notes": "Captain Jack tells you where to look for the foghorn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -483068,7 +480778,7 @@ "warp_x": null, "warp_y": null, "success_message": "Captain Jack told you to search the empty barrels for the foghorn.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -483081,11 +480791,11 @@ { "id": 3500, "notes": "You've agreed to help Marina", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483093,7 +480803,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 7000, "items_gained": [], "quest_points": 0, @@ -483114,11 +480824,11 @@ { "id": 3501, "notes": "Get indigo dye from Sasha in Treeton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483147,11 +480857,11 @@ { "id": 3502, "notes": "Get bolt of cotton canvas from Barb in Shellton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1500, "items_required": [ { @@ -483184,11 +480894,11 @@ { "id": 3503, "notes": "Give Trudy in Hotton bolt of cotton canvas ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -483217,11 +480927,11 @@ { "id": 3504, "notes": "Give indigo dye to Trudy in Hotton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483229,7 +480939,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -483250,11 +480960,11 @@ { "id": 3505, "notes": "Get indigo dyed cotton canvas", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483283,11 +480993,11 @@ { "id": 3506, "notes": "Give indigo dyed bolt of cotton canvas to Barb in Shellton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483295,7 +481005,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -483316,11 +481026,11 @@ { "id": 3507, "notes": "Get finished headsail", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483353,7 +481063,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483361,7 +481071,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 15000, "items_gained": [], "quest_points": 150, @@ -483382,11 +481092,11 @@ { "id": 3509, "notes": "You've agreed to help Bruno/Appleton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483398,7 +481108,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -483419,11 +481129,11 @@ { "id": 3510, "notes": "Deliver to Barrett Braunbag/Tail", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483452,11 +481162,11 @@ { "id": 3512, "notes": "Delivery to Bena Buket/Santon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483485,11 +481195,11 @@ { "id": 3513, "notes": "Delivery to Ruthie/Half Haven", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483518,11 +481228,11 @@ { "id": 3514, "notes": "Delivery to Su Comida/Sandy Gen'l Store", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483552,12 +481262,10 @@ "id": 3515, "notes": "Bruno rewards you {$3400 travel costs}", "title": "Bruno's Apple Deliveries", - "requires_questid_npc": [ - 519 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483582,7 +481290,9 @@ 3513, 3514 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 519 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Desertmorn", @@ -483592,13 +481302,11 @@ { "id": 3516, "notes": "You've agreed to help Bruno again", - "title": "", - "requires_questid_npc": [ - 519 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483606,7 +481314,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -483617,7 +481325,9 @@ "success_npc_chat": "I know those forest mazes take time, so I really appreciate your efforts. ", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 519 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -483627,11 +481337,11 @@ { "id": 3517, "notes": "Delivery to Allaire/Tail Forest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -483667,10 +481377,10 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 50, @@ -483691,13 +481401,11 @@ { "id": 3519, "notes": "Agree to help Allaire", - "title": "", - "requires_questid_npc": [ - 3518 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have that.", @@ -483711,7 +481419,9 @@ "success_npc_chat": "That would be wonderful! You might want to start looking near the dead tree out there.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3518 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -483721,7 +481431,7 @@ { "id": 3520, "notes": "You find a clue!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -483729,7 +481439,7 @@ "y": 149 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -483756,7 +481466,7 @@ { "id": 3521, "notes": "You find yet another clue!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -483764,7 +481474,7 @@ "y": 151 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -483791,7 +481501,7 @@ { "id": 3522, "notes": "You find clue #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -483799,7 +481509,7 @@ "y": 151 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -483826,7 +481536,7 @@ { "id": 3523, "notes": "You find clue #4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -483834,7 +481544,7 @@ "y": 154 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -483861,7 +481571,7 @@ { "id": 3524, "notes": "You find clue #5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -483869,7 +481579,7 @@ "y": 156 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -483896,7 +481606,7 @@ { "id": 3525, "notes": "You find clue #6", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -483904,7 +481614,7 @@ "y": 160 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -483931,7 +481641,7 @@ { "id": 3526, "notes": "You find clue #7", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -483939,7 +481649,7 @@ "y": 162 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -483966,7 +481676,7 @@ { "id": 3527, "notes": "You find clue #8", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -483974,7 +481684,7 @@ "y": 165 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -484001,7 +481711,7 @@ { "id": 3528, "notes": "You find the culprit!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -484009,7 +481719,7 @@ "y": 166 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -484035,14 +481745,14 @@ { "id": 3529, "notes": "You agree to go talk to the elderly gentleman", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -484063,7 +481773,7 @@ { "id": 3532, "notes": "Agree to help Andrea", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -484071,10 +481781,10 @@ "y": 1 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -484095,14 +481805,14 @@ { "id": 3533, "notes": "Find the frog", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -484123,7 +481833,7 @@ { "id": 3534, "notes": "Agree to help Murigal", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -484131,10 +481841,10 @@ "y": 1 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -484159,7 +481869,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have that.", @@ -484183,7 +481893,7 @@ { "id": 3536, "notes": "You find missing gem #1 on Starfish", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -484191,7 +481901,7 @@ "y": 366 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484222,7 +481932,7 @@ { "id": 3537, "notes": "You find missing gem #2 on Tail", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -484230,7 +481940,7 @@ "y": 382 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484261,7 +481971,7 @@ { "id": 3538, "notes": "You find missing gem #3 on Whorl", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -484269,7 +481979,7 @@ "y": 172 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484300,7 +482010,7 @@ { "id": 3539, "notes": "You find missing gem #4 on Wington", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -484308,7 +482018,7 @@ "y": 140 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484339,7 +482049,7 @@ { "id": 3540, "notes": "You find missing gem #5 on Haven", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -484347,7 +482057,7 @@ "y": 301 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484378,7 +482088,7 @@ { "id": 3541, "notes": "You find missing gem #6 in Cantle Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -484386,7 +482096,7 @@ "y": 181 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484417,7 +482127,7 @@ { "id": 3542, "notes": "You find missing gem #7 on Flower", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -484425,7 +482135,7 @@ "y": 301 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484456,7 +482166,7 @@ { "id": 3543, "notes": "You find missing gem #8 on Hoof", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -484464,7 +482174,7 @@ "y": 354 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484495,7 +482205,7 @@ { "id": 3544, "notes": "You find missing gem #9 on Quiet", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -484503,7 +482213,7 @@ "y": 248 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484534,7 +482244,7 @@ { "id": 3545, "notes": "You find missing gem #10 in Appleton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -484542,7 +482252,7 @@ "y": 330 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484574,12 +482284,10 @@ "id": 3546, "notes": "Murigal rewards you {travel costs min $7500} ", "title": "Murigal's Missing Gemstones", - "requires_questid_npc": [ - 3532 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484598,7 +482306,9 @@ "success_npc_chat": "Croak! Ka-blurp! Ribbit! Greedeep! Bruddup! Thank you! I've kept some money tucked away with me in case of an emergency. Take this as a reward. And now I'm going to wish myself right out of here!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3532 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Desertmorn", @@ -484609,12 +482319,10 @@ "id": 3587, "notes": "Jungle Temple #13", "title": "Jungle Temple #13", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -484638,7 +482346,7 @@ { "id": 3547, "notes": "You find an extra missing gem #11 - bonus in Ring", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -484646,7 +482354,7 @@ "y": 137 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484677,11 +482385,11 @@ { "id": 3549, "notes": "tracking 7 scarves", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have all seven of them. Please look harder.", @@ -484691,7 +482399,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "This is wonderful. You did a great job. Can you please take them to my aunt, now? I'd really appreciate it.", "requires_awardid": null, "requires_questid_completed": [ @@ -484713,11 +482421,11 @@ { "id": 3550, "notes": "Agree to help Carlotta with her secret", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484746,11 +482454,11 @@ { "id": 3551, "notes": "Trayja agrees to make tissue paper, but needs supplies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484758,7 +482466,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -484779,7 +482487,7 @@ { "id": 3552, "notes": "You find a cochineal cluster Torrid 1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -484787,7 +482495,7 @@ "y": 461 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484818,7 +482526,7 @@ { "id": 3553, "notes": "You find a cochineal cluster Torrid 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -484826,7 +482534,7 @@ "y": 462 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484857,7 +482565,7 @@ { "id": 3554, "notes": "You find a cochineal cluster Torrid 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -484865,7 +482573,7 @@ "y": 462 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484896,7 +482604,7 @@ { "id": 3555, "notes": "You find a cochineal cluster Dust 1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -484904,7 +482612,7 @@ "y": 419 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484935,7 +482643,7 @@ { "id": 3556, "notes": "You find a cochineal cluster Dust 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -484943,7 +482651,7 @@ "y": 418 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -484974,7 +482682,7 @@ { "id": 3557, "notes": "You find a cochineal cluster Dust 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -484982,7 +482690,7 @@ "y": 418 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485013,7 +482721,7 @@ { "id": 3558, "notes": "You find a cochineal cluster Sand Isle 1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -485021,7 +482729,7 @@ "y": 441 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485052,7 +482760,7 @@ { "id": 3559, "notes": "You find a cochineal cluster Sand Isle 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -485060,7 +482768,7 @@ "y": 443 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485091,7 +482799,7 @@ { "id": 3560, "notes": "You find a cochineal cluster Santon 1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -485099,7 +482807,7 @@ "y": 437 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485130,7 +482838,7 @@ { "id": 3561, "notes": "You find a cochineal cluster Santon 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -485138,7 +482846,7 @@ "y": 439 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485169,7 +482877,7 @@ { "id": 3562, "notes": "You find a cochineal cluster Santon 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -485177,7 +482885,7 @@ "y": 438 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485208,7 +482916,7 @@ { "id": 3563, "notes": "You find a cochineal cluster Santon 4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -485216,7 +482924,7 @@ "y": 447 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485247,7 +482955,7 @@ { "id": 3564, "notes": "You find a cochineal cluster Santon 5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -485255,7 +482963,7 @@ "y": 445 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485286,7 +482994,7 @@ { "id": 3565, "notes": "You find a cochineal cluster Santon 6", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -485294,7 +483002,7 @@ "y": 446 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485325,11 +483033,11 @@ { "id": 3566, "notes": "Get wood ash from Quincy/Hoof OR Remy/Art", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485358,11 +483066,11 @@ { "id": 3567, "notes": "Give Trayja bag of wood ash", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485391,11 +483099,11 @@ { "id": 3568, "notes": "Give Trayja cochineal clusters", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485424,11 +483132,11 @@ { "id": 3569, "notes": "Get lemons from George/Skullton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 200, "items_required": [ { @@ -485457,11 +483165,11 @@ { "id": 3570, "notes": "Give Trayja lemons", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485490,11 +483198,11 @@ { "id": 3571, "notes": "Give Trayja ferns", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485523,11 +483231,11 @@ { "id": 3572, "notes": "Give Trayja blueberries", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485556,11 +483264,11 @@ { "id": 3573, "notes": "Give Trayja strawberries", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485589,11 +483297,11 @@ { "id": 3574, "notes": "Give Trayja huckleberries", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485622,11 +483330,11 @@ { "id": 3575, "notes": "Give Trayja dandelions.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485655,11 +483363,11 @@ { "id": 3576, "notes": "Trayja checks to make sure you've delivered everything.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485696,11 +483404,11 @@ { "id": 3577, "notes": "Get balloons from Reuben/Appleton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 325, "items_required": [ { @@ -485729,11 +483437,11 @@ { "id": 3578, "notes": "Give Carlotta Balloons", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485762,11 +483470,11 @@ { "id": 3579, "notes": "Get tissue paper from Trayja/Tropicton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485795,11 +483503,11 @@ { "id": 3580, "notes": "Give Carlotta tissue paper", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485828,11 +483536,11 @@ { "id": 3581, "notes": "Give Carlotta peppermint candy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485861,11 +483569,11 @@ { "id": 3582, "notes": "Give Carlotta gum drops", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485894,11 +483602,11 @@ { "id": 3583, "notes": "Carlotta checks to see that you've brought everything", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485933,11 +483641,11 @@ { "id": 3584, "notes": "Give Carlotta marshmallows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485970,7 +483678,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -485978,7 +483686,7 @@ "quantity": 15 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 275, @@ -485999,11 +483707,11 @@ { "id": 3591, "notes": "Agree to help Carlotta with the drinks and desserts", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486033,12 +483741,10 @@ "id": 3588, "notes": "Jungle Temple #14", "title": "Jungle Temple #14", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -486063,12 +483769,10 @@ "id": 3589, "notes": "Jungle Temple #15", "title": "Jungle Temple #15", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -486093,12 +483797,10 @@ "id": 3590, "notes": "Jungle Temple #16", "title": "Jungle Temple #16", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -486122,11 +483824,11 @@ { "id": 3592, "notes": "Agree to deliver 2 balloons & a piñata to each kid", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486138,7 +483840,7 @@ "quantity": 14 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -486159,11 +483861,11 @@ { "id": 3593, "notes": "Give Jacinta lemonade/Tropicton Food", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486194,11 +483896,11 @@ { "id": 3596, "notes": "Give Julio cotton candy/Cloud", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486229,11 +483931,11 @@ { "id": 3594, "notes": "Give Jacinta cotton candy/Cloud", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486264,11 +483966,11 @@ { "id": 3595, "notes": "Give Julio lemonade/Tropicton Food", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486299,11 +484001,11 @@ { "id": 3597, "notes": "Give Juanita milk/Wington Food", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486334,11 +484036,11 @@ { "id": 3598, "notes": "Give Juanita smore/Pirate", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486369,11 +484071,11 @@ { "id": 3599, "notes": "Give Joaquin milk/Wington Food", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486404,11 +484106,11 @@ { "id": 3600, "notes": "Give Joaquin smore/Pirate", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486439,11 +484141,11 @@ { "id": 3601, "notes": "Give Javier hot cocoa/Appleton Food", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486474,11 +484176,11 @@ { "id": 3602, "notes": "Give Javier popcorn/Wington Food", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486509,11 +484211,11 @@ { "id": 3603, "notes": "Give Jose hot cocoa/Appleton Food", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486544,11 +484246,11 @@ { "id": 3604, "notes": "Give Jose popcorn/Wington Food", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486579,11 +484281,11 @@ { "id": 3605, "notes": "Give Julianna soda/Treeton Food", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486614,11 +484316,11 @@ { "id": 3606, "notes": "Give Julianna pudding/Appleton Food", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486649,11 +484351,11 @@ { "id": 3608, "notes": "Give Jacinta 2 animal balloons and a piñata.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486686,11 +484388,11 @@ { "id": 3607, "notes": "Carlotta checks to see if you've made all the meal deliveries.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486705,7 +484407,7 @@ "goto_npc_chatpoint": 0, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Fabuloso! You must be muy inteligente to have figured that all out! Are you ready for your reward?", "requires_awardid": null, "requires_questid_completed": [ @@ -486727,11 +484429,11 @@ { "id": 3609, "notes": "Give Juanita 2 animal balloons and a piñata.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486764,11 +484466,11 @@ { "id": 3610, "notes": "Give Julianna 2 animal balloons and a piñata.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486801,11 +484503,11 @@ { "id": 3611, "notes": "Give Julio 2 animal balloons and a piñata.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486838,11 +484540,11 @@ { "id": 3612, "notes": "Give Joaquin 2 animal balloons and a piñata.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486875,11 +484577,11 @@ { "id": 3613, "notes": "Give Javier 2 animal balloons and a piñata.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486914,11 +484616,11 @@ { "id": 3614, "notes": "Give Jose 2 animal balloons and a piñata.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -486951,11 +484653,11 @@ { "id": 3615, "notes": "Carlotta checks to see if you've made all the balloon/piñata deliveries.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Es no good! You haven't delivered all the piñatas and balloons yet! ", @@ -486965,7 +484667,7 @@ "goto_npc_chatpoint": 0, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Fabuloso! Now I need you to deliver the rest of their gifts.", "requires_awardid": null, "requires_questid_completed": [ @@ -486988,12 +484690,10 @@ "id": 3616, "notes": "Carlotta rewards you for the deliveries [min $5000 expenses] ", "title": "Carlotta's Fiesta Deliveries", - "requires_questid_npc": [ - 3585 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487001,7 +484701,7 @@ "quantity": 15 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 250, @@ -487015,7 +484715,9 @@ 3607, 3615 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3585 + ], "hide_reply_on_fail": false, "difficulty": "Advanced", "author": "Desertmorn", @@ -487025,11 +484727,11 @@ { "id": 3617, "notes": "Carlotta helps you with expenses", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487058,22 +484760,22 @@ { "id": 3618, "notes": "you've either told solomon about the red beans and rice or finished that part of the quest (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -487086,14 +484788,14 @@ { "id": 3620, "notes": "Agree to help Edgar/Molten Meadows (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -487114,14 +484816,14 @@ { "id": 3621, "notes": "Farley/Molten Meadows agrees to get new teeth", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -487142,14 +484844,14 @@ { "id": 3622, "notes": "Edgar/Molten Meadows agrees to buy Farley new dentures", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3500, "items_gained": [], "quest_points": 0, @@ -487170,14 +484872,14 @@ { "id": 3623, "notes": "Speak to Karee Dentin/Wington (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -487198,14 +484900,14 @@ { "id": 3624, "notes": "Speak to Edgar/Molten (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -487226,14 +484928,14 @@ { "id": 3625, "notes": "Agree to get lump of wax from Evelynn/Wington for Karee", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -487254,11 +484956,11 @@ { "id": 3626, "notes": "Trade honeycomb for wax Evelynn/Wington", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487291,11 +484993,11 @@ { "id": 3627, "notes": "Give lump of wax to Edgar Molten Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487324,11 +485026,11 @@ { "id": 3628, "notes": "Get paper bag from Ricky Mantequllia/Molten", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487336,7 +485038,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -487357,11 +485059,11 @@ { "id": 3629, "notes": "Bag up the wax impression", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487394,11 +485096,11 @@ { "id": 3630, "notes": "Give wax impression to Karee/Wington", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487427,14 +485129,14 @@ { "id": 3631, "notes": "Agree to get polishing paste from Cara/Wington Food", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -487455,11 +485157,11 @@ { "id": 3632, "notes": "Get polishing paste from Cara/Wington Food", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487467,7 +485169,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -487488,11 +485190,11 @@ { "id": 3636, "notes": "Farley/Molten Meadows agrees to get a makeover", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487500,7 +485202,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -487521,11 +485223,11 @@ { "id": 3633, "notes": "Exchange paste for dentures", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1500, "items_required": [ { @@ -487565,7 +485267,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487594,14 +485296,14 @@ { "id": 3635, "notes": "Agree to help Edgar/Molten Meadows cheer Farley up", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -487622,11 +485324,11 @@ { "id": 3637, "notes": "Agrees to find someone to buff out Farley's chipped nails.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Wait, never mind about the nails yet, you haven't given me everything yet!", @@ -487652,11 +485354,11 @@ { "id": 3639, "notes": "Get cloth tape measure from Barb/Shellton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487664,7 +485366,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -487685,11 +485387,11 @@ { "id": 3640, "notes": "Get Farley's/Molten Meadows Measurements.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487718,11 +485420,11 @@ { "id": 3641, "notes": "Agree to exchange leather for shoes Hershel/Appleton ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have those.", @@ -487746,14 +485448,14 @@ { "id": 3642, "notes": "Agree to trade Su Comida/Sand Isle 3 Gen'l Store - 12 bundles of sage for jojoba oil", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -487774,11 +485476,11 @@ { "id": 3643, "notes": "Give Hershel/Appleton leather [$1400 costs}", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487811,7 +485513,7 @@ { "id": 3644, "notes": "A bundle of Sage/just west of Santon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -487819,7 +485521,7 @@ "y": 440 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487851,7 +485553,7 @@ { "id": 3645, "notes": "A bundle of sage/south of skull in Santon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -487859,7 +485561,7 @@ "y": 449 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487891,7 +485593,7 @@ { "id": 3646, "notes": "A bundle of Sage/Northwest of Santon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -487899,7 +485601,7 @@ "y": 431 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487931,7 +485633,7 @@ { "id": 3647, "notes": "A bundle of Sage/Northeast of Sandy Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -487939,7 +485641,7 @@ "y": 440 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -487971,7 +485673,7 @@ { "id": 3648, "notes": "A bundle of Sage/East of Sandy Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -487979,7 +485681,7 @@ "y": 447 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488011,7 +485713,7 @@ { "id": 3649, "notes": "A bundle of Sage/Southeast of Sandy Meadows/skull", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -488019,7 +485721,7 @@ "y": 449 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488051,7 +485753,7 @@ { "id": 3650, "notes": "A bundle of Sage/Southwest of Sandy Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -488059,7 +485761,7 @@ "y": 450 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488091,7 +485793,7 @@ { "id": 3651, "notes": "A bundle of Sage/Dust Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -488099,7 +485801,7 @@ "y": 419 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488131,7 +485833,7 @@ { "id": 3652, "notes": "A bundle of Sage/Northwest of Pyramid on Sand Isle 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -488139,7 +485841,7 @@ "y": 450 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488171,7 +485873,7 @@ { "id": 3653, "notes": "A bundle of Sage/North of teepees on Sand Isle 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -488179,7 +485881,7 @@ "y": 443 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488211,7 +485913,7 @@ { "id": 3654, "notes": "A bundle of Sage/Northeast of Odysseus' hut/Sand Isle 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -488219,7 +485921,7 @@ "y": 442 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488251,7 +485953,7 @@ { "id": 3655, "notes": "A bundle of Sage/Northwest of Odysseus' hut/Sand Isle 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -488259,7 +485961,7 @@ "y": 439 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488291,11 +485993,11 @@ { "id": 3656, "notes": "Exchange 12 sage bundles for jojoba oil from Su Comida/Sand Isle 3 Gen'l Store", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488328,11 +486030,11 @@ { "id": 3657, "notes": "Trade Hershel/Appleton Jojoba oil for Farley's new shoes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488365,14 +486067,14 @@ { "id": 3658, "notes": "Zerena/Hoof agrees to make Farley's new clothes.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -488393,11 +486095,11 @@ { "id": 3659, "notes": "Give Zerena/Hoof Farley's Measurements.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have those! You'll need to get your friend's measurements.", @@ -488423,21 +486125,21 @@ { "id": 3660, "notes": "Have Albert Junker/Hoof order fabric (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Happy to do that for her! Zerena sure has a nice smile. I'm expecting my supplier sometime today. He usually carries tons of stuff. Hopefully he'll have this on his boat. Then you'll be able to get it today.", "requires_awardid": null, "requires_questid_completed": [], @@ -488451,11 +486153,11 @@ { "id": 3661, "notes": "Get fabric from Albert Junker/Hoof", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488467,7 +486169,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -488488,11 +486190,11 @@ { "id": 3662, "notes": "Give Zerena/Hoof the material", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488525,11 +486227,11 @@ { "id": 3663, "notes": "Get buttons from Barb Sower/Shellton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488537,7 +486239,7 @@ "quantity": 24 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -488558,11 +486260,11 @@ { "id": 3664, "notes": "Give Zerena/Hoof the buttons/Get clothes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1200, "items_required": [ { @@ -488599,11 +486301,11 @@ { "id": 3665, "notes": "Give Farley/Molten Meadows the shirt.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488632,11 +486334,11 @@ { "id": 3666, "notes": "Give Farley/Molten Meadows the suit.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488667,14 +486369,14 @@ { "id": 3667, "notes": "Offer Farley/Molten Meadows the shoes.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -488695,11 +486397,11 @@ { "id": 3668, "notes": "Get argyle socks from Yolanda/Hoof", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488707,7 +486409,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -488728,11 +486430,11 @@ { "id": 3669, "notes": "Give Farley/Molten Meadows the argyle socks.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488761,11 +486463,11 @@ { "id": 3670, "notes": "Tuque agrees to buff out Farley's chipped nails.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have those!", @@ -488789,22 +486491,22 @@ { "id": 3671, "notes": "rewards you for completing part of the extreme makeoever", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -488817,11 +486519,11 @@ { "id": 3672, "notes": "Get wool from Candide/Eldorado for Farley's hair.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488829,7 +486531,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -488850,11 +486552,11 @@ { "id": 3673, "notes": "Get dyed toupée from Yahzi/Sandy Meadows ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488887,14 +486589,14 @@ { "id": 3674, "notes": "Yahzi/Sandy Meadows agrees to create toupée", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -488915,11 +486617,11 @@ { "id": 3675, "notes": "Give Farley/Molten Meadows the toupée", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488948,11 +486650,11 @@ { "id": 3676, "notes": "Farley checks that you've gotten him everything on the list.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -488967,7 +486669,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Well, you've certainly done a fine job of making over my appearance. Except for one thing! What about my nails? They look wretched. Just wretched!", "requires_awardid": null, "requires_questid_completed": [ @@ -488987,11 +486689,11 @@ { "id": 3677, "notes": "Give Farley/Molten Meadows the shoes.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489020,11 +486722,11 @@ { "id": 3678, "notes": "Try to give Farley the suit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "I can't put on a suit without putting on a shirt first! Gesh! ", @@ -489034,7 +486736,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "I can't put on a suit without putting on a shirt first! Gesh! ", "requires_awardid": null, "requires_questid_completed": [], @@ -489048,11 +486750,11 @@ { "id": 3682, "notes": "Karee Denin/Wington checks to see if you have 25%", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You need to build up your adventuring muscles. Come back once you've met Patsy, Sir Sleepwell's loyal servant.", @@ -489062,7 +486764,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Terrific! Looks like you've been adventurous enough to meet Patsy, Sir Sleepwell's loyal servant. Ready for another adventure?", "requires_awardid": 1, "requires_questid_completed": [], @@ -489076,11 +486778,11 @@ { "id": 3683, "notes": "Karee Denin/Wington checks to see if you have 50%", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Looks like you need to build up your adventuring muscles a bit more. Come back once you've visited Pirate Isle.", @@ -489090,7 +486792,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Looks like you've got exactly what it takes to do this job for me.", "requires_awardid": 2, "requires_questid_completed": [], @@ -489104,21 +486806,21 @@ { "id": 3679, "notes": "Check to see if Farley's Extreme Makeover is complete (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 28, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "(Farley flashes his newly repaired and buffed hands at you.)", "requires_awardid": null, "requires_questid_completed": [], @@ -489132,21 +486834,21 @@ { "id": 3680, "notes": "Ask Zerena/Hoof Inn about making socks/tracking", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "I don't. However, my neighbor Yolanda has been knitting up a storm. I bet she could help you. She lives just below the apple trees.", "requires_awardid": null, "requires_questid_completed": [], @@ -489161,15 +486863,13 @@ "id": 3681, "notes": "End quest at Edgar's/Molten {min $4000 travel/exps}", "title": "Farley's Extreme Makeover", - "requires_questid_npc": [ - 3634 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 75000, "items_gained": [], "quest_points": 325, @@ -489180,7 +486880,9 @@ "success_npc_chat": "And he looks amazing. I can't thank you enough. He's a new man because of you. Here, please take this as a gesture of my deep gratitude.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3634 + ], "hide_reply_on_fail": false, "difficulty": "Advanced", "author": "Desertmorn", @@ -489190,11 +486892,11 @@ { "id": 3684, "notes": "Karee Denin/Wington checks to see if you have 75%", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Looks like you need to build up your adventure muscles just a bit more. Come back once you are able to visit those fluffy isles in the sky!", @@ -489204,7 +486906,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Wow. You've got some seriously impressive adventuring skills. This errand should be a breeze for you.", "requires_awardid": 3, "requires_questid_completed": [], @@ -489218,11 +486920,11 @@ { "id": 3685, "notes": "Agree to make some simple deliveries/Karee Dentin/Wington", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489251,11 +486953,11 @@ { "id": 3686, "notes": "Deliver a toothbrush to River/Soaring Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489284,11 +486986,11 @@ { "id": 3687, "notes": "Deliver a toothbrush to Frederick/Soaring Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489296,7 +486998,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -489317,11 +487019,11 @@ { "id": 3688, "notes": "Deliver a toothbrush to Willow/Soaring Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489329,7 +487031,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -489350,11 +487052,11 @@ { "id": 3689, "notes": "Deliver a toothbrush to Harmony/Soaring Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489362,7 +487064,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -489383,11 +487085,11 @@ { "id": 3690, "notes": "Deliver a toothbrush to Rainey/Souring Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489395,7 +487097,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -489416,11 +487118,11 @@ { "id": 3691, "notes": "Deliver a toothbrush to Melody/Soaring Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489428,7 +487130,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -489449,11 +487151,11 @@ { "id": 3692, "notes": "Deliver a toothbrush to Sunny/Soaring Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489461,7 +487163,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -489482,11 +487184,11 @@ { "id": 3693, "notes": "Deliver a toothbrush to Storm/Soaring Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489494,7 +487196,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -489522,7 +487224,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Looks like you aren't quite done with the deliveries. Come back when you are! Thanks.", @@ -489552,11 +487254,11 @@ { "id": 3695, "notes": "Agree to make simple delivery to Torrid For Karee Dentin/Wington", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489585,11 +487287,11 @@ { "id": 3696, "notes": "Have Liam Flux/Wington reinforce the toothbrushes (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489601,7 +487303,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -489622,11 +487324,11 @@ { "id": 3697, "notes": "Deliver the toothbrushes to Laurence/Torrid", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489656,15 +487358,13 @@ "id": 3698, "notes": "End quest back at Karee Dentin/Wington {$1600 travel exp} ", "title": "Karee Dentin's Camel Toothbrush", - "requires_questid_npc": [ - 3224 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 4500, "items_gained": [], "quest_points": 75, @@ -489675,7 +487375,9 @@ "success_npc_chat": "I'm so glad he was pleased. Thanks for a job well done. Here's your pay!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3224 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Desertmorn", @@ -489685,11 +487387,11 @@ { "id": 3699, "notes": "Agree to make deliveries to Molten Meadows for Karee Dentin/Wington {$600 travel costs}", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489697,7 +487399,7 @@ "quantity": 8 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -489718,11 +487420,11 @@ { "id": 3700, "notes": "Deliver a toothbrush to Liza/Molten Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489751,11 +487453,11 @@ { "id": 3701, "notes": "Deliver a toothbrush to Tuque/Molten Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489784,11 +487486,11 @@ { "id": 3702, "notes": "Deliver a toothbrush to Bowen/Molten Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489817,11 +487519,11 @@ { "id": 3703, "notes": "Deliver a toothbrush to Peru/Molten Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489829,7 +487531,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -489850,11 +487552,11 @@ { "id": 3704, "notes": "Deliver a toothbrush to Dr. Fernlove/Molten Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489883,11 +487585,11 @@ { "id": 3705, "notes": "Deliver a toothbrush to Farley/Molten Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489916,11 +487618,11 @@ { "id": 3706, "notes": "Deliver a toothbrush to Edgar/Molten Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489949,11 +487651,11 @@ { "id": 3707, "notes": "Deliver a toothbrush to Chaffe/Molten Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -489982,11 +487684,11 @@ { "id": 3708, "notes": "Deliver a toothbrush to Ricky/Molten Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490015,11 +487717,11 @@ { "id": 3709, "notes": "Deliver 2 of Karee's special toothbrushes to Cupid/Igneous", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490052,11 +487754,11 @@ { "id": 3710, "notes": "Deliver a toothbrush to Felton/Flipperton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490064,7 +487766,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490085,11 +487787,11 @@ { "id": 3711, "notes": "Deliver a toothbrush to Waverly/Flipperton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490097,7 +487799,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490118,11 +487820,11 @@ { "id": 3712, "notes": "Deliver a toothbrush to Sandra/Flipperton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490130,7 +487832,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490151,11 +487853,11 @@ { "id": 3713, "notes": "Deliver a toothbrush to Helga/Flipperton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490163,7 +487865,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490184,11 +487886,11 @@ { "id": 3714, "notes": "Deliver a toothbrush to Flavius/Flipperton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490196,7 +487898,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490217,11 +487919,11 @@ { "id": 3715, "notes": "Deliver a toothbrush to Nolan/Flipperton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490229,7 +487931,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490250,11 +487952,11 @@ { "id": 3716, "notes": "Deliver a toothbrush to Fin/Flipperton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490262,7 +487964,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490283,11 +487985,11 @@ { "id": 3717, "notes": "Deliver a toothbrush to Iona/Flipperton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490295,7 +487997,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490316,11 +488018,11 @@ { "id": 3718, "notes": "Deliver a toothbrush to Mabel/Flipperton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490328,7 +488030,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490349,11 +488051,11 @@ { "id": 3719, "notes": "Deliver a toothbrush to Trixie/Flipperton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490361,7 +488063,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490382,11 +488084,11 @@ { "id": 3720, "notes": "Karee checks to see if you've delivered the toothbrushes to Molten Meadows.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You haven't delivered all the toothbrushes yet. Please do that and then come back.", @@ -490396,7 +488098,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Hmmm. Farley is the dummy, right? And on Ricky, I hadn't planned on giving toothbrushes to businesses, but there is no reason not to! In the meantime you've done a great job so far. Ready to deliver this next set?", "requires_awardid": null, "requires_questid_completed": [ @@ -490418,14 +488120,14 @@ { "id": 3721, "notes": "John O'Lantern sends you out to the pumpkin patch.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490446,11 +488148,11 @@ { "id": 3722, "notes": "Agree to deliver toothbrushes to Flipperton for Karee/Wington {$900 travel costs}", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490458,7 +488160,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490479,11 +488181,11 @@ { "id": 3724, "notes": "Karee checks Flipperton/deliveries. {Karee Shares More Toothbrushes!}", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You haven't delivered all the toothbrushes yet. Please do that and then come back.", @@ -490515,11 +488217,11 @@ { "id": 3723, "notes": "Agree to make a delivery to Cupid Karee/Wington {$1500 travel costs}", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490531,7 +488233,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490552,7 +488254,7 @@ { "id": 3726, "notes": "Complete Karee Dentin's Gift to Cupid {min $3000 travel exp} ", - "title": "", + "title": null, "requires_questid_npc": [ 14, 1087, @@ -490560,7 +488262,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490594,11 +488296,11 @@ { "id": 3725, "notes": "Karee checks to see if you've delivered the last of the toothbrushes ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You haven't delivered all the toothbrushes yet. Please do that and then come back.", @@ -490608,7 +488310,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Looks like you've done a great job! I suppose you are tired of delivering things and want to be paid now?", "requires_awardid": null, "requires_questid_completed": [ @@ -490629,14 +488331,14 @@ { "id": 3727, "notes": "Agree to help Zachava", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490661,7 +488363,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490690,7 +488392,7 @@ { "id": 3729, "notes": "+3 pumpkin for John O'Lantern", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -490698,7 +488400,7 @@ "y": 271 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490714,7 +488416,7 @@ "warp_x": null, "warp_y": null, "success_message": "You collected three Pumpkins! ", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -490729,21 +488431,21 @@ { "id": 3730, "notes": "in Use for Ford Prefect", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 0, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "And yay! we are back to chat point #0", "requires_awardid": null, "requires_questid_completed": [], @@ -490757,14 +488459,14 @@ { "id": 3731, "notes": "John O'Lantern sends to to Arbuckle with the pumpkins. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490785,11 +488487,11 @@ { "id": 3732, "notes": "Arbuckle takes pumpkins, starts carving, sends you for stump. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490818,7 +488520,7 @@ { "id": 3733, "notes": "Dig up a stump for Arbuckle. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -490826,7 +488528,7 @@ "y": 176 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490842,7 +488544,7 @@ "warp_x": null, "warp_y": null, "success_message": "You heave one of the stumps out of the ground, but you can't figure out why Arbuckle thinks it's special. ", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -490862,7 +488564,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490874,7 +488576,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 50, @@ -490895,22 +488597,22 @@ { "id": 3735, "notes": "You've met the Pallas cats. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -490923,14 +488625,14 @@ { "id": 3736, "notes": "You propose the idea of a pumpkin jungle gym.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490951,11 +488653,11 @@ { "id": 3737, "notes": "Batkhuyag confirms that you're in the right place. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -490963,7 +488665,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -490984,7 +488686,7 @@ { "id": 3738, "notes": "Kittens love pumpkins. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -490992,10 +488694,10 @@ "y": 181 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -491003,7 +488705,7 @@ "warp_x": null, "warp_y": null, "success_message": "Immediately, the kittens leap away and scramble into, out of, between, and over the pumpkins! Batkhuyag immediately flops down and falls asleep, but Lianhua looks like she has something to say.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -491017,12 +488719,10 @@ "id": 3739, "notes": "Lianhua rewards you", "title": "The Pallas Cat Pumpkin Playground", - "requires_questid_npc": [ - 3734 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -491030,7 +488730,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 35, @@ -491042,6 +488742,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 3734, 3738 ], "hide_reply_on_fail": false, @@ -491054,12 +488755,10 @@ "id": 3740, "notes": "Vole Hole #7", "title": "Vole Hole #7", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You have already completed this vole hole.", @@ -491083,14 +488782,14 @@ { "id": 3741, "notes": "Agree to help Ed Klippit", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -491111,11 +488810,11 @@ { "id": 3742, "notes": "Get cleaning supplies from Ethel", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -491123,7 +488822,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -491131,7 +488830,7 @@ "warp_x": null, "warp_y": null, "success_message": "Ethel Barryjam gave you the Cleaning Supplies.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -491148,7 +488847,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -491177,14 +488876,14 @@ { "id": 3744, "notes": "Agree to find Fergus' 2 gold chests", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -491205,7 +488904,7 @@ { "id": 3745, "notes": "Find a gold chest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -491213,7 +488912,7 @@ "y": 312 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -491244,7 +488943,7 @@ { "id": 3746, "notes": "Find a gold chest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -491252,7 +488951,7 @@ "y": 331 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -491284,12 +488983,10 @@ "id": 3747, "notes": "Give Fergus his two Gold Chests", "title": "Fergus O'Toole's Lost Chests", - "requires_questid_npc": [ - 2576 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -491316,7 +489013,9 @@ "success_npc_chat": "Ah ha! Me chests! (He carefully opens one of them then closes it again before you get a chance to see what's inside.) Here. Take this fer yer troubles. Now leave me be.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2576 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Miranda", @@ -491326,22 +489025,22 @@ { "id": 3748, "notes": "Fergus' New pot quest completed. Tracking to get rid of Ferrel Ironman replies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -491354,14 +489053,14 @@ { "id": 3749, "notes": "You annoy Grendel", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -491369,7 +489068,7 @@ "warp_x": 798, "warp_y": 170, "success_message": "Looks like you've made a mess of things!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -491382,11 +489081,11 @@ { "id": 3750, "notes": "Get bone from Rocco", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 100, + "max_repeats": 100, "money_cost": 2100, "items_required": [ { @@ -491415,14 +489114,14 @@ { "id": 3751, "notes": "Grendel sends you to the dock ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -491443,14 +489142,14 @@ { "id": 3752, "notes": "Agree to find a bone for Grendel", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -491475,7 +489174,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -491508,14 +489207,14 @@ { "id": 3754, "notes": "Carmina tells you about the fox problem", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -491536,22 +489235,22 @@ { "id": 3755, "notes": "You ride out to catch the scent.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -491564,7 +489263,7 @@ { "id": 3756, "notes": "You find fox tracks #1 at the veggie patch.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -491572,7 +489271,7 @@ "y": 189 }, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -491599,7 +489298,7 @@ { "id": 3757, "notes": "You find fox tracks #2 at the honey tree.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -491607,7 +489306,7 @@ "y": 205 }, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, find nothing.", @@ -491617,7 +489316,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Looking closely, you spot more pawprints. A lot more- it looks like this is a favorite spot for the fox. You also spot scattered berries on the ground under the tree- they're squished, but you can identify two varieties.", "requires_awardid": null, "requires_questid_completed": [], @@ -491634,7 +489333,7 @@ { "id": 3758, "notes": "Find more tracks at the raspberry/thimbleberry pile.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -491642,7 +489341,7 @@ "y": 239 }, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, find nothing.", @@ -491652,7 +489351,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "It looks like you've found another foxy favorite spot as there are plenty of fox prints all around. A smattering of silvery, gold, and coppery dust is faintly visible on the grass.", "requires_awardid": null, "requires_questid_completed": [], @@ -491669,11 +489368,11 @@ { "id": 3759, "notes": "Find Renard Jr. on the rocks", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "(Grins at you, tongue lolling out of his mouth.)", @@ -491700,14 +489399,14 @@ { "id": 3760, "notes": "Ruthie tells you about Old John and the baseball cap.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 60, "items_gained": [], "quest_points": 0, @@ -491728,14 +489427,14 @@ { "id": 3761, "notes": "OPTION- Stop quest here. Do not help R.J. Back to Carmina.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -491756,11 +489455,11 @@ { "id": 3762, "notes": "OR OPTION- Help R.J. Put him in your pack. Do not do this at home.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -491768,7 +489467,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -491789,11 +489488,11 @@ { "id": 3763, "notes": "Offer cap to Ruthie. I want to check that they bought the cap, so taking AND giving in same cp, but they must buy the cap 1st or this action makes no sense.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -491826,14 +489525,14 @@ { "id": 3764, "notes": "IF YOU CONTINUED- Tell Carmina you found him. Continue on.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -491854,7 +489553,7 @@ { "id": 3765, "notes": "Find Orly the Owl", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -491862,7 +489561,7 @@ "y": 275 }, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], "fail_npc_chat": "You search high and low all around, but find nothing interesting.", @@ -491889,11 +489588,11 @@ { "id": 3766, "notes": "Leave Renard Jr. with Owl Friend to watch fireworks. Get mini-reward from Renard.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -491905,7 +489604,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -491930,10 +489629,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 40000, "items_gained": [], "quest_points": 275, @@ -491954,22 +489653,22 @@ { "id": 3768, "notes": "You made a decision about R.J., and you cannot change your mind now. (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -491982,11 +489681,11 @@ { "id": 3769, "notes": "Give the cap to Old John. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -492016,15 +489715,13 @@ "id": 3770, "notes": "Endgame. ", "title": "Ruthie and the Birthday Cap", - "requires_questid_npc": [ - 3313 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3500, "items_gained": [], "quest_points": 50, @@ -492036,6 +489733,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 3313, 3769 ], "hide_reply_on_fail": false, @@ -492047,14 +489745,14 @@ { "id": 3771, "notes": "Lelu sends player back to Tail Isle ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -492075,14 +489773,14 @@ { "id": 3772, "notes": "Agree to help Lelu", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -492103,21 +489801,21 @@ { "id": 3773, "notes": "Talk to Hessa (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "I remember that lady! Bless her heart! She and her husband spent hours looking for her necklace. If that darned packrat hadn't run out and scared the camel, I doubt she would have lost it.", "requires_awardid": null, "requires_questid_completed": [], @@ -492131,7 +489829,7 @@ { "id": 3774, "notes": "Magnify before raking, southern rat midden.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -492139,7 +489837,7 @@ "y": 448 }, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -492150,7 +489848,7 @@ "warp_x": null, "warp_y": null, "success_message": "No sense using the magnifying glass. There is too much cactus and sticks in the way to see much of anything. Maybe you need to remove some of the debris first. ", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -492166,7 +489864,7 @@ { "id": 3775, "notes": "Dig before raking, packrat nest south of Santon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -492174,7 +489872,7 @@ "y": 448 }, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -492185,7 +489883,7 @@ "warp_x": null, "warp_y": null, "success_message": "The midden is piled high with bits and pieces of sticks and cholla. The shovel can't break through the mess. Maybe you can rake away some of the stuff.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -492201,7 +489899,7 @@ { "id": 3776, "notes": "Rake 1st time, southern packrat's nest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -492209,7 +489907,7 @@ "y": 448 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -492241,7 +489939,7 @@ { "id": 3777, "notes": "Rake again, southern packrat's nest- find locket", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -492249,7 +489947,7 @@ "y": 448 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -492257,7 +489955,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -492285,7 +489983,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -492314,7 +490012,7 @@ { "id": 3779, "notes": "Dig before raking, packrat nest north of Santon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -492322,7 +490020,7 @@ "y": 436 }, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but uncover nothing interesting.", @@ -492333,7 +490031,7 @@ "warp_x": null, "warp_y": null, "success_message": "You try to dig through the tangle of cholla, branches and other debris but it is too difficult. Looks like you need to try raking first.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -492349,22 +490047,22 @@ { "id": 3784, "notes": "Agree to ask Karee Farley/toothbrush tracking", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -492377,7 +490075,7 @@ { "id": 3780, "notes": "Magnify before raking, northern rat midden.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -492385,7 +490083,7 @@ "y": 436 }, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -492396,7 +490094,7 @@ "warp_x": null, "warp_y": null, "success_message": "No sense using the magnifying glass. There is too much cactus and sticks in the way to see much of anything. Maybe you need to remove some of the debris first. ", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -492412,7 +490110,7 @@ { "id": 3781, "notes": "Rake 1st time, northern packrat's nest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -492420,7 +490118,7 @@ "y": 436 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -492452,7 +490150,7 @@ { "id": 3782, "notes": "Rake again, northern packrat's nest - find pocketwatch", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -492460,7 +490158,7 @@ "y": 436 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -492468,7 +490166,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -492493,12 +490191,10 @@ "id": 3783, "notes": "Give Ed his grandfather's pocket watch. ", "title": "A Pocket Watch For Ed", - "requires_questid_npc": [ - 3773 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -492517,7 +490213,9 @@ "success_npc_chat": "You have made my day! Thank you so much. Here, a small reward for reminding me of a great man.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3773 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Desertmorn", @@ -492527,17 +490225,17 @@ { "id": 3785, "notes": "Renard tells you about his kits.", - "title": "", + "title": null, "requires_questid_npc": [ 3767, 1440 ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -492558,11 +490256,11 @@ { "id": 3786, "notes": "You found Tricksy (Dew fox)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Aha, so my father sent you, did he?", @@ -492586,14 +490284,14 @@ { "id": 3787, "notes": "Tricksy tells you about the gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -492614,7 +490312,7 @@ { "id": 3788, "notes": "Collect nectar sample", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -492622,7 +490320,7 @@ "y": 321 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -492638,7 +490336,7 @@ "warp_x": null, "warp_y": null, "success_message": "You collected a Nectar Sample from the iris to give to Renard from his daughter Tricksy!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -492654,14 +490352,14 @@ { "id": 3789, "notes": "Found Wily (Lost fox)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -492669,7 +490367,7 @@ "warp_x": null, "warp_y": null, "success_message": "You found Wily, one of Renard's children!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -492682,14 +490380,14 @@ { "id": 3790, "notes": "Wily sends you for gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -492710,7 +490408,7 @@ { "id": 3791, "notes": "Procure honeycomb", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -492718,7 +490416,7 @@ "y": 351 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -492734,7 +490432,7 @@ "warp_x": null, "warp_y": null, "success_message": "You dug up a particularly large Honeycomb from under the wagon station!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -492749,14 +490447,14 @@ { "id": 3792, "notes": "Found Renard Jr.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -492764,7 +490462,7 @@ "warp_x": null, "warp_y": null, "success_message": "You found Renard's son, Renard Junior!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -492777,14 +490475,14 @@ { "id": 3793, "notes": "Renard Jr.'s present", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -492805,11 +490503,11 @@ { "id": 3794, "notes": "Find Witsy (Shell fox)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Dear old dad! I keep meaning to go back and visit the old dog, but frankly, I don't have the money to catch a boat there, and the dock patrols are... well, I haven't gotten down. How's he doing?", @@ -492833,14 +490531,14 @@ { "id": 3795, "notes": "Witsy's gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -492861,7 +490559,7 @@ { "id": 3796, "notes": "Procure well sample", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -492869,7 +490567,7 @@ "y": 319 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -492885,7 +490583,7 @@ "warp_x": null, "warp_y": null, "success_message": "You took a sample from the water in the Wishing Well to give to Renard as a gift from his son Witsy.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -492900,11 +490598,11 @@ { "id": 3797, "notes": "Renard checks for gifts, part 1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -492923,8 +490621,8 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [ 3788, @@ -492949,7 +490647,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -492961,7 +490659,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 50000, "items_gained": [], "quest_points": 250, @@ -492982,14 +490680,14 @@ { "id": 3799, "notes": "Agree to look for Zamora's family jewel (fix for an old quest)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -493010,13 +490708,11 @@ { "id": 3800, "notes": "Holli checks your levels and sends you to Martina", - "title": "", - "requires_questid_npc": [ - 2267 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I'm sorry but I think you are going to have to be a lot more adventurous this time. Come back when you can travel to ALL of our beautiful islands.", @@ -493030,7 +490726,9 @@ "success_npc_chat": "This is just perfect! Now off you go to Whorl Isle to see Martina, she's my wedding planner. Here's some traveling money, now get a move on, she's expecting you!", "requires_awardid": 3, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2267 + ], "hide_reply_on_fail": true, "difficulty": null, "author": null, @@ -493040,11 +490738,11 @@ { "id": 3801, "notes": "Martina send you to Web Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493056,7 +490754,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -493077,11 +490775,11 @@ { "id": 3802, "notes": "You give Lilibeth the order form", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493112,11 +490810,11 @@ { "id": 3803, "notes": "Lilibeth gives you her invoice and sample.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493128,7 +490826,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -493151,11 +490849,11 @@ { "id": 3804, "notes": "You give Shoneah Martina's order form", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493186,11 +490884,11 @@ { "id": 3805, "notes": "Shoneah givres you his invoice and samples.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493202,7 +490900,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -493225,14 +490923,14 @@ { "id": 3807, "notes": "Aili mentions the strange prints in the sand", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -493253,7 +490951,7 @@ { "id": 3808, "notes": "Phoenix prints", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -493261,10 +490959,10 @@ "y": 419 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -493272,7 +490970,7 @@ "warp_x": null, "warp_y": null, "success_message": "You hardly need your magnifying glass to see the enormous prints left in the sand. You observe carefully: three talons facing forward, and one behind. The prints are very deep. Could there be more?", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -493287,7 +490985,7 @@ { "id": 3809, "notes": "Halcyon prints", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -493295,10 +490993,10 @@ "y": 420 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -493306,7 +491004,7 @@ "warp_x": null, "warp_y": null, "success_message": "You don't need your magnifying glass to see these enormous prints. Three long toes stretch forward, well spread. The heel is long and narrow.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -493321,7 +491019,7 @@ { "id": 3810, "notes": "Phoenix feather", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -493329,7 +491027,7 @@ "y": 418 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493337,7 +491035,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -493360,7 +491058,7 @@ { "id": 3811, "notes": "Halcyon feather", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -493368,7 +491066,7 @@ "y": 421 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493376,7 +491074,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -493399,11 +491097,11 @@ { "id": 3812, "notes": "Is there more to find? (3808-3811 chain to this. Imaginary flagcount check)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "Could there be more to find?", @@ -493414,7 +491112,7 @@ "warp_x": null, "warp_y": null, "success_message": "You look around some more, but there doesn't seem to be anything left to find for Aili. ", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [ 3808, @@ -493436,7 +491134,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493456,7 +491154,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 75, @@ -493479,14 +491177,14 @@ { "id": 3814, "notes": "Olivia asked you to pick up her holiday cookie ingredients (need to choose difficulty level after this stage)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -493507,11 +491205,11 @@ { "id": 3815, "notes": "You chose NOT to go to Cloud Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493519,7 +491217,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -493540,11 +491238,11 @@ { "id": 3816, "notes": "You chose TO go to Cloud Isle. You CAN select this path even if you can't get to Cloud, because why not; but you have to double-confirm that you want to do that.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493573,11 +491271,11 @@ { "id": 3817, "notes": "Get spices from Rika", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -493606,11 +491304,11 @@ { "id": 3818, "notes": "Get chocolate from Emma", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -493639,11 +491337,11 @@ { "id": 3819, "notes": "Get sprinkles from Hansel if and only if you chose quest path 3816", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493651,7 +491349,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -493672,11 +491370,11 @@ { "id": 3820, "notes": "Give the spices and the chocolate; this starts endgame chain for the no-Cloud path", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493709,11 +491407,11 @@ { "id": 3821, "notes": "Give the sprinkles, if you got them; chains to 3823 to finish quest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493746,11 +491444,11 @@ { "id": 3822, "notes": "Give the spices and the chocolate; this starts endgame chain for Cloud path", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493785,11 +491483,11 @@ { "id": 3823, "notes": "Endgame for Cloud path", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493818,11 +491516,11 @@ { "id": 3824, "notes": "Endgame for non-Cloud path", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493830,7 +491528,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 20000, "items_gained": [], "quest_points": 0, @@ -493852,15 +491550,13 @@ "id": 3825, "notes": "Finish Olivia's quest. You can now learn any of the recipes you've helped her with. These all come from my family's holiday cookie recipe collection", "title": "Olivia's Holiday Cookies", - "requires_questid_npc": [ - 3074 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 200, @@ -493871,7 +491567,9 @@ "success_npc_chat": " I'd best get to baking. Say... since you've been such a big help, I'll let you in on a secret. Would you be interested in learning my cookie recipes?", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3074 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "BrightLights", @@ -493881,22 +491579,22 @@ { "id": 3826, "notes": "You chose your path for Olivia's quest (allows for dialogue checking so you can't do 3814 and log out and get into a muddle.) Chained from both options.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -493909,11 +491607,11 @@ { "id": 3827, "notes": "Olivia checks if you can go to Cloud Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "Hmm... it doesn't look like you can get to the Cloud Isles yet. If you can't get there, you'll have to wait until you can to finish this job for me. Do you really want to wait to finish this job until you can go to the Cloud Isles?", @@ -493923,7 +491621,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "It does look like you've been adventurous enough. Are you sure you're up for it?", "requires_awardid": 3, "requires_questid_completed": [], @@ -493937,14 +491635,14 @@ { "id": 3828, "notes": "You agree to help Kendi make sand soup.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -493965,11 +491663,11 @@ { "id": 3829, "notes": "Get nopales from Sando", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -493977,7 +491675,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494000,11 +491698,11 @@ { "id": 3830, "notes": "Get cilantro from Mandala", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494012,7 +491710,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494035,11 +491733,11 @@ { "id": 3831, "notes": "Get tomatillos from Loyada", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494047,7 +491745,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494070,11 +491768,11 @@ { "id": 3832, "notes": "Get serranos from Alati", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494082,7 +491780,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494105,11 +491803,11 @@ { "id": 3833, "notes": "Get onion from Yiska", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494117,7 +491815,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494138,11 +491836,11 @@ { "id": 3834, "notes": "Collecting items: start here, chains to 3835,3836", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494161,8 +491859,8 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [ 3829, @@ -494181,11 +491879,11 @@ { "id": 3835, "notes": "Take tomatillos and serranos; chains to 3836", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494197,15 +491895,15 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -494220,11 +491918,11 @@ { "id": 3836, "notes": "Take onion; chain end. Give 2 bowls soup", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494236,7 +491934,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494257,11 +491955,11 @@ { "id": 3837, "notes": "Bowl of soup for Yazhi", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494269,7 +491967,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494292,11 +491990,11 @@ { "id": 3838, "notes": "Bowl of soup for Yiska", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494304,7 +492002,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494329,7 +492027,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494361,14 +492059,14 @@ { "id": 3840, "notes": "Octavius instructs you to find a jeweler to have a necklace made.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494389,14 +492087,14 @@ { "id": 3841, "notes": "Deidra instructs you on where to find coral.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494417,7 +492115,7 @@ { "id": 3842, "notes": "Dig to find coral... or rather, Pearl. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -494425,7 +492123,7 @@ "y": 393 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -494436,7 +492134,7 @@ "warp_x": null, "warp_y": null, "success_message": "THUNK! Your shovel struck something hard... but it definitely wasn't coral! This clam does NOT look happy.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -494452,14 +492150,14 @@ { "id": 3843, "notes": "Pearl tells you where to find an algae sample.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494480,7 +492178,7 @@ { "id": 3844, "notes": "Dig on south Jungle... and get a wee bit of a surprise.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -494488,7 +492186,7 @@ "y": 339 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -494499,7 +492197,7 @@ "warp_x": 198, "warp_y": 341, "success_message": "You looked closely at the sand south of the double palm like Pearl suggested... but didn't watch your feet! Yikes! Now you're in the middle of the ocean! Maybe if you look, you can see where you can get your feet on the ground...", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -494515,7 +492213,7 @@ { "id": 3845, "notes": "Magnify to land on the rock.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -494523,7 +492221,7 @@ "y": 341 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -494534,7 +492232,7 @@ "warp_x": 199, "warp_y": 341, "success_message": "Whew... you got yourself onto the rock. It's a near thing. The rock is slippery with... algae! Maybe you can scrape some up with your shovel.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -494549,7 +492247,7 @@ { "id": 3846, "notes": "Dig to collect a sample.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -494557,7 +492255,7 @@ "y": 341 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494565,7 +492263,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494573,7 +492271,7 @@ "warp_x": null, "warp_y": null, "success_message": "You carefully collected a sample of Zooxanthellae, a type of algae! Now you'd better look closely for a way to get back to shore.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -494588,7 +492286,7 @@ { "id": 3847, "notes": "Magnify to go back to shore.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -494596,10 +492294,10 @@ "y": 341 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494607,7 +492305,7 @@ "warp_x": 199, "warp_y": 338, "success_message": "Whew- you made it back to shore without losing the algae sample! Time to head back to Pearl. Don't forget to bring her the twenty pearls!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -494622,11 +492320,11 @@ { "id": 3848, "notes": "Deliver algae and pearls to Pearl", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494663,11 +492361,11 @@ { "id": 3849, "notes": "Deidra makes the necklace.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494706,11 +492404,11 @@ { "id": 3850, "notes": "Deliver the necklace to Octavia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494722,7 +492420,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494744,12 +492442,10 @@ "id": 3851, "notes": "Give Octavius the Black Pearl from Octavia", "title": "Octavius Goes A-Courting", - "requires_questid_npc": [ - 3106 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494761,7 +492457,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 175, @@ -494772,7 +492468,9 @@ "success_npc_chat": "My Octavia! Sending me such a pearl- I've never seen one like it! I will swim to her soon! Here, take these- they washed up on shore the other day. I have no use for them. I'm coming, Octavia! (Dives into the water.)", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3106 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "BrightLights", @@ -494782,14 +492480,14 @@ { "id": 3852, "notes": "Yazhi doesn't have anything for Kendi's soup", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -494810,14 +492508,14 @@ { "id": 3853, "notes": "Frederick asks you to gather his ingredients", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 500, "items_gained": [], "quest_points": 0, @@ -494838,11 +492536,11 @@ { "id": 3854, "notes": "Rika sells you peppercorn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 250, "items_required": [ { @@ -494871,11 +492569,11 @@ { "id": 3855, "notes": "Ethel sells you a box of matzo", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 250, "items_required": [ { @@ -494904,7 +492602,7 @@ { "id": 3856, "notes": "Dig in vegetable garden for onions, celery", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -494912,7 +492610,7 @@ "y": 152 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494932,7 +492630,7 @@ "warp_x": null, "warp_y": null, "success_message": "You picked two Stalks of Celery and dug up a medium-sized Onion from the Wington Community Garden.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -494947,11 +492645,11 @@ { "id": 3857, "notes": "Give Frederick everything- chained to 3858,3859 to collect all items", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -494970,7 +492668,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Thank you very much! These vegetables look wonderfully fresh. They'll bring great flavor to the broth. Thank you for getting these for me- it's hard for a fellow like me to get around as well as I used to.", "requires_awardid": null, "requires_questid_completed": [ @@ -494987,11 +492685,11 @@ { "id": 3858, "notes": "Give Frederick everything- chained from 3857, to 3859 to collect all items", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495003,15 +492701,15 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -495028,7 +492726,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495036,7 +492734,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 100, @@ -495044,7 +492742,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completing Frederick's Matzo Ball Soup quest! You earned $5,000 and 100 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -495057,14 +492755,14 @@ { "id": 3860, "notes": "Cadence sends you to pick up seeds from her neighbors.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495085,11 +492783,11 @@ { "id": 3861, "notes": "Picked up seeds from Zachava", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495097,7 +492795,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495118,11 +492816,11 @@ { "id": 3862, "notes": "Picked up seeds from Dominique", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495130,7 +492828,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495151,11 +492849,11 @@ { "id": 3863, "notes": "Picked up seeds from Zamora", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495163,7 +492861,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495184,11 +492882,11 @@ { "id": 3864, "notes": "Picked up seeds from Gertrude", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495196,7 +492894,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495217,11 +492915,11 @@ { "id": 3865, "notes": "Picked up seeds from Elaina", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495229,7 +492927,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495250,11 +492948,11 @@ { "id": 3866, "notes": "Picked up seeds from Patience", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495262,7 +492960,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495283,11 +492981,11 @@ { "id": 3867, "notes": "Deliver the seeds to Cadence; run to the farrier.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495316,11 +493014,11 @@ { "id": 3868, "notes": "Pick up from Liam the farrier", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495332,7 +493030,7 @@ "quantity": 6 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495357,7 +493055,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495390,11 +493088,11 @@ { "id": 3870, "notes": "Mal gives you a cup of coffee.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -495402,7 +493100,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495423,14 +493121,14 @@ { "id": 3871, "notes": "Spike wants a new shield", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495451,11 +493149,11 @@ { "id": 3872, "notes": "Treeton library doesn't have the book; sends you to Crystalton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Oh, I'm so sorry. We actually don't have them on the shelves currently; they're on loan to... let me see... ah yes, Crystalton. They won't be due back here for another three weeks. You could always check with Crystalton to see if they have them available.", @@ -495479,11 +493177,11 @@ { "id": 3873, "notes": "Crystalton library says the books are on loan to Ted.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Normally I wouldn't do this, but since they are overdue you have my full permission to go over to Polar Isle to see that Ted and ask him if he ever intends to give them back!", @@ -495507,11 +493205,11 @@ { "id": 3874, "notes": "Ted refuses to give the books back.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Hmph! Take my books, I don't think so! I checked them out fair and square! I wouldn't give them to you even for a whole flagon of mead! (He coughs, loud and long.) Okay, maybe for a flagon of mead. But only then!", @@ -495535,11 +493233,11 @@ { "id": 3875, "notes": "Windy Pick sells you a 'flagon of mead' (really tea with honey.)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -495568,11 +493266,11 @@ { "id": 3876, "notes": "Give 100 acorns for testing Mal's quest.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [ { @@ -495580,14 +493278,14 @@ "quantity": 100 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Acorns granted!", "requires_awardid": null, "requires_questid_completed": [], @@ -495601,11 +493299,11 @@ { "id": 3877, "notes": "Swap Ted the tea for the books.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495638,11 +493336,11 @@ { "id": 3878, "notes": "Give Spike the books; she's going to need a minute or two...", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495650,7 +493348,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495671,14 +493369,14 @@ { "id": 3879, "notes": "Spike needs another minute.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495699,14 +493397,14 @@ { "id": 3880, "notes": "...and another minute.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495727,14 +493425,14 @@ { "id": 3881, "notes": "That's enough minutes. Spike tells you what she needs for her shield to be made.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495755,14 +493453,14 @@ { "id": 3882, "notes": "Xamba will make the shield, but boy, does he need a laundry list.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495783,11 +493481,11 @@ { "id": 3883, "notes": "Returning to Xamba with items part 1: wood and buckles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495806,8 +493504,8 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -495820,11 +493518,11 @@ { "id": 3884, "notes": "Returning to Xamba with items part 2: leather and money (chained from 3883)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 3000, "items_required": [ { @@ -495857,14 +493555,14 @@ { "id": 3889, "notes": "Christel tells you she will sell you a jack-in-the-box", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495872,7 +493570,7 @@ "warp_x": null, "warp_y": null, "success_message": "Christel is willing to sell you Jack-in-the-box toys for $50 each.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -495885,11 +493583,11 @@ { "id": 3885, "notes": "Xamba gives you the shield", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495897,7 +493595,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495918,11 +493616,11 @@ { "id": 3886, "notes": "Pablo will paint the shield for $1500", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1500, "items_required": [ { @@ -495951,11 +493649,11 @@ { "id": 3887, "notes": "Pablo painted the shield", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -495963,7 +493661,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -495988,7 +493686,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -496004,7 +493702,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 250, @@ -496025,11 +493723,11 @@ { "id": 3890, "notes": "Buy a jack-in-the-box companion from Christel", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 50, "items_required": [ { @@ -496058,14 +493756,14 @@ { "id": 3891, "notes": "Agree to have a pillow made for Bess", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496086,14 +493784,14 @@ { "id": 3892, "notes": "Barb Sower says she'll make a pillow", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496114,11 +493812,11 @@ { "id": 3893, "notes": "Get beeswax from Evelynn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -496147,11 +493845,11 @@ { "id": 3894, "notes": "Get paraffin wax from Phoebe Wares", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -496180,11 +493878,11 @@ { "id": 3895, "notes": "Give Barb Sower feathers and paraffin wax", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -496217,11 +493915,11 @@ { "id": 3896, "notes": "Give barb sower the beeswax (chained)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -496229,15 +493927,15 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -496250,11 +493948,11 @@ { "id": 3897, "notes": "Get pillow from Barb Sower", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -496262,7 +493960,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496287,7 +493985,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -496299,7 +493997,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 150, @@ -496320,14 +494018,14 @@ { "id": 3899, "notes": "Mal is incoherent. (Go talk to Polly.)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496348,14 +494046,14 @@ { "id": 3900, "notes": "Polly explains the problem...", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496376,14 +494074,14 @@ { "id": 3901, "notes": "Agree- sort of- to collect acorns for Mal/Polly.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496404,14 +494102,14 @@ { "id": 3908, "notes": "Offer to talk to Ted on Edward's behalf.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496432,11 +494130,11 @@ { "id": 3902, "notes": "Track Sahkyo (just for tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "Some say the look of knowledge does not shine from your eyes. Go back and learn.", @@ -496446,8 +494144,8 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -496460,11 +494158,11 @@ { "id": 3915, "notes": "You've heard the spiel from Hanska - Toy Soldier", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -496472,7 +494170,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496493,11 +494191,11 @@ { "id": 3903, "notes": "Give acorns and get fake coffee from Polly.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -496530,11 +494228,11 @@ { "id": 3904, "notes": "Give fake coffee to Mal.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -496563,14 +494261,14 @@ { "id": 3905, "notes": "Polly sends you to the dock to pick up the coffee.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496591,11 +494289,11 @@ { "id": 3906, "notes": "Pick up the coffee from the dock", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -496603,7 +494301,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496628,7 +494326,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -496636,7 +494334,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 100, @@ -496657,11 +494355,11 @@ { "id": 3909, "notes": "Talk to Ted.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "(Listens to what you have to say, face growing slowly more purple.)", @@ -496685,14 +494383,14 @@ { "id": 3910, "notes": "Ted throws you out.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496713,14 +494411,14 @@ { "id": 3911, "notes": "Optional: You feel so guilty telling Edward ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496741,14 +494439,14 @@ { "id": 3912, "notes": "Bang back into Ted's house.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496769,14 +494467,14 @@ { "id": 3913, "notes": "Ted agrees to read Edward's novel when it's done.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496801,7 +494499,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -496813,7 +494511,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 75, @@ -496834,21 +494532,21 @@ { "id": 3916, "notes": "The letter told you nothing", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Nothing? Well, dear, I didn't expect you would. Jack was always one to put my head in a whorl. Never could get to the point the way I'd have liked. Still...", "requires_awardid": null, "requires_questid_completed": [], @@ -496862,7 +494560,7 @@ { "id": 3917, "notes": "Animal tracks leading west to the beach", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -496870,7 +494568,7 @@ "y": 46 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -496881,7 +494579,7 @@ "warp_x": null, "warp_y": null, "success_message": "You can't make out what kind they are, but there are definitely animal tracks leading west to the beach- and drag marks, as though the creature had something in its mouth.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -496897,7 +494595,7 @@ { "id": 3918, "notes": "Imprint of toy soldier feet in the sandcastle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -496905,7 +494603,7 @@ "y": 45 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -496916,7 +494614,7 @@ "warp_x": null, "warp_y": null, "success_message": "Peering closely at the sandcastle, you notice the imprint of little feet... soldier feet? Could be! Who made this sandcastle?", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -496932,14 +494630,14 @@ { "id": 3919, "notes": "Edward sent the soldier off in a paper boat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -496960,7 +494658,7 @@ { "id": 3920, "notes": "Puppy paws (optional action)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -496968,7 +494666,7 @@ "y": 46 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -496979,7 +494677,7 @@ "warp_x": null, "warp_y": null, "success_message": "Out of the snow, you can clearly recognize the animal tracks as being dog paws. It looks like a dog was sitting around here watching something happen.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -496995,14 +494693,14 @@ { "id": 3921, "notes": "Agua demands a toll", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497023,14 +494721,14 @@ { "id": 3922, "notes": "John O'Lantern will let you pick the pumpkin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497051,7 +494749,7 @@ { "id": 3923, "notes": "Pick a pumpkin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -497059,7 +494757,7 @@ "y": 271 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497090,11 +494788,11 @@ { "id": 3924, "notes": "Deliver the pumpkin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497102,7 +494800,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497110,7 +494808,7 @@ "warp_x": null, "warp_y": null, "success_message": "You gave Agua the Rat-Sized Pumpkin. He told you what he knows about the whereabouts of the toy soldier.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -497123,7 +494821,7 @@ { "id": 3928, "notes": "Justin gives you Dalton's Sea Picture", - "title": "", + "title": null, "requires_questid_npc": [ 69, 102, @@ -497132,7 +494830,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497140,7 +494838,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497148,7 +494846,7 @@ "warp_x": null, "warp_y": null, "success_message": "Justin gave you Dalton's Sea Picture.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -497161,11 +494859,11 @@ { "id": 3925, "notes": "Polly sends you to Marina", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497194,11 +494892,11 @@ { "id": 3926, "notes": "Get mail sack from Marina", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497210,7 +494908,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497235,7 +494933,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497247,7 +494945,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 50000, "items_gained": [], "quest_points": 325, @@ -497255,7 +494953,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed The Steadfast Tin Soldier quest! You earned $50,000 and 325 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -497268,14 +494966,14 @@ { "id": 3948, "notes": "Dalton tells you to talk to Justin (dialogue purposes.)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497283,7 +494981,7 @@ "warp_x": null, "warp_y": null, "success_message": "Dalton seems to be having a little trouble.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -497296,14 +494994,14 @@ { "id": 3929, "notes": "Pegleg Johnny sends you to Martha", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497324,11 +495022,11 @@ { "id": 3930, "notes": "Martha remembers Dalton; gives Sky Picture", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497336,7 +495034,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497357,11 +495055,11 @@ { "id": 3931, "notes": "Astrid gives you the Stardust", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497369,7 +495067,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497390,14 +495088,14 @@ { "id": 3932, "notes": "Prince Charming suggests you speak to a King (optional)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497418,14 +495116,14 @@ { "id": 3933, "notes": "King Phil sends you to talk to Falkor.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497446,14 +495144,14 @@ { "id": 3934, "notes": "Falcor flies you to the Isle of Hardly", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497474,14 +495172,14 @@ { "id": 3935, "notes": "Fluff asks you to leave him alone", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497502,11 +495200,11 @@ { "id": 3936, "notes": "Petunia sends you to Dalton; gives serum", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497514,7 +495212,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497535,11 +495233,11 @@ { "id": 3937, "notes": "Dalton gives you the Cake Picture", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497547,7 +495245,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497555,7 +495253,7 @@ "warp_x": null, "warp_y": null, "success_message": "You received Dalton's Cake Picture.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -497568,14 +495266,14 @@ { "id": 3938, "notes": "Martha tells you what she needs", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497596,11 +495294,11 @@ { "id": 3939, "notes": "Martha takes the collectible items (chained to 3940)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497620,7 +495318,7 @@ "warp_x": null, "warp_y": null, "success_message": "You delivered five Moonbeams and five Silver Linings to Martha.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -497633,11 +495331,11 @@ { "id": 3940, "notes": "Martha takes the quest items and gives the Sunshine Cake", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497653,7 +495351,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497674,11 +495372,11 @@ { "id": 3941, "notes": "Dalton eats half the Sunshine Cake.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497694,7 +495392,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497715,11 +495413,11 @@ { "id": 3942, "notes": "Fluff eats the other half of the Sunshine Cake.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497727,7 +495425,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497748,14 +495446,14 @@ { "id": 3943, "notes": "Fluff flies you to Dalton.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497776,14 +495474,14 @@ { "id": 3944, "notes": "Fluff flies Dalton back to the Isle of Hardly.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497813,7 +495511,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -497833,7 +495531,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 350, @@ -497841,7 +495539,7 @@ "warp_x": null, "warp_y": null, "success_message": "You Completed Dalton's Recovery! You earned 25 Dinosaur Bones and 10 Diamonds, plus 350 quest points!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -497854,14 +495552,14 @@ { "id": 3946, "notes": "Falcor flies you from the Isle of Hardly back to Turtle Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497882,14 +495580,14 @@ { "id": 3947, "notes": "Falcor flies you from Turtle Isle to the Isle of Hardly", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497910,11 +495608,11 @@ { "id": 3949, "notes": "Warren Cash wants earthworms.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Right. Worms. A dozen, and a rotten tomato. I hope that's clear. You get them? ", @@ -497938,14 +495636,14 @@ { "id": 3950, "notes": "Elizabeth tells you where she gets her glue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -497970,7 +495668,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498005,11 +495703,11 @@ { "id": 3952, "notes": "Zeke gives you the glue.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498021,7 +495719,7 @@ "quantity": 6 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -498048,7 +495746,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498083,14 +495781,14 @@ { "id": 3954, "notes": "Amelia tells you where to get Waldorf Salad Fixings.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -498111,11 +495809,11 @@ { "id": 3955, "notes": "Buy Mayo from Phoebe Wares", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1500, "items_required": [ { @@ -498144,11 +495842,11 @@ { "id": 3956, "notes": "Buy Celery from Hotton Food Store", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1000, "items_required": [ { @@ -498181,7 +495879,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498214,11 +495912,11 @@ { "id": 3958, "notes": "Hand over apples and walnuts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498251,11 +495949,11 @@ { "id": 3959, "notes": "Hand over Concord Grapes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498284,11 +495982,11 @@ { "id": 3960, "notes": "Martina gets Lilbeth's sample", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498323,11 +496021,11 @@ { "id": 3961, "notes": "Martina gets Shoneah's samples", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498360,11 +496058,11 @@ { "id": 3962, "notes": "Martina sends you to Wington", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498397,11 +496095,11 @@ { "id": 3963, "notes": "William gets the wedding order.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498430,11 +496128,11 @@ { "id": 3964, "notes": "William gives you his Invoice and samples", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498446,7 +496144,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -498467,11 +496165,11 @@ { "id": 3965, "notes": "Iris gets her order form.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498502,11 +496200,11 @@ { "id": 3966, "notes": "Iris gives you her invoice and pictures for Martina", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498518,7 +496216,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -498539,11 +496237,11 @@ { "id": 3967, "notes": "Martina gets William's invoice and samples", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498578,11 +496276,11 @@ { "id": 3968, "notes": "Martina gets Iris' invoice and pictures.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498615,11 +496313,11 @@ { "id": 3969, "notes": "Martina sends you to Jungle Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498652,11 +496350,11 @@ { "id": 3970, "notes": "Hansel gets the cake order.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498687,11 +496385,11 @@ { "id": 3971, "notes": "Hansel gives you his invoice and a cake box full of goodies.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498703,7 +496401,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -498726,11 +496424,11 @@ { "id": 3972, "notes": "Bob gets his Order Form.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498761,11 +496459,11 @@ { "id": 3973, "notes": "Bob gives you his invoice and sketches of carriages and tack.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498777,7 +496475,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -498798,11 +496496,11 @@ { "id": 3974, "notes": "Martina gets Hansel's samples", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498835,11 +496533,11 @@ { "id": 3975, "notes": "Martina gets Bob's sketches", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498873,12 +496571,10 @@ "id": 3976, "notes": "Martina rewards your efforts. ", "title": "Holli's Wedding Planner", - "requires_questid_npc": [ - 2267 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498900,7 +496596,9 @@ 3975, 3974 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2267 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "BklynFilly", @@ -498910,14 +496608,14 @@ { "id": 3977, "notes": "Reid gives you the quest for his grandmother's catalog cards.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 250, "items_gained": [], "quest_points": 0, @@ -498938,7 +496636,7 @@ { "id": 3978, "notes": "Dig up the box Reid's bubbe's catalog cards were in.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -498946,7 +496644,7 @@ "y": 27 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -498977,7 +496675,7 @@ { "id": 3979, "notes": "Dig up catalog card 1", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -498985,7 +496683,7 @@ "y": 25 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499017,7 +496715,7 @@ { "id": 3980, "notes": "Dig up catalog card 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -499025,7 +496723,7 @@ "y": 27 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499057,7 +496755,7 @@ { "id": 3981, "notes": "Dig up catalog card 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -499065,7 +496763,7 @@ "y": 29 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499101,7 +496799,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499142,7 +496840,7 @@ { "id": 3982, "notes": "Dig up catalog card 4", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -499150,7 +496848,7 @@ "y": 28 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499181,7 +496879,7 @@ { "id": 3983, "notes": "Dig up catalog card 5", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -499189,7 +496887,7 @@ "y": 25 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499221,11 +496919,11 @@ { "id": 3992, "notes": "Ben Burlap sells you mosquito netting for Leda.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 560, "items_required": [ { @@ -499254,11 +496952,11 @@ { "id": 3985, "notes": "Leda sends you to Earl Bronze for armatures", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499266,7 +496964,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 0, @@ -499287,11 +496985,11 @@ { "id": 3986, "notes": "Give design, get asked for ores", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499320,11 +497018,11 @@ { "id": 3987, "notes": "Give Earl 10 ores", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499353,11 +497051,11 @@ { "id": 3988, "notes": "Pay Earl, get your armature parts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 5000, "items_required": [ { @@ -499386,11 +497084,11 @@ { "id": 3989, "notes": "Give Leda Swann the Armature parts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499419,14 +497117,14 @@ { "id": 3990, "notes": "Leda sends you to Tropicton for mosquito netting.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -499447,11 +497145,11 @@ { "id": 3991, "notes": "Leda needs feathers, and lots of them!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I need 40 plain old feathers. You don't have that.", @@ -499475,11 +497173,11 @@ { "id": 3993, "notes": "Give mosquito netting to Leda Swann", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499508,11 +497206,11 @@ { "id": 3994, "notes": "Give Feathers to Leda Swann", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499541,11 +497239,11 @@ { "id": 3995, "notes": "Leda sends you to Jungle Isle to search for hummingbird feathers. (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I'd like forty, please.", @@ -499569,7 +497267,7 @@ { "id": 3996, "notes": "Use Magnifying Glass to find hummingbird feathers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -499577,7 +497275,7 @@ "y": 242 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499592,7 +497290,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Examining the ground carefully, you find 6 Hummingbird Feathers.", "requires_awardid": null, "requires_questid_completed": [], @@ -499608,7 +497306,7 @@ { "id": 3997, "notes": "Use Magnifying Glass to find hummingbird feathers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -499616,7 +497314,7 @@ "y": 237 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499631,7 +497329,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Examining the ground carefully, you find 7 Hummingbird Feathers.", "requires_awardid": null, "requires_questid_completed": [], @@ -499647,7 +497345,7 @@ { "id": 3998, "notes": "Use Magnifying Glass to find hummingbird feathers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -499655,7 +497353,7 @@ "y": 236 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499670,7 +497368,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Examining the ground carefully, you find 2 Hummingbird Feathers.", "requires_awardid": null, "requires_questid_completed": [], @@ -499686,7 +497384,7 @@ { "id": 3999, "notes": "Use Magnifying Glass to find hummingbird feathers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -499694,7 +497392,7 @@ "y": 237 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499709,7 +497407,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Examining the ground carefully, you find 5 Hummingbird Feathers.", "requires_awardid": null, "requires_questid_completed": [], @@ -499725,7 +497423,7 @@ { "id": 4000, "notes": "Use Magnifying Glass to find hummingbird feathers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -499733,7 +497431,7 @@ "y": 239 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499748,7 +497446,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Examining the ground carefully, you find 8 Hummingbird Feathers.", "requires_awardid": null, "requires_questid_completed": [], @@ -499764,7 +497462,7 @@ { "id": 4001, "notes": "Use Magnifying Glass to find hummingbird feathers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -499772,7 +497470,7 @@ "y": 240 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499787,7 +497485,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Examining the ground carefully, you find 4 Hummingbird Feathers.", "requires_awardid": null, "requires_questid_completed": [], @@ -499803,7 +497501,7 @@ { "id": 4002, "notes": "Use Magnifying Glass to find hummingbird feathers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -499811,7 +497509,7 @@ "y": 241 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499826,7 +497524,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Examining the ground carefully, you find 8 Hummingbird Feathers. Score!", "requires_awardid": null, "requires_questid_completed": [], @@ -499842,11 +497540,11 @@ { "id": 4003, "notes": "Give Leda Swann Hummingbird Feathers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -499877,14 +497575,14 @@ { "id": 4004, "notes": "Leda wants 6 pearls to use as eyes.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -499909,7 +497607,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You haven't given me everything I need. ", @@ -499939,14 +497637,14 @@ { "id": 4006, "notes": "Crows Nest Carrie asks for help", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -499967,11 +497665,11 @@ { "id": 4007, "notes": "Carrie hears about her neighbors", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I asked ya to parley with all me neighbors, come back when yer finished talkin'.", @@ -500000,14 +497698,14 @@ { "id": 4008, "notes": "Carrie asks you to go to Art Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -500028,14 +497726,14 @@ { "id": 4009, "notes": "Phyllis Colt sends asks you to ask around FlipperTon to see who might have known a Miss Knight.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -500056,14 +497754,14 @@ { "id": 4010, "notes": "Iona gives you a lead on Miss Knight's whereabouts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -500084,14 +497782,14 @@ { "id": 4011, "notes": "Ginger Craft wants 10 honeycombs before she'll give you the address you want.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -500112,11 +497810,11 @@ { "id": 4012, "notes": "Give Ginger the honeycombs, get a slip of paper.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500150,12 +497848,10 @@ "id": 4013, "notes": "Give Phyllis the scribbled note. ", "title": "Phyllis Colt's Favorite Foal", - "requires_questid_npc": [ - 2922 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500174,7 +497870,9 @@ "success_npc_chat": "...MeadowTon? Where's... I guess it's somewhere in the Foreign Isles. Well, I can but try. Thank you so much! Here's a bit of a reward for you.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2922 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "SpottedRose", @@ -500184,11 +497882,11 @@ { "id": 4022, "notes": "Martina makes sure you got everyone from Web Isle (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "That's not all. I would like the invoices and samples from both Lilibeth and Shoneah before moving on, please.", @@ -500198,7 +497896,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Let's see....what's next?? (Looks over all the lists in her hands.) Here...next stop is Wington.", "requires_awardid": null, "requires_questid_completed": [ @@ -500215,14 +497913,14 @@ { "id": 4014, "notes": "you ask Just Gus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -500243,14 +497941,14 @@ { "id": 4015, "notes": "Agree to help Kevin find the Wreck of the Hesperpuss.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -500271,7 +497969,7 @@ { "id": 4016, "notes": "Find part of the Hull of the Hesperpuss", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "BINOCS", @@ -500279,7 +497977,7 @@ "y": 315 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500310,14 +498008,14 @@ { "id": 4019, "notes": "you ask Black Bart", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -500338,11 +498036,11 @@ { "id": 4017, "notes": "Give the hull part to Kevin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500371,14 +498069,14 @@ { "id": 4018, "notes": "you ask Squalid Nathaniel", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -500399,14 +498097,14 @@ { "id": 4020, "notes": "you ask Silvertooth Sam", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -500427,14 +498125,14 @@ { "id": 4021, "notes": "Kevin says to talk to Bailey about currents. [tracking]", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -500455,11 +498153,11 @@ { "id": 4023, "notes": "Martina makes sure you got everyone from Wington (tracking only)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "That's not all. I would like the invoices and samples from both Iris Pettel and William Sleapwhell before moving on, please.", @@ -500469,7 +498167,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Who's next?? (Looks over several lists tacked to her walls.) Oh, yes, the final errand for you, you're heading to Jungle Isle.", "requires_awardid": null, "requires_questid_completed": [ @@ -500486,7 +498184,7 @@ { "id": 4024, "notes": "Search for catalog cards.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -500494,7 +498192,7 @@ "y": 27 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -500521,14 +498219,14 @@ { "id": 4025, "notes": "Bailey sends you to Shellton to talk to the harbormaster (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -500549,11 +498247,11 @@ { "id": 4026, "notes": "Seamus tells you about some shipwrecks he's heard of. (tracking)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Anywhere the currents slow or make a sharp turn, that's a start. An' I heard about a shipwreck on Haven a while back. Crazy Eddie's place sometimes has stuff washed up. Ask the islanders, they'll know.", @@ -500577,7 +498275,7 @@ { "id": 4027, "notes": "Find Foremast on Haven Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -500585,7 +498283,7 @@ "y": 314 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500616,11 +498314,11 @@ { "id": 4028, "notes": "Give Kevin the Foremast you found on Haven", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500649,7 +498347,7 @@ { "id": 4029, "notes": "Find the Mainsail on Quiet Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -500657,7 +498355,7 @@ "y": 245 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500688,7 +498386,7 @@ { "id": 4030, "notes": "Find Two More Sails on one of the NeverEnding Isles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -500696,7 +498394,7 @@ "y": 297 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500727,7 +498425,7 @@ { "id": 4031, "notes": "Find the rudder of the Hesperpuss - Crazy Eddie's Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -500735,7 +498433,7 @@ "y": 225 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500766,7 +498464,7 @@ { "id": 4032, "notes": "Find the Aftercastle of the Hesperpuss west edge of Hotzeplotz", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -500774,7 +498472,7 @@ "y": 266 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500805,11 +498503,11 @@ { "id": 4033, "notes": "Give the Mainsail to Kevin that you found on Quiet", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500838,11 +498536,11 @@ { "id": 4034, "notes": "Give Kevin the Topgallant & other sails found on Neverending Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500871,11 +498569,11 @@ { "id": 4035, "notes": "Give Kevin the Rudder section you found on Crazy Eddie's Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500906,11 +498604,11 @@ { "id": 4036, "notes": "Give Kevin the Aftercastle you found on Hotzeplotz", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500948,7 +498646,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -500986,11 +498684,11 @@ { "id": 4038, "notes": "Give Crazy Eddie a strawberry to ensure his cooperation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501019,11 +498717,11 @@ { "id": 4039, "notes": "Eunice suggests Sand Painting", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501031,7 +498729,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -501052,11 +498750,11 @@ { "id": 4040, "notes": "Holly suggests collecting Sea Shells", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501064,7 +498762,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -501085,11 +498783,11 @@ { "id": 4041, "notes": "Genevieve suggests pottery", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501097,7 +498795,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -501118,11 +498816,11 @@ { "id": 4042, "notes": "Mona suggests crocheting", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501130,7 +498828,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -501151,11 +498849,11 @@ { "id": 4043, "notes": "Posy suggests flower arranging", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501163,7 +498861,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -501184,11 +498882,11 @@ { "id": 4044, "notes": "Carrie gets the Sand Painting kit.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501217,11 +498915,11 @@ { "id": 4045, "notes": "Carrie gets the Seahorse", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501250,11 +498948,11 @@ { "id": 4046, "notes": "Carrie gets the book and clay.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501283,11 +498981,11 @@ { "id": 4047, "notes": "Carrie gets the crocheted tote bag", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501316,11 +499014,11 @@ { "id": 4048, "notes": "Carrie gets the books on flower arranging", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501350,12 +499048,10 @@ "id": 4049, "notes": "Carrie rewards you.", "title": "Crow's Nest Carrie's Hobby", - "requires_questid_npc": [ - 3497 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501384,7 +499080,9 @@ 4047, 4048 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3497 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "BklynFilly", @@ -501394,14 +499092,14 @@ { "id": 4050, "notes": "Agree to try to unite Marilyn Pugg and Fussy Spink-Bottle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -501422,14 +499120,14 @@ { "id": 4051, "notes": "Fussy Spink-Bottle tells you where to find Ms. Pugg.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -501450,14 +499148,14 @@ { "id": 4052, "notes": "Raliegh Spayde would like a private word.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -501478,14 +499176,14 @@ { "id": 4053, "notes": "Agree to go find Glossover", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -501506,11 +499204,11 @@ { "id": 4054, "notes": "Iona checks your level", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "I’m sorry, I don’t think you’ve been on enough adventures to help me, come back when you are able to visit pirates.", @@ -501520,7 +499218,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "It looks like you are the one I've been waiting for. Are you ready to help?", "requires_awardid": 2, "requires_questid_completed": [], @@ -501534,14 +499232,14 @@ { "id": 4055, "notes": "Francis asks for Ebony", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -501563,12 +499261,10 @@ "id": 4056, "notes": "You give Francis his Ebony Logs ", "title": "Francis' Manicure", - "requires_questid_npc": [ - 2055 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501591,7 +499287,9 @@ "success_npc_chat": "Oh, my, what perfectly grand logs! Thanks ever so much. Here's a little something for your troubles.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2055 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "BklynFilly", @@ -501601,11 +499299,11 @@ { "id": 4057, "notes": "Iona gives you the first list.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501617,7 +499315,7 @@ "quantity": 7 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -501638,11 +499336,11 @@ { "id": 4058, "notes": "Woody gets his invitation", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501675,11 +499373,11 @@ { "id": 4059, "notes": "Xamba gets his invitation", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501712,11 +499410,11 @@ { "id": 4060, "notes": "Cecil Shuteye gets his invitation", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501749,11 +499447,11 @@ { "id": 4061, "notes": "Gillian gets her invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501786,11 +499484,11 @@ { "id": 4062, "notes": "Rebecca gets her invitation", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501823,11 +499521,11 @@ { "id": 4063, "notes": "Christel gets their invitation", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501860,11 +499558,11 @@ { "id": 4064, "notes": "Kelda gets her invitation", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501901,7 +499599,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501942,11 +499640,11 @@ { "id": 4066, "notes": "Iona gives you the 2nd list", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -501958,7 +499656,7 @@ "quantity": 6 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -501979,11 +499677,11 @@ { "id": 4067, "notes": "Shoneah gets his invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502016,11 +499714,11 @@ { "id": 4068, "notes": "Lapis Maki gets her invitation", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502053,11 +499751,11 @@ { "id": 4069, "notes": "Inigo gets his invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502090,11 +499788,11 @@ { "id": 4070, "notes": "Jade gets her invitation", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502127,11 +499825,11 @@ { "id": 4071, "notes": "Grey Slate gets his invitation", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502164,11 +499862,11 @@ { "id": 4072, "notes": "Earl Bronze gets his invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502202,12 +499900,10 @@ "id": 4073, "notes": "Iona gets the RSVP's from the Jewelers et al. [Iona's Festival Part 2]", "title": "Iona's Festival Part 2", - "requires_questid_npc": [ - 4065 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502238,7 +499934,9 @@ 4071, 4072 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4065 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "BklynFilly", @@ -502248,11 +499946,11 @@ { "id": 4074, "notes": "Iona gives you her Artisan List", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502268,7 +499966,7 @@ "quantity": 8 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -502289,11 +499987,11 @@ { "id": 4075, "notes": "Willie gets his invitation", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502326,11 +500024,11 @@ { "id": 4076, "notes": "Chanda gets her invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502363,11 +500061,11 @@ { "id": 4077, "notes": "Yepa gets her invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502400,11 +500098,11 @@ { "id": 4078, "notes": "Lenny gets his invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502437,11 +500135,11 @@ { "id": 4079, "notes": "Palila gets her invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502474,11 +500172,11 @@ { "id": 4080, "notes": "Leasa gets her invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502511,11 +500209,11 @@ { "id": 4081, "notes": "Linnea gets her invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502548,11 +500246,11 @@ { "id": 4082, "notes": "Katinka gets her invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502586,12 +500284,10 @@ "id": 4083, "notes": "Iona gets the RSVP's from the Artisans. [Iona's Festival Part 3]", "title": "Iona's Festival Part 3", - "requires_questid_npc": [ - 4073 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502622,7 +500318,9 @@ 4080, 4081 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4073 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "BklynFilly", @@ -502632,11 +500330,11 @@ { "id": 4084, "notes": "Iona gives you her Art Isle List", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502648,7 +500346,7 @@ "quantity": 6 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -502669,11 +500367,11 @@ { "id": 4085, "notes": "Pablo gets his invitation", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502706,11 +500404,11 @@ { "id": 4086, "notes": "Mona gets her invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502743,11 +500441,11 @@ { "id": 4087, "notes": "Salvador gets his invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502780,11 +500478,11 @@ { "id": 4088, "notes": "Genevieve gets her invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502817,11 +500515,11 @@ { "id": 4089, "notes": "Eunice gets her invitation.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502854,11 +500552,11 @@ { "id": 4090, "notes": "Posy gets her invitation", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502892,12 +500590,10 @@ "id": 4091, "notes": "Iona gets the RSVP's from Art Isle.", "title": "Iona's Festival Part 4", - "requires_questid_npc": [ - 4083 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -502931,7 +500627,9 @@ 4089, 4090 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4083 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "BklynFilly", @@ -502941,14 +500639,14 @@ { "id": 4092, "notes": "Dolly asks you to pick up her basics", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -502969,11 +500667,11 @@ { "id": 4093, "notes": "Simon has the Ice Cream Makers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 300, "items_required": [ { @@ -503002,11 +500700,11 @@ { "id": 4094, "notes": "Zeke sells you the rock salt", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 75, "items_required": [ { @@ -503042,7 +500740,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -503075,13 +500773,11 @@ { "id": 4096, "notes": "Dolly gives you her ingredient list", - "title": "", - "requires_questid_npc": [ - 4095 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -503089,7 +500785,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3000, "items_gained": [], "quest_points": 0, @@ -503100,7 +500796,9 @@ "success_npc_chat": "Here's my list. I've already ordered the chocolate and bananas from Nana and the Vanilla from Rika, all you have to do is pick them up. You'll have to collect the strawberries and snow balls. Here's some travelling money too.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4095 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -503110,11 +500808,11 @@ { "id": 4097, "notes": "Nana gives you the bananas and chocolate", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -503126,7 +500824,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503147,11 +500845,11 @@ { "id": 4098, "notes": "Rika gives you Vanilla Beans", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -503159,7 +500857,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503180,11 +500878,11 @@ { "id": 4099, "notes": "You give Dolly the Bananas", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -503213,11 +500911,11 @@ { "id": 4100, "notes": "You give Dolly her Chocolate", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -503246,11 +500944,11 @@ { "id": 4101, "notes": "You give Dolly her Vanilla Beans", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -503279,11 +500977,11 @@ { "id": 4102, "notes": "You give Dolly her Strawberries.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -503312,11 +501010,11 @@ { "id": 4103, "notes": "You give Dolly her Snowballs.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -503346,12 +501044,10 @@ "id": 4104, "notes": "Dolly rewards you. ", "title": "Dolly's Ingredients", - "requires_questid_npc": [ - 4095 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -503380,7 +501076,9 @@ 4102, 4103 ], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4095 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "BklynFilly", @@ -503390,11 +501088,11 @@ { "id": 4105, "notes": "Mehitabel gives you Archy's to do list", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -503402,7 +501100,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 0, @@ -503423,14 +501121,14 @@ { "id": 4106, "notes": "Talk to Gillian", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503451,14 +501149,14 @@ { "id": 4107, "notes": "Talk to Andrea", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503479,14 +501177,14 @@ { "id": 4108, "notes": "Talk to Cadence", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503507,14 +501205,14 @@ { "id": 4109, "notes": "Talk to Zamora", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503535,14 +501233,14 @@ { "id": 4110, "notes": "Talk to Karl", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503563,14 +501261,14 @@ { "id": 4111, "notes": "Talk to Arbuckle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503591,14 +501289,14 @@ { "id": 4112, "notes": "Talk to Salvador", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503619,14 +501317,14 @@ { "id": 4113, "notes": "Talk to Remy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503647,14 +501345,14 @@ { "id": 4114, "notes": "Talk to Cedric", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503675,14 +501373,14 @@ { "id": 4115, "notes": "Talk to Rupert", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503703,14 +501401,14 @@ { "id": 4116, "notes": "Talk to Linnea", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503731,14 +501429,14 @@ { "id": 4117, "notes": "Talk to Yorick", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503759,14 +501457,14 @@ { "id": 4118, "notes": "Talk to Miguela", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503787,14 +501485,14 @@ { "id": 4119, "notes": "Talk to Kyleigh", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503815,14 +501513,14 @@ { "id": 4120, "notes": "Talk to Tobias", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503843,14 +501541,14 @@ { "id": 4121, "notes": "Talk to Twig", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503871,14 +501569,14 @@ { "id": 4122, "notes": "Talk to Oliver Oates", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503899,14 +501597,14 @@ { "id": 4123, "notes": "Talk to Ryland", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503927,14 +501625,14 @@ { "id": 4124, "notes": "Talk to Ollie Scooper", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503955,14 +501653,14 @@ { "id": 4125, "notes": "Talk to Atreyu", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -503983,14 +501681,14 @@ { "id": 4126, "notes": "Talk to Ward Anvil", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504011,14 +501709,14 @@ { "id": 4127, "notes": "Talk to Ormand", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504039,14 +501737,14 @@ { "id": 4128, "notes": "Talk to Sandra", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504067,14 +501765,14 @@ { "id": 4129, "notes": "Talk to Fin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504095,14 +501793,14 @@ { "id": 4130, "notes": "Talk to Lilac", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504123,14 +501821,14 @@ { "id": 4131, "notes": "Talk to Tulippe", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504151,14 +501849,14 @@ { "id": 4132, "notes": "Talk to Murray", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504179,14 +501877,14 @@ { "id": 4133, "notes": "Talk to Mortimer", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504194,7 +501892,7 @@ "warp_x": null, "warp_y": null, "success_message": "Mortimer told you that Archy left for Tropicton.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -504207,14 +501905,14 @@ { "id": 4134, "notes": "Talk to Harry Oaterson", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504235,14 +501933,14 @@ { "id": 4135, "notes": "Talk to Orson Shells", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504263,14 +501961,14 @@ { "id": 4136, "notes": "Talk to Chanda", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504291,14 +501989,14 @@ { "id": 4137, "notes": "Talk to Alton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504319,14 +502017,14 @@ { "id": 4138, "notes": "Talk to Bruno", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504347,14 +502045,14 @@ { "id": 4139, "notes": "Talk to Faustus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504375,14 +502073,14 @@ { "id": 4140, "notes": "Fix Archy's Wagon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504407,7 +502105,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -504440,14 +502138,14 @@ { "id": 4142, "notes": "Pegleg Pat sends you to Pegleg Pete", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504468,14 +502166,14 @@ { "id": 4143, "notes": "Pegleg Pete sends you to Pegleg Pat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504496,11 +502194,11 @@ { "id": 4144, "notes": "Mike's 1st Map", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 10000, "items_required": [ { @@ -504529,7 +502227,7 @@ { "id": 4145, "notes": "You found a treasure", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -504537,7 +502235,7 @@ "y": 30 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -504573,11 +502271,11 @@ { "id": 4146, "notes": "You buy Mike's 2nd map", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 10000, "items_required": [ { @@ -504608,7 +502306,7 @@ { "id": 4147, "notes": "You found a 2nd treasure", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -504616,7 +502314,7 @@ "y": 40 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -504651,11 +502349,11 @@ { "id": 4148, "notes": "You buy Mike's 3rd Map", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 10000, "items_required": [ { @@ -504686,7 +502384,7 @@ { "id": 4149, "notes": "You found another treasure", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -504694,7 +502392,7 @@ "y": 47 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -504729,11 +502427,11 @@ { "id": 4150, "notes": "You buy Mike's 4th Map", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 10000, "items_required": [ { @@ -504764,7 +502462,7 @@ { "id": 4151, "notes": "You found the 4th treasure", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -504772,7 +502470,7 @@ "y": 44 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -504803,14 +502501,14 @@ { "id": 4152, "notes": "Dr. Glossover refuses to take the case. [TRACKING]", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504831,14 +502529,14 @@ { "id": 4153, "notes": "Burtree tells you where to find Skeeves [TRACKING]", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504859,14 +502557,14 @@ { "id": 4154, "notes": "Skeeves agrees to return to Burtree.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504887,14 +502585,14 @@ { "id": 4156, "notes": "Jebidiah asks for help", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504919,7 +502617,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -504952,11 +502650,11 @@ { "id": 4157, "notes": "Charla gives you the oranges", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -504964,7 +502662,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -504985,11 +502683,11 @@ { "id": 4158, "notes": "Ethel Barryjam gives you the sugar", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -504997,7 +502695,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -505018,11 +502716,11 @@ { "id": 4159, "notes": "Quinn gives you the barrel of water", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -505030,7 +502728,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -505051,11 +502749,11 @@ { "id": 4160, "notes": "Jebidiah gets his Oranges", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -505084,11 +502782,11 @@ { "id": 4161, "notes": "Jebidiah gets his sugar.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -505117,11 +502815,11 @@ { "id": 4162, "notes": "Jebidiah gets his Water.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -505150,11 +502848,11 @@ { "id": 4164, "notes": "Agree to get tools for Illiana", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -505162,7 +502860,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -505183,11 +502881,11 @@ { "id": 4165, "notes": "Get the tools from Ethel", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1900, "items_required": [ { @@ -505224,7 +502922,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -505232,7 +502930,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 25, @@ -505253,11 +502951,11 @@ { "id": 4167, "notes": "Jebidiah gives you a glass of orangeade", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [ { @@ -505286,14 +502984,14 @@ { "id": 4168, "notes": "You agree to help Isaac", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -505314,11 +503012,11 @@ { "id": 4169, "notes": "Isaac gets his rubies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -505347,11 +503045,11 @@ { "id": 4170, "notes": "Isaac gets his obsidian ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -505380,14 +503078,14 @@ { "id": 4171, "notes": "tracking for lapis", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -505408,7 +503106,7 @@ { "id": 4172, "notes": "You find the lapis lazuli", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -505416,7 +503114,7 @@ "y": 70 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -505451,7 +503149,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "I asked for rubies, obsidian and lapis lazuli. I don't have everything yet.", @@ -505479,13 +503177,11 @@ { "id": 4174, "notes": "Twyla pays for Giant Coconuts", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [ { @@ -505514,13 +503210,11 @@ { "id": 4175, "notes": "Twyla pays for Coconuts", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [ { @@ -505549,13 +503243,11 @@ { "id": 4176, "notes": "Indigo pays for ebony wood", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [ { @@ -505584,11 +503276,11 @@ { "id": 4177, "notes": "Isaac gets the lapis", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -505617,14 +503309,14 @@ { "id": 4178, "notes": "Twyla tells you she will buy coconuts", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -505632,7 +503324,7 @@ "warp_x": null, "warp_y": null, "success_message": "Twyla mentioned that she will buy five Giant Coconuts or twenty regular Coconuts.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -505645,14 +503337,14 @@ { "id": 4179, "notes": "Hanska will sell you a plushy unicorn or pegasus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -505660,7 +503352,7 @@ "warp_x": null, "warp_y": null, "success_message": "Hanska told you she will sell Plush Unicorn or Plush Pegasus companions for $250 each.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -505673,11 +503365,11 @@ { "id": 4180, "notes": "Hanska sells you a Plush Unicorn companion", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 250, "items_required": [ { @@ -505706,14 +503398,14 @@ { "id": 4181, "notes": "You agree to help Mikko", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 6500, "items_gained": [], "quest_points": 0, @@ -505734,11 +503426,11 @@ { "id": 4182, "notes": "Get Alpaca Wrap From Bettina", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1800, "items_required": [ { @@ -505767,14 +503459,14 @@ { "id": 4183, "notes": "Agree to get the wrap wrapped!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -505795,11 +503487,11 @@ { "id": 4185, "notes": "Britt Gets Her Wrapped Wrap! ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -505828,11 +503520,11 @@ { "id": 4184, "notes": "Santa Wraps the alpaca throw", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -505844,7 +503536,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -505866,15 +503558,13 @@ "id": 4186, "notes": "Mikko rewards you (exps min $5900) ", "title": "Mikko's Gift Request", - "requires_questid_npc": [ - 656 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 20000, "items_gained": [], "quest_points": 150, @@ -505885,7 +503575,9 @@ "success_npc_chat": "I'm thrilled to hear that. Thanks again for delivering it to her. Here's $20,000 for all your efforts.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 656 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Desertmorn", @@ -505895,16 +503587,14 @@ { "id": 4187, "notes": "You agree to help Matti", - "title": "", - "requires_questid_npc": [ - 4173 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 6000, "items_gained": [], "quest_points": 0, @@ -505915,7 +503605,9 @@ "success_npc_chat": "(He whispers to you again.) That would be wonderful! I know travel will be costly, so here's $6000 for expenses.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4173 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -505925,22 +503617,22 @@ { "id": 4188, "notes": "tracking on Bettina's guitars", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -505953,11 +503645,11 @@ { "id": 4189, "notes": "Get new guitar from Bettina", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 9500, "items_required": [ { @@ -505993,7 +503685,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -506022,22 +503714,22 @@ { "id": 4191, "notes": "tracking on Bettina's throws", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -506050,14 +503742,14 @@ { "id": 4192, "notes": "You agree to help Svetlana", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -506078,14 +503770,14 @@ { "id": 4222, "notes": "Jebidiah asks for help in keeping cool", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 4500, "items_gained": [], "quest_points": 0, @@ -506106,7 +503798,7 @@ { "id": 4193, "notes": "Dig to find a garden troll!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -506114,7 +503806,7 @@ "y": 24 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -506145,7 +503837,7 @@ { "id": 4194, "notes": "Dig to find a garden troll!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -506153,7 +503845,7 @@ "y": 22 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -506184,7 +503876,7 @@ { "id": 4195, "notes": "Dig to find a garden troll!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -506192,7 +503884,7 @@ "y": 25 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -506223,7 +503915,7 @@ { "id": 4196, "notes": "Dig to find a garden troll!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -506231,7 +503923,7 @@ "y": 21 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -506262,7 +503954,7 @@ { "id": 4197, "notes": "Dig to find a garden troll!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -506270,7 +503962,7 @@ "y": 23 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -506301,7 +503993,7 @@ { "id": 4198, "notes": "Dig to find a garden troll!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -506309,7 +504001,7 @@ "y": 26 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -506340,7 +504032,7 @@ { "id": 4199, "notes": "Dig to find a garden troll!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -506348,7 +504040,7 @@ "y": 24 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -506383,7 +504075,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -506420,16 +504112,14 @@ { "id": 4201, "notes": "You agree to help Olena", - "title": "", - "requires_questid_npc": [ - 4200 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -506440,7 +504130,9 @@ "success_npc_chat": " Maybe chewing something that big would stop Muktdar from taking Svetlana's garden trolls!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4200 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": null, @@ -506450,11 +504142,11 @@ { "id": 4202, "notes": "You give Muktdar a bone", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -506484,15 +504176,13 @@ "id": 4203, "notes": "Olena rewards you ", "title": "A Favor For Olena", - "requires_questid_npc": [ - 4200 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 75, @@ -506503,7 +504193,9 @@ "success_npc_chat": "What a relief! Thank you so much. Here is $2000 for your efforts.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4200 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Desertmorn", @@ -506513,11 +504205,11 @@ { "id": 4204, "notes": "tracking Svetlana", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "There must be someone you overlooked. This is really important to me. Please make sure you've talked to everyone.", @@ -506527,7 +504219,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " Why don't you double check with everyone. Maybe they'll have remembered something new in the meantime.", "requires_awardid": null, "requires_questid_completed": [ @@ -506547,7 +504239,7 @@ { "id": 4205, "notes": "Rake to find a dinosaur bone", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -506555,7 +504247,7 @@ "y": 16 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -506570,7 +504262,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You found a Dinosaur Bone! ", "requires_awardid": null, "requires_questid_completed": [], @@ -506586,14 +504278,14 @@ { "id": 4206, "notes": "tracking Karolinka", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -506614,21 +504306,21 @@ { "id": 4207, "notes": "tracking Ruslan", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " ", "requires_awardid": null, "requires_questid_completed": [], @@ -506642,21 +504334,21 @@ { "id": 4208, "notes": "tracking Olena ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " ", "requires_awardid": null, "requires_questid_completed": [], @@ -506670,21 +504362,21 @@ { "id": 4209, "notes": "tracking Lesia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " ", "requires_awardid": null, "requires_questid_completed": [], @@ -506698,21 +504390,21 @@ { "id": 4210, "notes": "tracking Vasyl", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " ", "requires_awardid": null, "requires_questid_completed": [], @@ -506726,21 +504418,21 @@ { "id": 4211, "notes": "tracking Vladyk", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " ", "requires_awardid": null, "requires_questid_completed": [], @@ -506754,14 +504446,14 @@ { "id": 4212, "notes": "tracking Galina", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -506769,7 +504461,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've learned that Muktdar likes to bury things, somewhere east of here!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -506782,7 +504474,7 @@ { "id": 4213, "notes": "Dig to find a garden troll! Old shoe!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -506790,7 +504482,7 @@ "y": 21 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -506817,7 +504509,7 @@ { "id": 4214, "notes": "Dig to find a garden troll! Old teddy bear!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -506825,7 +504517,7 @@ "y": 24 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -506852,7 +504544,7 @@ { "id": 4215, "notes": "Dig to find a garden troll! Rotten fish!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -506860,7 +504552,7 @@ "y": 21 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -506887,7 +504579,7 @@ { "id": 4216, "notes": "Dig to find a garden troll! Wooden spoon!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -506895,7 +504587,7 @@ "y": 25 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -506922,7 +504614,7 @@ { "id": 4217, "notes": "Dig to find a garden troll! Old sock!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -506930,7 +504622,7 @@ "y": 20 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -506957,7 +504649,7 @@ { "id": 4218, "notes": "Dig to find a garden troll! dish cloth!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -506965,7 +504657,7 @@ "y": 22 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -506992,7 +504684,7 @@ { "id": 4219, "notes": "Dig to find a garden troll! book!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -507000,7 +504692,7 @@ "y": 22 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -507027,21 +504719,21 @@ { "id": 4220, "notes": "tracking Svetlana after you've learned that Muktdar is involved.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " I'm looking forward to getting the trolls back.", "requires_awardid": null, "requires_questid_completed": [], @@ -507055,22 +504747,22 @@ { "id": 4221, "notes": "Track Ruslan re: dinosaur bone", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -507083,11 +504775,11 @@ { "id": 4223, "notes": "Get the ice chest.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -507116,11 +504808,11 @@ { "id": 4224, "notes": "Agree to get the chainsaw fixed", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -507128,7 +504820,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -507149,11 +504841,11 @@ { "id": 4225, "notes": "Give Rick the chainsaw. He's going to need a few minutes.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -507161,7 +504853,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -507182,14 +504874,14 @@ { "id": 4226, "notes": "Rick needs more time.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -507210,14 +504902,14 @@ { "id": 4227, "notes": "Rick needs just a bit more time.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -507238,11 +504930,11 @@ { "id": 4228, "notes": "Get the chainsaw from Rick", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -507250,7 +504942,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -507271,11 +504963,11 @@ { "id": 4229, "notes": "Give Vlaydk his fixed chainsaw", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -507283,7 +504975,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -507304,14 +504996,14 @@ { "id": 4230, "notes": "Vladyk needs just a bit more time.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -507332,11 +505024,11 @@ { "id": 4231, "notes": "Get the block of ice from Vladyk", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -507344,7 +505036,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -507365,11 +505057,11 @@ { "id": 4232, "notes": "Jebidiah Gets His Block of Ice", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -507402,7 +505094,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Ye haven't given me what I was askin' for, Matey.", @@ -507429,11 +505121,11 @@ { "id": 4233, "notes": "Jebidiah Gets His Snowballs", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -507462,11 +505154,11 @@ { "id": 4234, "notes": "Jebidiah Gets His Ice Chest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -507499,14 +505191,14 @@ { "id": 4236, "notes": "You agree to 'challenge' Anathema", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -507527,11 +505219,11 @@ { "id": 4237, "notes": "You give Anathema a chunk of obsidian", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -507560,11 +505252,11 @@ { "id": 4239, "notes": "You give Anathema a bunch of grapes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -507593,11 +505285,11 @@ { "id": 4238, "notes": "Give Anathema a Giant Coconut", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -507626,11 +505318,11 @@ { "id": 4240, "notes": "You give Anathema a candy cane", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -507663,7 +505355,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -507671,7 +505363,7 @@ "quantity": 50 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 100, @@ -507692,14 +505384,14 @@ { "id": 4242, "notes": "Agree to help Frannie Oakley", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -507707,7 +505399,7 @@ "warp_x": null, "warp_y": null, "success_message": "You agree to get some supplies for Franny. Best head up to Vee's now.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -507720,21 +505412,21 @@ { "id": 4243, "notes": "Tracking Vee Ender", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " This just infuriates me so much. I had orders on that boat for several of the ranchers here, along with Frannie's. And I paid for all those goods! Now I'm out the money and the goods. I have to order the things all over again.", "requires_awardid": null, "requires_questid_completed": [], @@ -507748,11 +505440,11 @@ { "id": 4244, "notes": "Frannie pays you for your troubles.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -507760,7 +505452,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -507781,11 +505473,11 @@ { "id": 4245, "notes": "Frannie's request to find pirates/checks to see if you have 50%.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "That's very kind of you, but you should wait till you know your way to Pirate Isle before you consider helping me, since pirates are involved.", @@ -507809,21 +505501,21 @@ { "id": 4246, "notes": "Tracking Vee Ender", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " This just infuriates me so much. I had orders on that boat for several of the ranchers here, along with Franny's. And I paid for all those goods! Now I'm out the money and the goods. I have to order the things all over again.", "requires_awardid": null, "requires_questid_completed": [], @@ -507837,21 +505529,21 @@ { "id": 4247, "notes": "Tracking Cap'n Jack", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " ", "requires_awardid": null, "requires_questid_completed": [], @@ -507865,21 +505557,21 @@ { "id": 4248, "notes": "Tracking Cap'n Solomon ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " ", "requires_awardid": null, "requires_questid_completed": [], @@ -507893,14 +505585,14 @@ { "id": 4249, "notes": "You annoy Cap'n Solomon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -507921,14 +505613,14 @@ { "id": 4250, "notes": "You annoy Cap'n Jack", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -507949,14 +505641,14 @@ { "id": 4251, "notes": "Fast track quest points 50% to check quests - via Ford Prefect", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 32000, @@ -507977,14 +505669,14 @@ { "id": 4252, "notes": "Fast track quest points 75% to check quests - via Ford Prefect", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 20000, @@ -508005,21 +505697,21 @@ { "id": 4253, "notes": "Tracking Cap'n Jack after you've talked to Cap'n Solomon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " ", "requires_awardid": null, "requires_questid_completed": [], @@ -508033,21 +505725,21 @@ { "id": 4254, "notes": "Tracking Cap'n Solomon after you've talked to Cap'n Jack", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " ", "requires_awardid": null, "requires_questid_completed": [], @@ -508061,14 +505753,14 @@ { "id": 4255, "notes": "Agree to trade Joe Longbeard for information", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -508089,21 +505781,21 @@ { "id": 4256, "notes": "Tracking Four Finger Frank", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " ", "requires_awardid": null, "requires_questid_completed": [], @@ -508117,11 +505809,11 @@ { "id": 4257, "notes": "Trade Hot Cocoa for travel to Glacier Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [ { @@ -508150,21 +505842,21 @@ { "id": 4259, "notes": "Tracking Milo", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " ", "requires_awardid": null, "requires_questid_completed": [], @@ -508178,11 +505870,11 @@ { "id": 4258, "notes": "Give Joe Longbeard his cocoa and popcorn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -508216,15 +505908,13 @@ "id": 4260, "notes": "Vee rewards you for finding the goods.", "title": "Frannie's Waylaid Supplies", - "requires_questid_npc": [ - 4049 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 35000, "items_gained": [], "quest_points": 200, @@ -508235,7 +505925,9 @@ "success_npc_chat": " Please, take this as a reward. It would have cost me thrice that to replace everything in that order.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4049 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Desertmorn", @@ -508245,21 +505937,21 @@ { "id": 4261, "notes": "Tracking Vee", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " ", "requires_awardid": null, "requires_questid_completed": [], @@ -508273,11 +505965,11 @@ { "id": 4262, "notes": "Frannie adds a bit to the thank you.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -508285,7 +505977,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -508307,12 +505999,10 @@ "id": 4263, "notes": "Ice Sculpture #12", "title": "Ice Sculpture #12", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Ice Sculpture.", @@ -508323,7 +506013,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ice Sculpture #12! You earned $4000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -508337,12 +506027,10 @@ "id": 4264, "notes": "Ice Sculpture #13", "title": "Ice Sculpture #13", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Ice Sculpture.", @@ -508353,7 +506041,7 @@ "warp_x": null, "warp_y": null, "success_message": "You completed Ice Sculpture #13! You earned $4000 and 25 quest points.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -508366,14 +506054,14 @@ { "id": 4265, "notes": "Agree to help Yolanda get alpaca yarn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 0, @@ -508394,22 +506082,22 @@ { "id": 4266, "notes": "Tracking Yolanda", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -508422,14 +506110,14 @@ { "id": 4267, "notes": "Tracking Cecelia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -508450,14 +506138,14 @@ { "id": 4268, "notes": "Tracking Colbert ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -508478,11 +506166,11 @@ { "id": 4269, "notes": "Zoetta - get a clump of silvery colored fleece for a treat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [ { @@ -508517,11 +506205,11 @@ { "id": 4270, "notes": "Zochelle - try to get a clump of black wool for a treat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -508552,11 +506240,11 @@ { "id": 4271, "notes": "Zipster - get a clump of white fleece for a treat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -508591,11 +506279,11 @@ { "id": 4272, "notes": "Zenatta - get a clump of cream colored wool for a treat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -508630,11 +506318,11 @@ { "id": 4273, "notes": "Zander - try to get a clump of chocolate colored wool for a treat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -508665,11 +506353,11 @@ { "id": 4274, "notes": "Zasha - try to get a clump of red wool for a treat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -508700,11 +506388,11 @@ { "id": 4275, "notes": "Zetchu - try to get a clump of off-white fleece for a treat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -508735,14 +506423,14 @@ { "id": 4276, "notes": "Agree to bring Itzel ingredients to make Alpaca Treats", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -508763,11 +506451,11 @@ { "id": 4277, "notes": "Give Itzel Daisy Hay", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -508796,11 +506484,11 @@ { "id": 4278, "notes": "Give Itzel apples and 4-leaf clovers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -508833,11 +506521,11 @@ { "id": 4279, "notes": "Itzel gives you one dozen Alpaca Treats", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 200, "items_required": [ { @@ -508869,11 +506557,11 @@ { "id": 4280, "notes": "Give Cecelia 3 clumps of white fleece", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -508902,11 +506590,11 @@ { "id": 4281, "notes": "Give Cecelia 2 clumps of silver fleece", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -508935,11 +506623,11 @@ { "id": 4282, "notes": "Give Cecelia 3 clumps of cream fleece", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -508968,11 +506656,11 @@ { "id": 4283, "notes": "Tracking Cecelia - waiting for her to wash the fleece", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "It looks like I don't have all the fleece yet. Once you give all the colors to me I can get started making the yarn.", @@ -509000,14 +506688,14 @@ { "id": 4284, "notes": "Tracking Cecelia - waiting for fleece to dry.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -509028,14 +506716,14 @@ { "id": 4285, "notes": "Tracking Cecelia - waiting for the fleece to be combed.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -509056,14 +506744,14 @@ { "id": 4286, "notes": "Tracking Cecelia - waiting for fleece to be spun into yarn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -509084,21 +506772,21 @@ { "id": 4287, "notes": "Tracking Colbert after you get the alpaca treats", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " ", "requires_awardid": null, "requires_questid_completed": [], @@ -509112,11 +506800,11 @@ { "id": 4288, "notes": "Get yarn from Cecelia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -509124,7 +506812,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -509145,11 +506833,11 @@ { "id": 4289, "notes": "Exchange an Alpaca Treat for a ruby", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [ { @@ -509182,22 +506870,22 @@ { "id": 4290, "notes": "Tracking Colbert/messed up & you need more treats.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -509210,11 +506898,11 @@ { "id": 4291, "notes": "Give Itzel Daisy Hay - again!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [ { @@ -509243,11 +506931,11 @@ { "id": 4292, "notes": "Give Itzel apples and 4-leaf clovers - again!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [ { @@ -509280,11 +506968,11 @@ { "id": 4293, "notes": "Itzel gives you a dozen Alpaca Treats - again!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 200, "items_required": [ { @@ -509317,12 +507005,10 @@ "id": 4294, "notes": "Yolanda Rewards You ", "title": "Yarn for Yolanda", - "requires_questid_npc": [ - 3681 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -509330,7 +507016,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 50000, "items_gained": [], "quest_points": 200, @@ -509341,7 +507027,9 @@ "success_npc_chat": " Please, take this as a reward. This yarn is perfect for the baby booties. I'll stitch them up tonight. I can't wait until the little one is born to see how they'll look. ", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3681 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Desert", @@ -509351,22 +507039,22 @@ { "id": 4295, "notes": "Track Marina Mooring for Frannie's quest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -509379,14 +507067,14 @@ { "id": 4296, "notes": "Rafiki tells the Horrible, Terrible, Muddy Secret!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -509394,7 +507082,7 @@ "warp_x": null, "warp_y": null, "success_message": "You should check out that dead tree! Don't forget to bring your shovel!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -509407,7 +507095,7 @@ { "id": 4297, "notes": "Dig Rafiki's dead tree to Bird", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -509415,7 +507103,7 @@ "y": 256 }, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -509426,7 +507114,7 @@ "warp_x": 433, "warp_y": 134, "success_message": "Whoosh! You find yourself on Bird Isle. Rafiki said something about a gnome digging worm holes. Maybe that mud hole needs investigation.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509441,7 +507129,7 @@ { "id": 4298, "notes": "Dig Bird Isle to Ring", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -509449,7 +507137,7 @@ "y": 134 }, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -509460,7 +507148,7 @@ "warp_x": 498, "warp_y": 135, "success_message": "Whoosh! Ugh! Now your horse is a muddy mess. On the bright side, you've island-jumped to Ring Isle! Maybe you should look for another dead tree or mud hole.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509475,7 +507163,7 @@ { "id": 4299, "notes": "Dig Ring to Rider", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -509483,7 +507171,7 @@ "y": 135 }, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -509494,7 +507182,7 @@ "warp_x": 650, "warp_y": 127, "success_message": "Whoosh! You are on Rider Isle. Interesting. Dig at a dead tree or in a mud hole and Bingo! You are transported to another island!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509509,7 +507197,7 @@ { "id": 4300, "notes": "Dig Rider to Haven", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -509517,7 +507205,7 @@ "y": 123 }, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -509528,7 +507216,7 @@ "warp_x": 666, "warp_y": 299, "success_message": "Whoosh! You are on Haven Isle. Yuck, yuck and triple yuck! Rafiki was right. You are covered in mud. Time to start looking for the next worm hole!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509543,7 +507231,7 @@ { "id": 4301, "notes": "Dig Haven to Whorl", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -509551,7 +507239,7 @@ "y": 304 }, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -509562,7 +507250,7 @@ "warp_x": 799, "warp_y": 175, "success_message": "Whoosh! You are on Whorl Isle. You wonder what the point of all this island jumping. Rafiki said you end up somewhere amazing. Might as well keep going.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509577,7 +507265,7 @@ { "id": 4302, "notes": "Dig Whorl to Art", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -509585,7 +507273,7 @@ "y": 170 }, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -509596,7 +507284,7 @@ "warp_x": 391, "warp_y": 80, "success_message": "Whoosh! You are on Art Isle. These mud holes are getting really old! ", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509611,7 +507299,7 @@ { "id": 4303, "notes": "Dig Art to Dolphin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -509619,7 +507307,7 @@ "y": 83 }, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -509630,7 +507318,7 @@ "warp_x": 369, "warp_y": 233, "success_message": "Whoosh! You are on Dolphin Isle. This doesn't bode well. There are a ton of dead trees and several mud holes. Better get to work.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509645,7 +507333,7 @@ { "id": 4304, "notes": "Dig Dolphin to Cat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -509653,7 +507341,7 @@ "y": 228 }, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -509664,7 +507352,7 @@ "warp_x": 362, "warp_y": 187, "success_message": "Whoosh! Drat! You're on Cat. Which, of course, has a ton of dead trees. On the bright side, you don't remember any mud holes here.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509679,7 +507367,7 @@ { "id": 4305, "notes": "Dig Cat to Cabin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -509687,7 +507375,7 @@ "y": 186 }, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -509698,7 +507386,7 @@ "warp_x": 805, "warp_y": 285, "success_message": "Whoosh! You are on Cabin Isle. Wait a minute! What is that BRIGHT PURPLE SCRAP you see mostly buried under the log? You'd better dig it out.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509713,7 +507401,7 @@ { "id": 4306, "notes": "Rake Bird Isle to Rafiki", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -509721,7 +507409,7 @@ "y": 134 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -509732,7 +507420,7 @@ "warp_x": 639, "warp_y": 256, "success_message": "Whoosh! You are back on Quiet Isle!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509747,7 +507435,7 @@ { "id": 4307, "notes": "Rake Ring to Bird", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -509755,7 +507443,7 @@ "y": 135 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -509766,7 +507454,7 @@ "warp_x": 432, "warp_y": 134, "success_message": "Whoosh! You are back on Bird Isle!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509781,7 +507469,7 @@ { "id": 4308, "notes": "Rake Rider to Ring", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -509789,7 +507477,7 @@ "y": 123 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -509800,7 +507488,7 @@ "warp_x": 492, "warp_y": 135, "success_message": "Whoosh! You are back on Ring Isle!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509815,7 +507503,7 @@ { "id": 4309, "notes": "Rake Haven to Rider", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -509823,7 +507511,7 @@ "y": 304 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -509834,7 +507522,7 @@ "warp_x": 648, "warp_y": 123, "success_message": "Whoosh! You are back on Rider Isle!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509849,7 +507537,7 @@ { "id": 4310, "notes": "Rake Whorl to Haven", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -509857,7 +507545,7 @@ "y": 170 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -509868,7 +507556,7 @@ "warp_x": 659, "warp_y": 304, "success_message": "Whoosh! You are back on Haven Isle!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509883,7 +507571,7 @@ { "id": 4311, "notes": "Rake Art to Whorl", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -509891,7 +507579,7 @@ "y": 83 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -509902,7 +507590,7 @@ "warp_x": 798, "warp_y": 170, "success_message": "Whoosh! You are back on Whorl Isle!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509917,7 +507605,7 @@ { "id": 4313, "notes": "Rake Cat to Dolphin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -509925,7 +507613,7 @@ "y": 186 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -509936,7 +507624,7 @@ "warp_x": 366, "warp_y": 228, "success_message": "Whoosh! You are back on Dolphin Isle!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509951,7 +507639,7 @@ { "id": 4312, "notes": "Rake Dolphin to Art", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -509959,7 +507647,7 @@ "y": 228 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -509970,7 +507658,7 @@ "warp_x": 395, "warp_y": 83, "success_message": "Whoosh! You are back on Art Isle!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -509985,7 +507673,7 @@ { "id": 4314, "notes": "Rake Cabin to Cat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -509993,7 +507681,7 @@ "y": 286 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -510004,7 +507692,7 @@ "warp_x": 360, "warp_y": 183, "success_message": "Whoosh! You are back on Cat Isle!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -510019,14 +507707,14 @@ { "id": 4315, "notes": "Agree to help Gnigal", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -510047,7 +507735,7 @@ { "id": 4316, "notes": "Find gnome cap ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -510055,7 +507743,7 @@ "y": 285 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -510086,11 +507774,11 @@ { "id": 4317, "notes": "Give Gnome cap to Gnigal", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -510123,7 +507811,7 @@ { "id": 4318, "notes": "Magnify & Find Toadstool on Cat Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -510131,7 +507819,7 @@ "y": 185 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -510162,7 +507850,7 @@ { "id": 4319, "notes": "Magnify & Find Toadstool on Dolphin Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -510170,7 +507858,7 @@ "y": 229 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -510201,7 +507889,7 @@ { "id": 4320, "notes": "Magnify & Find Toadstool on Whorl Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -510209,7 +507897,7 @@ "y": 169 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -510240,7 +507928,7 @@ { "id": 4321, "notes": "Magnify & Find Toadstool on Rider Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -510248,7 +507936,7 @@ "y": 124 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -510279,7 +507967,7 @@ { "id": 4322, "notes": "Magnify & Find Toadstool on Ring Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -510287,7 +507975,7 @@ "y": 134 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -510318,7 +508006,7 @@ { "id": 4323, "notes": "Magnify & Find Toadstool on Quiet Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -510326,7 +508014,7 @@ "y": 255 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -510361,7 +508049,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -510394,14 +508082,14 @@ { "id": 4325, "notes": "Gnigal kicks you to the curb.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -510422,11 +508110,11 @@ { "id": 4326, "notes": "Gnigal buys a plush unicorn from you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -510455,7 +508143,7 @@ { "id": 4327, "notes": "Subsequent Digging Cat to Cabin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -510463,7 +508151,7 @@ "y": 185 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -510473,7 +508161,7 @@ "goto_npc_chatpoint": -1, "warp_x": 805, "warp_y": 285, - "success_message": "", + "success_message": null, "success_npc_chat": "Whoosh! You are back on Cabin Isle!", "requires_awardid": null, "requires_questid_completed": [], @@ -510489,7 +508177,7 @@ { "id": 4329, "notes": "Dig Mane to Tail", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -510497,7 +508185,7 @@ "y": 186 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -510508,7 +508196,7 @@ "warp_x": 378, "warp_y": 357, "success_message": "Whoosh! You find yourself on Tail Isle!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -510523,11 +508211,11 @@ { "id": 4345, "notes": "Gnigal buys a plush pegasus from you", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -510556,7 +508244,7 @@ { "id": 4330, "notes": "Dig Mane to Desert mud hole", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -510564,7 +508252,7 @@ "y": 190 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -510575,7 +508263,7 @@ "warp_x": 464, "warp_y": 415, "success_message": "Whoosh! You find yourself on Desert Isle. Yuck. Another mud hole.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -510590,7 +508278,7 @@ { "id": 4331, "notes": "Dig Mane to Turtle tree", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -510598,7 +508286,7 @@ "y": 189 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -510609,7 +508297,7 @@ "warp_x": 602, "warp_y": 319, "success_message": "Whoosh! You find yourself on Turtle Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -510624,7 +508312,7 @@ { "id": 4332, "notes": "Rake Tail to Mane", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -510632,7 +508320,7 @@ "y": 357 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -510643,7 +508331,7 @@ "warp_x": 474, "warp_y": 186, "success_message": "Whoosh! You find yourself back on Mane Isle!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -510658,7 +508346,7 @@ { "id": 4333, "notes": "Rake Desert to Mane", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -510666,7 +508354,7 @@ "y": 415 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -510677,7 +508365,7 @@ "warp_x": 472, "warp_y": 190, "success_message": "Whoosh! You find yourself back on Mane Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -510692,7 +508380,7 @@ { "id": 4334, "notes": "Rake Turtle to Mane", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -510700,7 +508388,7 @@ "y": 319 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -510711,7 +508399,7 @@ "warp_x": 474, "warp_y": 189, "success_message": "Whoosh! You find yourself back on Mane Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -510726,11 +508414,11 @@ { "id": 4335, "notes": "Gnorman buys a gnome", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -510763,11 +508451,11 @@ { "id": 4336, "notes": "Gnorman buys a flamingo", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -510800,14 +508488,14 @@ { "id": 4337, "notes": "Agree to get Gnorman two flamingos", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -510832,7 +508520,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -510865,14 +508553,14 @@ { "id": 4339, "notes": "Agree to get Gnorman garden gnomes & leprechaun dust", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9, + "max_repeats": 9, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -510894,12 +508582,10 @@ "id": 4340, "notes": "Gnorman gets gnomes and magic dust ", "title": "Gnorman's Gnome Project", - "requires_questid_npc": [ - 2576 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -510926,7 +508612,9 @@ "success_npc_chat": "Wonderful, wonderful! Here is a reward of 35 red pine cones. And if you ever have more garden gnomes, I'll buy them from you.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2576 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "Desertmorn", @@ -510936,11 +508624,11 @@ { "id": 4341, "notes": "Fergus gives you leprechaun dust", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -510948,7 +508636,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -510969,16 +508657,14 @@ { "id": 4435, "notes": "Agree to help Mandy get Stacie a doll", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 0, @@ -510999,14 +508685,14 @@ { "id": 4342, "notes": "Gnigal sends you to see Gnorman, again.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -511014,7 +508700,7 @@ "warp_x": 472, "warp_y": 190, "success_message": "You whoosh through the air and find yourself in the Past its Prime Forest.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -511027,11 +508713,11 @@ { "id": 4343, "notes": "Give Leda 6 pearls to use as eyes.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511060,11 +508746,11 @@ { "id": 4344, "notes": "Hanska sells you a Plush Pegasus companion", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 250, "items_required": [ { @@ -511093,14 +508779,14 @@ { "id": 4346, "notes": "Oringo sends you to find his bell", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -511121,7 +508807,7 @@ { "id": 4347, "notes": "You find the bracket", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -511129,7 +508815,7 @@ "y": 273 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511160,11 +508846,11 @@ { "id": 4348, "notes": "you give Oringo the bracket", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511193,11 +508879,11 @@ { "id": 4349, "notes": "You agree to take Indigo's Maze Challenge ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 1000, "items_required": [], "fail_npc_chat": "You do not have the $1000 for this challenge. Come back when you do, please!", @@ -511222,12 +508908,10 @@ "id": 4350, "notes": "Indigo Congratulates you for winning his challenge", "title": "Indigo's Maze Challenge", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this! (bug)", @@ -511251,13 +508935,11 @@ { "id": 4351, "notes": "You get the bonus question right for Indigo's Quiz", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this! (bug)", @@ -511281,22 +508963,22 @@ { "id": 4352, "notes": "Tracking Zoetta's confusion", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -511309,14 +508991,14 @@ { "id": 4353, "notes": "Agree to bring Colbert a female Great Pyrenees & a baby male alpaca.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -511337,11 +509019,11 @@ { "id": 4354, "notes": "Give Colbert Pyrenees", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511374,11 +509056,11 @@ { "id": 4355, "notes": "Itzel gives you a female baby alpaca ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511386,7 +509068,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -511407,22 +509089,22 @@ { "id": 4363, "notes": "Tracking Colbert", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -511435,11 +509117,11 @@ { "id": 4356, "notes": "Give Colbert baby alpaca.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511472,11 +509154,11 @@ { "id": 4357, "notes": "Colbert checks to see if he has both", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": " You haven't given me both of those yet. ", @@ -511503,22 +509185,22 @@ { "id": 4358, "notes": "Tracking Itzel", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -511531,22 +509213,22 @@ { "id": 4359, "notes": "Tracking Itzel 2nd time", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -511559,11 +509241,11 @@ { "id": 4360, "notes": "Give Zoetta treat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511592,11 +509274,11 @@ { "id": 4361, "notes": "Agree to give Zoetta an alpaca treat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511604,7 +509286,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -511626,12 +509308,10 @@ "id": 4362, "notes": "Colbert rewards you ", "title": "Zoetta's Misplaced Affections", - "requires_questid_npc": [ - 4294 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511651,6 +509331,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 4294, 4360 ], "hide_reply_on_fail": true, @@ -511662,22 +509343,22 @@ { "id": 4364, "notes": "Tracking Kevin after talking to Bailey about currents", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -511690,11 +509371,11 @@ { "id": 4365, "notes": "Pony Express Agree to delivery #31 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511723,11 +509404,11 @@ { "id": 4366, "notes": "Pony Express Completed Delivery #31 Hyrokkin/Berg", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511739,7 +509420,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -511760,11 +509441,11 @@ { "id": 4367, "notes": "Pony Express Agree to Delivery #32 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511793,11 +509474,11 @@ { "id": 4368, "notes": "Pony Express Completed Delivery #32 Itzel/Yellow Brick", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511805,7 +509486,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3500, "items_gained": [], "quest_points": 0, @@ -511826,11 +509507,11 @@ { "id": 4369, "notes": "Pony Express Agree to Delivery #33 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511859,11 +509540,11 @@ { "id": 4370, "notes": "Pony Express Completed Delivery #33 Woody/Web", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511871,7 +509552,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3500, "items_gained": [], "quest_points": 0, @@ -511892,7 +509573,7 @@ { "id": 4371, "notes": "You find the bell, sort of", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -511900,7 +509581,7 @@ "y": 273 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511931,7 +509612,7 @@ { "id": 4372, "notes": "You found the clapper", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -511939,7 +509620,7 @@ "y": 271 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -511970,14 +509651,14 @@ { "id": 4373, "notes": "Oringo asks you to repair his bell.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -511998,11 +509679,11 @@ { "id": 4374, "notes": "shortcut to say you've been to hotsplotz - quest checking", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -512014,14 +509695,14 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Now that you have the crown & scepter, you need to trade it for a payment in an envelope.", "requires_awardid": null, "requires_questid_completed": [], @@ -512035,11 +509716,11 @@ { "id": 4375, "notes": "You give Sandy Flint the bell parts.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512072,11 +509753,11 @@ { "id": 4376, "notes": "Sandy Flint gives you Oringo's Bell", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -512109,7 +509790,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512148,11 +509829,11 @@ { "id": 4378, "notes": "Quest checking - trade King's Crown & Sceptor for payment envelope", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 10, + "max_repeats": 10, "money_cost": 0, "items_required": [ { @@ -512168,14 +509849,14 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Now that you've gotten the envelope, time to pay Gray Slate.", "requires_awardid": null, "requires_questid_completed": [], @@ -512189,11 +509870,11 @@ { "id": 4415, "notes": "Agree to help Dusty", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512205,7 +509886,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -512226,11 +509907,11 @@ { "id": 4379, "notes": "Pony Express Agree to Delivery #34 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512259,11 +509940,11 @@ { "id": 4380, "notes": "Pony Express Completed Delivery #34 Jordan/Torrid", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512271,7 +509952,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -512292,11 +509973,11 @@ { "id": 4381, "notes": "Pony Express Agree to Delivery #35 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512325,11 +510006,11 @@ { "id": 4382, "notes": "Pony Express Completed Delivery #35 Venda/Quiet", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512362,14 +510043,14 @@ { "id": 4383, "notes": "Agree to help Giuliana", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -512377,7 +510058,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've agreed to search the jungle for Giuliana's pet monkey Tika.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -512390,14 +510071,14 @@ { "id": 4384, "notes": "Scare Tika away", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -512405,7 +510086,7 @@ "warp_x": null, "warp_y": null, "success_message": "Tika got scared and jumped up into a tree. Time to head back to see Giuliana with the bad news.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -512418,11 +510099,11 @@ { "id": 4385, "notes": "Pony Express Agree to Delivery #36 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512451,11 +510132,11 @@ { "id": 4386, "notes": "Pony Express Completed Delivery #36 Leontine/Rain Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512467,7 +510148,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -512488,11 +510169,11 @@ { "id": 4387, "notes": "Pony Express Agree to Delivery #37 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512521,11 +510202,11 @@ { "id": 4388, "notes": "Pony Express Completed Delivery #37 Grendel/Whorl", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512537,7 +510218,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -512558,11 +510239,11 @@ { "id": 4389, "notes": "Pony Express Agree to Delivery #38 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512591,11 +510272,11 @@ { "id": 4390, "notes": "Pony Express Completed Delivery #38 Frank Tackle/Appleton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512603,7 +510284,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -512624,11 +510305,11 @@ { "id": 4391, "notes": "Pony Express Agree to Delivery #39 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512657,11 +510338,11 @@ { "id": 4392, "notes": "Pony Express Completed Delivery #39 Sara, Mayor of Shellton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512669,7 +510350,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -512690,11 +510371,11 @@ { "id": 4393, "notes": "Pony Express Agree to Delivery #40 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512723,11 +510404,11 @@ { "id": 4394, "notes": "Pony Express Completed Delivery #40 Lesia/Glacier", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512739,7 +510420,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -512760,11 +510441,11 @@ { "id": 4395, "notes": "Pony Express Agree to Delivery #41", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512793,11 +510474,11 @@ { "id": 4396, "notes": "Pony Express Completed Delivery #41 Tighe/Cabin", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512809,7 +510490,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -512830,11 +510511,11 @@ { "id": 4397, "notes": "Pony Express Agree to Delivery #42", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512863,11 +510544,11 @@ { "id": 4398, "notes": "Pony Express Completed Delivery #42 Hank Halyard/Horn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512875,7 +510556,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -512896,11 +510577,11 @@ { "id": 4405, "notes": "Pony Express Agree to Delivery #46", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512929,11 +510610,11 @@ { "id": 4399, "notes": "Pony Express Agree to Delivery #43", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512962,11 +510643,11 @@ { "id": 4400, "notes": "Pony Express Completed Delivery #43 Dusty/Sand Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -512978,7 +510659,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -512999,11 +510680,11 @@ { "id": 4401, "notes": "Pony Express Agree to Delivery #44", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513032,11 +510713,11 @@ { "id": 4402, "notes": "Pony Express Completed Delivery #44 Reuben/Appleton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513048,7 +510729,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 250, "items_gained": [], "quest_points": 0, @@ -513069,11 +510750,11 @@ { "id": 4403, "notes": "Pony Express Agree to Delivery #45", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513102,11 +510783,11 @@ { "id": 4404, "notes": "Pony Express Completed Delivery #45 Rocco/Rock", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513114,7 +510795,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3500, "items_gained": [], "quest_points": 0, @@ -513135,11 +510816,11 @@ { "id": 4406, "notes": "Pony Express Completed Delivery #46 Fitzgerald/Dust", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513147,7 +510828,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3500, "items_gained": [], "quest_points": 0, @@ -513168,11 +510849,11 @@ { "id": 4407, "notes": "Pony Express Agree to Delivery #47", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513201,11 +510882,11 @@ { "id": 4408, "notes": "Pony Express Completed Delivery #47 Heather/Art", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513213,7 +510894,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 0, @@ -513234,11 +510915,11 @@ { "id": 4409, "notes": "Pony Express Agree to Delivery #48", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513267,11 +510948,11 @@ { "id": 4410, "notes": "Pony Express Completed Delivery #48 Andrea/Ring", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513300,11 +510981,11 @@ { "id": 4411, "notes": "Pony Express Agree to Delivery #49", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513333,11 +511014,11 @@ { "id": 4412, "notes": "Pony Express Completed Delivery #49 Clara/Jungle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513366,11 +511047,11 @@ { "id": 4413, "notes": "Pony Express Agree to Delivery #50", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513399,11 +511080,11 @@ { "id": 4414, "notes": "Pony Express Completed Delivery #50 Twyla/Dog", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513415,7 +511096,7 @@ "quantity": 20 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -513436,11 +511117,11 @@ { "id": 4416, "notes": "Deliver letter to Gritty", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513470,12 +511151,10 @@ "id": 4417, "notes": "Dusty rewards you ", "title": "Dusty's Origami Dove", - "requires_questid_npc": [ - 4400 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513483,7 +511162,7 @@ "quantity": 20 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 50, @@ -513494,7 +511173,9 @@ "success_npc_chat": "I can't thank you enough. You've given this old man a great amount of joy today. Here, please take these. I find them in the grass now and then.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4400 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Desertmorn", @@ -513504,14 +511185,14 @@ { "id": 4418, "notes": "Ocean Born Mary asks for help", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -513532,7 +511213,7 @@ { "id": 4419, "notes": "footsteps by the beach tent", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -513540,7 +511221,7 @@ "y": 33 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look around but see nothing interesting.", @@ -513567,7 +511248,7 @@ { "id": 4420, "notes": "Coconut shells by the palm tree", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -513575,7 +511256,7 @@ "y": 33 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look around but see nothing interesting.", @@ -513602,7 +511283,7 @@ { "id": 4421, "notes": "check out the treasure chest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -513610,7 +511291,7 @@ "y": 31 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look around but see nothing interesting.", @@ -513637,7 +511318,7 @@ { "id": 4422, "notes": "You hear someone snoring!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -513645,7 +511326,7 @@ "y": 30 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look around but see nothing interesting.", @@ -513676,7 +511357,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513688,7 +511369,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 25, @@ -513709,11 +511390,11 @@ { "id": 4424, "notes": "Colbert sells you an alpaca treat for a ruby in case you accidentally sold the one you needed for his quest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -513746,11 +511427,11 @@ { "id": 4425, "notes": "Tracking 50th delivery for pony express", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513758,7 +511439,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -513782,11 +511463,11 @@ { "id": 4426, "notes": "Nancy gives you her treasure chest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513794,7 +511475,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 0, @@ -513815,11 +511496,11 @@ { "id": 4427, "notes": "Ocean Born Mary send you to find Mike", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Arr, so she be needin' the services of me Mike does she? (Chuckles to herself.) Go ta Pegleg Pat, he'll git ye a Mike. He be SouthWest of here.", @@ -513843,7 +511524,7 @@ { "id": 4428, "notes": "You bury No-Navel nancy's treasure", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -513851,7 +511532,7 @@ "y": 35 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513882,11 +511563,11 @@ { "id": 4429, "notes": "Mike gives you No-Navel Nancy's map", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 5000, "items_required": [ { @@ -513916,12 +511597,10 @@ "id": 4430, "notes": "No-Navel Nancy gets her map and you get rewarded", "title": "No-Navel Nancy's Treasure", - "requires_questid_npc": [ - 3261 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513944,7 +511623,9 @@ "success_npc_chat": "(You hand Nancy her treasure map.) Thank ye, matey. Now I know me bounty is safe and sound. Here be a little bit of shiny for yer troubles!", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3261 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "BklynFilly", @@ -513954,11 +511635,11 @@ { "id": 4493, "notes": "You agree to take Cordovan's Alpaca Challenge ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 1000, "items_required": [], "fail_npc_chat": "You do not have the $1000 for this challenge. Come back when you do, please!", @@ -513982,11 +511663,11 @@ { "id": 4431, "notes": "Harlan sends you to Zeke", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -513994,7 +511675,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -514015,14 +511696,14 @@ { "id": 4432, "notes": "Zeke needs Huckleberries", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -514043,11 +511724,11 @@ { "id": 4433, "notes": "Zeke gets the Huckleberries and you get the Provisions", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -514084,7 +511765,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -514123,16 +511804,14 @@ { "id": 4436, "notes": "Agree to get Kelda supplies", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -514153,13 +511832,11 @@ { "id": 4437, "notes": "Get ebony nesting forms from Xamba", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -514167,7 +511844,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -514188,13 +511865,11 @@ { "id": 4438, "notes": "Give ebony nesting forms to Kelda", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -514223,23 +511898,21 @@ { "id": 4439, "notes": "Track Xamba", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " Hmm... Two days. Yes. Two days will be enough time. Go. Explore!", "requires_awardid": null, "requires_questid_completed": [], @@ -514253,13 +511926,11 @@ { "id": 4440, "notes": "Get assorted colorful beetle shells from Flicka", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -514267,7 +511938,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -514288,13 +511959,11 @@ { "id": 4441, "notes": "Give Kelda the beetle shells", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -514323,13 +511992,11 @@ { "id": 4442, "notes": "Get gold leaf from Smiddy Jones", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -514362,13 +512029,11 @@ { "id": 4443, "notes": "Give Kelda the sheet of gold leaf", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -514397,13 +512062,11 @@ { "id": 4444, "notes": "Kelda checks to see that you've brought her everything.", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Not quite. I needed ebony forms, gold leaf, and beetle shells. Please come back when you have everything.", @@ -514431,23 +512094,21 @@ { "id": 4445, "notes": "Track Kelda first time", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " And here's the second smallest one. It is covered in charming chameleons. I've still got four more nesting shapes to paint. Come back in a few days.", "requires_awardid": null, "requires_questid_completed": [], @@ -514461,23 +512122,21 @@ { "id": 4446, "notes": "Track Kelda 2nd time", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " And look here! I've covered the fourth form in lovely parrots! I wanted to share everything that's beautiful about the Jungle. So, that said, give me a couple more days, please.", "requires_awardid": null, "requires_questid_completed": [], @@ -514491,23 +512150,21 @@ { "id": 4447, "notes": "Track Kelda 3rd time", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " Please give me one more day to finish the outer shell. My reputation is on the line here and I simply won't be rushed.", "requires_awardid": null, "requires_questid_completed": [], @@ -514521,13 +512178,11 @@ { "id": 4448, "notes": "Kelda gives you the beautiful ebony nesting doll set", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 2500, "items_required": [ { @@ -514556,22 +512211,22 @@ { "id": 4449, "notes": "Track Mandy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -514584,11 +512239,11 @@ { "id": 4450, "notes": "Give Stacie the Ebony Nesting Doll set", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -514618,15 +512273,13 @@ "id": 4451, "notes": "Mandy rewards you.", "title": "Mandy's Gift Idea", - "requires_questid_npc": [ - 3135 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 150, @@ -514637,7 +512290,9 @@ "success_npc_chat": "Thank you so much! Here's a small reward for your time and travel.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 3135 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Desertmorn", @@ -514647,22 +512302,22 @@ { "id": 4452, "notes": "Track Kelda", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -514675,11 +512330,11 @@ { "id": 4504, "notes": "Harlan takes back his bean and rice burrito.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -514698,7 +512353,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You've given Harlan a Bean and Rick Burrito. He's given you 2 Pie a la Modes in exchange.", "requires_awardid": null, "requires_questid_completed": [], @@ -514712,14 +512367,14 @@ { "id": 4453, "notes": "Offer to help Eric Awlaboard", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -514740,22 +512395,22 @@ { "id": 4454, "notes": "Track Mandy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -514768,14 +512423,14 @@ { "id": 4455, "notes": "Agree to get Mandy groceries", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 100, "items_gained": [], "quest_points": 0, @@ -514796,11 +512451,11 @@ { "id": 4457, "notes": "Give Mandy groceries.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -514829,11 +512484,11 @@ { "id": 4456, "notes": "Get groceries from Barrett", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -514841,7 +512496,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -514862,11 +512517,11 @@ { "id": 4458, "notes": "Get sandwich from Mandy.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -514874,7 +512529,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -514899,7 +512554,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -514928,14 +512583,14 @@ { "id": 4460, "notes": "Agree to try to help the creature", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -514956,14 +512611,14 @@ { "id": 4461, "notes": "Agree to get starfish", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -514993,7 +512648,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515030,14 +512685,14 @@ { "id": 4463, "notes": "Track Renard", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -515058,14 +512713,14 @@ { "id": 4464, "notes": "Tracking Kier's clues", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -515086,14 +512741,14 @@ { "id": 4465, "notes": "Agree to help Murigal", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -515114,22 +512769,22 @@ { "id": 4466, "notes": "Track Gnetta", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -515142,14 +512797,14 @@ { "id": 4467, "notes": "You've vexed the witch", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -515170,14 +512825,14 @@ { "id": 4468, "notes": "Agree to help Elphiblah", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -515198,11 +512853,11 @@ { "id": 4469, "notes": "Give Elphiblah cloud ingrediants for Love Potion #9", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515235,11 +512890,11 @@ { "id": 4470, "notes": "Give Elphiblah lava ingrediants for Love Potion #9", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515272,11 +512927,11 @@ { "id": 4471, "notes": "Give Elphiblah Pixie Dust/4 Leaf Clover for Love Potion #9", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515309,11 +512964,11 @@ { "id": 4473, "notes": "Elphiblah makes her Love Potion #9", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515347,11 +513002,11 @@ { "id": 4472, "notes": "Give Elphiblah wishing coin & flies for Love Potion #9", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515384,7 +513039,7 @@ { "id": 4475, "notes": "You find missing gem #1 in Shell Forest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -515392,7 +513047,7 @@ "y": 314 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515423,22 +513078,22 @@ { "id": 4474, "notes": "Murigal tells you where she jumped to", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -515451,7 +513106,7 @@ { "id": 4476, "notes": "You find missing gem #2 on Torrid", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -515459,7 +513114,7 @@ "y": 468 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515490,7 +513145,7 @@ { "id": 4477, "notes": "You find missing gem #3 south of Pyramid #3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -515498,7 +513153,7 @@ "y": 481 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515529,7 +513184,7 @@ { "id": 4478, "notes": "You find missing gem #4 near Pyramid #2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -515537,7 +513192,7 @@ "y": 463 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515568,7 +513223,7 @@ { "id": 4479, "notes": "You find missing gem #5 north of Equestrian Park", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -515576,7 +513231,7 @@ "y": 274 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515607,7 +513262,7 @@ { "id": 4480, "notes": "You find missing gem #6 in Witherton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -515615,7 +513270,7 @@ "y": 140 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515646,7 +513301,7 @@ { "id": 4481, "notes": "You find missing gem #7 in Earton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -515654,7 +513309,7 @@ "y": 186 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515685,7 +513340,7 @@ { "id": 4482, "notes": "You find missing gem #8 near fairy berries", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -515693,7 +513348,7 @@ "y": 334 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515724,7 +513379,7 @@ { "id": 4483, "notes": "You find missing gem #9 on Yellow Brick", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -515732,7 +513387,7 @@ "y": 479 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515763,7 +513418,7 @@ { "id": 4484, "notes": "You find missing gem #10 on Yellow Brick", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -515771,7 +513426,7 @@ "y": 484 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515802,11 +513457,11 @@ { "id": 4485, "notes": "Give Elphiblah 10 Royal Gemstones", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515839,14 +513494,14 @@ { "id": 4486, "notes": "Use Love Potion #9 On Charles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -515854,7 +513509,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've used the Love Potion #9 on Charles! Time to find Murigal and do the same to her.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -515867,11 +513522,11 @@ { "id": 4487, "notes": "Use Love Potion #9 on Murigal", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515879,7 +513534,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -515887,7 +513542,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've used the rest of the Love Potion #9 on Murigal! **Poof**! The empty bottle of potion disappears.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -515900,14 +513555,14 @@ { "id": 4488, "notes": "Agree to get Elphiblah the gems", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -515928,11 +513583,11 @@ { "id": 4489, "notes": "Use the key to set Murigal free.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -515961,7 +513616,7 @@ { "id": 4490, "notes": "You find an extra missing gem #11 - bonus in the berry bush pond", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -515969,7 +513624,7 @@ "y": 334 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516000,11 +513655,11 @@ { "id": 4491, "notes": "Gnetta gives you a small reward.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516016,7 +513671,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -516044,7 +513699,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516056,7 +513711,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 250, @@ -516078,12 +513733,10 @@ "id": 4494, "notes": "You win ", "title": "Cordovan's Alpaca Challenge", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this! (bug)", @@ -516107,13 +513760,11 @@ { "id": 4495, "notes": "You get bonus question right for Cordovan's Challenge", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this! (bug)", @@ -516137,7 +513788,7 @@ { "id": 4496, "notes": "Demetrius' clue riddle #6 on side of pyramid", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -516145,7 +513796,7 @@ "y": 481 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -516155,7 +513806,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Looking carefully at the stones of the pyramid, you discover some hieroglyphs. They show The Eye of Horus and the symbol for East.", "requires_awardid": null, "requires_questid_completed": [], @@ -516172,7 +513823,7 @@ { "id": 4497, "notes": "Find the treasure from Demetrius' clues.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -516180,7 +513831,7 @@ "y": 481 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516224,15 +513875,13 @@ "id": 4498, "notes": "Demetrius rewards you. ", "title": "Demetrius' Treasure Riddle", - "requires_questid_npc": [ - 541 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 200, @@ -516244,6 +513893,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 541, 4497 ], "hide_reply_on_fail": true, @@ -516255,22 +513905,22 @@ { "id": 4499, "notes": "Used to reset chat point to 0 Ford Prefect", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 0, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -516283,11 +513933,11 @@ { "id": 4525, "notes": "Be sure you have necessary quests completed for Renard quest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "Non, non. Nothing recently.", @@ -516297,7 +513947,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Oui, yes, a most interesting and beautiful creature I have laid my eyes on. I would be more specific, but perhaps you would think me sénile! ", "requires_awardid": null, "requires_questid_completed": [ @@ -516314,21 +513964,21 @@ { "id": 4500, "notes": "Mercurius sends you back to the isle to look for Ariela", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": 678, "warp_y": 341, - "success_message": "", + "success_message": null, "success_npc_chat": " *POOF* You were sent back to the Unknown Isle.", "requires_awardid": null, "requires_questid_completed": [], @@ -516342,22 +513992,22 @@ { "id": 4501, "notes": "Track No-Navel Nancy so chat makes more sense", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -516370,22 +514020,22 @@ { "id": 4502, "notes": "Track Ocean Born Mary so chat makes more sense", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -516398,22 +514048,22 @@ { "id": 4503, "notes": "Track Jackie Sparrow so quest actions makes more sense", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -516426,11 +514076,11 @@ { "id": 4505, "notes": "Agree to exchange leather for cowboy boots Hershel/Appleton ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have those.", @@ -516454,14 +514104,14 @@ { "id": 4506, "notes": "Agree to trade Su Comida/Sand Isle 3 Gen'l Store - 12 bundles of sage for jojoba oil", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -516482,7 +514132,7 @@ { "id": 4507, "notes": "A bundle of Sage/just west of Santon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -516490,7 +514140,7 @@ "y": 440 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516521,7 +514171,7 @@ { "id": 4508, "notes": "A bundle of sage/south of skull in Santon ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -516529,7 +514179,7 @@ "y": 449 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516560,7 +514210,7 @@ { "id": 4509, "notes": "A bundle of Sage/Northwest of Santon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -516568,7 +514218,7 @@ "y": 431 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516599,7 +514249,7 @@ { "id": 4510, "notes": "A bundle of Sage/Northeast of Sandy Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -516607,7 +514257,7 @@ "y": 440 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516638,7 +514288,7 @@ { "id": 4511, "notes": "A bundle of Sage/East of Sandy Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -516646,7 +514296,7 @@ "y": 447 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516677,7 +514327,7 @@ { "id": 4512, "notes": "A bundle of Sage/Southeast of Sandy Meadows/skull", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -516685,7 +514335,7 @@ "y": 449 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516716,7 +514366,7 @@ { "id": 4513, "notes": "A bundle of Sage/Southwest of Sandy Meadows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -516724,7 +514374,7 @@ "y": 450 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516755,7 +514405,7 @@ { "id": 4514, "notes": "A bundle of Sage/Dust Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -516763,7 +514413,7 @@ "y": 419 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516794,7 +514444,7 @@ { "id": 4515, "notes": "A bundle of Sage/Northwest of Pyramid on Sand Isle 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -516802,7 +514452,7 @@ "y": 450 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516833,7 +514483,7 @@ { "id": 4516, "notes": "A bundle of Sage/North of teepees on Sand Isle 3", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -516841,7 +514491,7 @@ "y": 443 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516872,7 +514522,7 @@ { "id": 4517, "notes": "A bundle of Sage/Northeast of Odysseus' hut/Sand Isle 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -516880,7 +514530,7 @@ "y": 442 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516911,7 +514561,7 @@ { "id": 4518, "notes": "A bundle of Sage/Northwest of Odysseus' hut/Sand Isle 2", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -516919,7 +514569,7 @@ "y": 439 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516950,11 +514600,11 @@ { "id": 4519, "notes": "Exchange 12 sage bundles for jojoba oil from Su Comida/Sand Isle 3 Gen'l Store", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -516987,14 +514637,14 @@ { "id": 4520, "notes": "Agree to find Rowdy's Missing Fishing Pole ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -517015,7 +514665,7 @@ { "id": 4521, "notes": "Find Rowdy's Fishing Pole", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -517023,7 +514673,7 @@ "y": 272 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517058,7 +514708,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517089,14 +514739,14 @@ { "id": 4523, "notes": "Agree to get Scowlin' Sid some cowboy boots", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -517104,7 +514754,7 @@ "warp_x": null, "warp_y": null, "success_message": "You agreed to get Custom Cowboy Boots for Scowlin' Sid.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -517117,11 +514767,11 @@ { "id": 4524, "notes": "Giuliana gives you a banana", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517129,7 +514779,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -517151,12 +514801,10 @@ "id": 4527, "notes": "Return the monkey Tika to his home", "title": "Giuliana's Missing Friend", - "requires_questid_npc": [ - 4377 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517168,7 +514816,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 100, @@ -517179,7 +514827,9 @@ "success_npc_chat": " And can you please take my pet chameleons. I will miss them, but Tika teases them too much. They need a new home.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4377 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Desertmorn", @@ -517189,22 +514839,22 @@ { "id": 4534, "notes": "Track Dog Isle Community Center chat w/Bettina", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -517217,11 +514867,11 @@ { "id": 4528, "notes": "Give Hersel 15 leather pieces and strapping", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517254,7 +514904,7 @@ { "id": 4529, "notes": "Dig to leave Spirit island", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -517262,17 +514912,17 @@ "y": 327 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": 674, "warp_y": 327, - "success_message": "", + "success_message": null, "success_npc_chat": "Well that worked nicely! The tunnel led you to Rock Isle.", "requires_awardid": null, "requires_questid_completed": [], @@ -517286,11 +514936,11 @@ { "id": 4530, "notes": "Give Hersel Jojoba Oil", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517319,11 +514969,11 @@ { "id": 4531, "notes": "Get customized cowboy boots", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 3000, "items_required": [ { @@ -517359,7 +515009,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517371,7 +515021,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 150, @@ -517392,14 +515042,14 @@ { "id": 4533, "notes": "Agree to get Hershel jojoba oil", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -517420,11 +515070,11 @@ { "id": 4535, "notes": "Give Mdm. Babushka the golden key", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517453,11 +515103,11 @@ { "id": 4536, "notes": "Mdm. Babushka gives you 5 diamonds", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517465,7 +515115,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -517486,24 +515136,22 @@ { "id": 4537, "notes": "Nizhoni tells you about the calumets (tracking)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -517516,13 +515164,11 @@ { "id": 4538, "notes": "Nizhoni tells you about the gemstones needed (tracking)", - "title": "", - "requires_questid_npc": [ - 0 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "Hmmm...", @@ -517532,8 +515178,8 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -517546,11 +515192,11 @@ { "id": 4539, "notes": "Pony Express Agree to Delivery #51 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517579,11 +515225,11 @@ { "id": 4540, "notes": "Pony Express Completed Delivery #51 Haley/Turtle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517591,7 +515237,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -517612,11 +515258,11 @@ { "id": 4541, "notes": "Pony Express Agree to Delivery #52", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517645,11 +515291,11 @@ { "id": 4542, "notes": "Pony Express Completed Delivery #52 Anastacia Selsup/Glacier", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517657,7 +515303,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3500, "items_gained": [], "quest_points": 0, @@ -517678,11 +515324,11 @@ { "id": 4543, "notes": "Pony Express Agree to Delivery #53 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517711,11 +515357,11 @@ { "id": 4544, "notes": "Pony Express Completed Delivery #53 Cygnus/Bird", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517727,7 +515373,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -517748,11 +515394,11 @@ { "id": 4545, "notes": "Give gold key to Bettina", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517781,14 +515427,14 @@ { "id": 4546, "notes": "You annoy Baba Yaga", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -517796,7 +515442,7 @@ "warp_x": 243, "warp_y": 100, "success_message": "Baba Yaga has poofed you out of her house and beyond!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -517809,14 +515455,14 @@ { "id": 4547, "notes": "You agree to find Karta's missing astrolabe", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -517837,7 +515483,7 @@ { "id": 4548, "notes": "Find astrolabe", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -517845,7 +515491,7 @@ "y": 320 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517861,7 +515507,7 @@ "warp_x": null, "warp_y": null, "success_message": "You found Karta's missing Astrolabe.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -517878,7 +515524,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517911,11 +515557,11 @@ { "id": 4550, "notes": "Pony Express Agree to Delivery #54 ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517944,11 +515590,11 @@ { "id": 4551, "notes": "Pony Express Completed Delivery #54 Admiral Leonard/Star", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -517960,7 +515606,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -517981,11 +515627,11 @@ { "id": 4552, "notes": "Pony Express Agree to Delivery #55", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518014,11 +515660,11 @@ { "id": 4553, "notes": "Pony Express Completed Delivery #55 Catronia/Cat", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518026,7 +515672,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 3500, "items_gained": [], "quest_points": 0, @@ -518047,11 +515693,11 @@ { "id": 4554, "notes": "Pony Express Agree to Delivery #56", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518080,11 +515726,11 @@ { "id": 4555, "notes": "Pony Express Completed Delivery #56 Barbette/Witherton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518092,7 +515738,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2500, "items_gained": [], "quest_points": 0, @@ -518113,11 +515759,11 @@ { "id": 4556, "notes": "Pony Express Agree to Delivery #57", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518146,11 +515792,11 @@ { "id": 4557, "notes": "Pony Express Completed Delivery #57 Felicity/Earton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518158,7 +515804,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 1000, "items_gained": [], "quest_points": 0, @@ -518179,11 +515825,11 @@ { "id": 4558, "notes": "Pony Express Agree to Delivery #58", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518212,11 +515858,11 @@ { "id": 4559, "notes": "Pony Express Completed Delivery #58 Bettina/Dog", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518224,7 +515870,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5500, "items_gained": [], "quest_points": 0, @@ -518245,11 +515891,11 @@ { "id": 4560, "notes": "Pony Express Agree to Delivery #59", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518278,11 +515924,11 @@ { "id": 4561, "notes": "Pony Express Completed Delivery #59 Dewey/Treeton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518315,11 +515961,11 @@ { "id": 4562, "notes": "Pony Express Agree to Delivery #60", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518348,11 +515994,11 @@ { "id": 4563, "notes": "Pony Express Completed Delivery #60 Sundance/Torrid", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518364,7 +516010,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -518385,14 +516031,14 @@ { "id": 4564, "notes": "You agree to deliver something for Sundance", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -518413,11 +516059,11 @@ { "id": 4565, "notes": "Get mysterious pkg from Caren Hart", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518425,7 +516071,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -518446,11 +516092,11 @@ { "id": 4566, "notes": "You deliver the mysterious package", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518480,12 +516126,10 @@ "id": 4567, "notes": "Sundance rewards you", "title": "A Delivery For Sundance", - "requires_questid_npc": [ - 4563 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518493,7 +516137,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 100, @@ -518504,7 +516148,9 @@ "success_npc_chat": " Here, take these for all your hard work. I find them in the desert all the time.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4563 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "DesertMorn", @@ -518514,21 +516160,21 @@ { "id": 4568, "notes": "tracking Lief once you get the coloring book", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": 15, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " ", "requires_awardid": null, "requires_questid_completed": [], @@ -518542,14 +516188,14 @@ { "id": 4569, "notes": "Agree to Help Lief", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -518570,11 +516216,11 @@ { "id": 4570, "notes": "Get coloring book", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518582,7 +516228,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -518603,11 +516249,11 @@ { "id": 4581, "notes": "Postmaster hands you the strange letter", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518615,7 +516261,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -518637,15 +516283,13 @@ "id": 4572, "notes": "Lief rewards you", "title": "Talucia's Little Gift", - "requires_questid_npc": [ - 860 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 12500, "items_gained": [], "quest_points": 50, @@ -518656,7 +516300,9 @@ "success_npc_chat": " Thank you so much. Looks like she loves the coloring book. Here, take this money as my thank you.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 860 + ], "hide_reply_on_fail": false, "difficulty": "Novice", "author": "Desertmorn", @@ -518666,11 +516312,11 @@ { "id": 4573, "notes": "Talucia gives you a bunch of daisies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -518699,14 +516345,14 @@ { "id": 4574, "notes": "Nizhoni sends you back to Caren Hart", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -518714,7 +516360,7 @@ "warp_x": 223, "warp_y": 169, "success_message": "You find yourself back at Caren Hart's Vet Clinic.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -518727,11 +516373,11 @@ { "id": 4576, "notes": "You show the wooden disks to Nizhoni", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518764,11 +516410,11 @@ { "id": 4577, "notes": "Give Phyllis Colt one disc", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518780,7 +516426,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -518801,11 +516447,11 @@ { "id": 4578, "notes": "Give Calista Colt two discs", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518821,7 +516467,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -518842,11 +516488,11 @@ { "id": 4579, "notes": "Give Terrence the final Disc", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -518879,11 +516525,11 @@ { "id": 4580, "notes": "Nizhoni checks to see if you are adventurous enough", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "Alas, I feel you do not have enough experience to pursue this. Come back when you have traveled more widely.", @@ -518893,7 +516539,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " It appears that one such as yourself is indeed fit to pursue this adventure.", "requires_awardid": 3, "requires_questid_completed": [], @@ -518907,22 +516553,22 @@ { "id": 4582, "notes": "Tracking Michaela", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -518935,11 +516581,11 @@ { "id": 4583, "notes": " Tracking - Karta reads the letter.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have that.", @@ -518949,7 +516595,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " These are basically directions to creating a treasure map of sorts!", "requires_awardid": null, "requires_questid_completed": [], @@ -518963,22 +516609,22 @@ { "id": 4584, "notes": "tracking - after Karta reads the letter.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -518991,22 +516637,22 @@ { "id": 4585, "notes": "Used in place of 1550 so other 1550's do not show/see (when there are multiple pending quests)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -519019,7 +516665,7 @@ { "id": 4586, "notes": "Find old jewelry box", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -519027,7 +516673,7 @@ "y": 251 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -519035,7 +516681,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -519056,7 +516702,7 @@ { "id": 4587, "notes": "Decipher Rock #1 Dog Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519064,7 +516710,7 @@ "y": 302 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519090,7 +516736,7 @@ { "id": 4588, "notes": "Decipher Rock #2 Dog Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519098,7 +516744,7 @@ "y": 320 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519124,7 +516770,7 @@ { "id": 4589, "notes": "Decipher Rock #3 Dog Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519132,7 +516778,7 @@ "y": 329 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519158,7 +516804,7 @@ { "id": 4590, "notes": "Decipher Rock #4 Dog Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519166,7 +516812,7 @@ "y": 337 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519192,7 +516838,7 @@ { "id": 4591, "notes": "Decipher Rock #5 Dog Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519200,7 +516846,7 @@ "y": 336 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519226,7 +516872,7 @@ { "id": 4592, "notes": "Decipher Rock #6 Dog Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519234,7 +516880,7 @@ "y": 302 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519267,7 +516913,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -519298,22 +516944,22 @@ { "id": 4594, "notes": "Track Postmaster", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -519326,7 +516972,7 @@ { "id": 4595, "notes": "Decipher Rock #7 Torrid Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519334,7 +516980,7 @@ "y": 458 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519360,7 +517006,7 @@ { "id": 4596, "notes": "Decipher Rock #8 Torrid Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519368,7 +517014,7 @@ "y": 433 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519394,7 +517040,7 @@ { "id": 4597, "notes": "Decipher Rock #9 web Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519402,7 +517048,7 @@ "y": 84 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519428,7 +517074,7 @@ { "id": 4598, "notes": "Decipher Rock #10 web Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519436,7 +517082,7 @@ "y": 95 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519462,7 +517108,7 @@ { "id": 4599, "notes": "Decipher Rock #11 Starfish Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519470,7 +517116,7 @@ "y": 390 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519496,7 +517142,7 @@ { "id": 4600, "notes": "Decipher Rock #12 Starfish Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519504,7 +517150,7 @@ "y": 344 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519530,7 +517176,7 @@ { "id": 4601, "notes": "Decipher Rock #13 Vine Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519538,7 +517184,7 @@ "y": 235 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519564,7 +517210,7 @@ { "id": 4602, "notes": "Decipher Rock #14 Vine Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519572,7 +517218,7 @@ "y": 237 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519598,7 +517244,7 @@ { "id": 4603, "notes": "Decipher Rock #15 Vine Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -519606,7 +517252,7 @@ "y": 216 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -519632,14 +517278,14 @@ { "id": 4604, "notes": "Agree to help Scar-Nose Pete", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -519647,7 +517293,7 @@ "warp_x": null, "warp_y": null, "success_message": "You agreed to help Scar-Nose Pete.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -519660,22 +517306,22 @@ { "id": 4605, "notes": "Track convo with Horacio", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -519688,22 +517334,22 @@ { "id": 4606, "notes": "Track pirate/smores", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -519716,17 +517362,15 @@ { "id": 4607, "notes": "Rake the flotsam #1 Dog Isle", - "title": "", - "requires_questid_npc": [ - 4593 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 82, "y": 327 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -519746,6 +517390,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 4593, 4663 ], "hide_reply_on_fail": false, @@ -519757,17 +517402,15 @@ { "id": 4608, "notes": "Rake the flotsam #2 Dog Isle", - "title": "", - "requires_questid_npc": [ - 4593 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": { "type": "RAKE", "x": 66, "y": 329 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -519787,6 +517430,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 4593, 4663 ], "hide_reply_on_fail": false, @@ -519798,7 +517442,7 @@ { "id": 4609, "notes": "Rake the flotsam #3 Dog Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -519806,7 +517450,7 @@ "y": 326 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -519837,7 +517481,7 @@ { "id": 4610, "notes": "Rake the flotsam #4 Hare Isle right ear/upper right side", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -519845,7 +517489,7 @@ "y": 229 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -519876,7 +517520,7 @@ { "id": 4616, "notes": "Rake the flotsam #10 Cat Isle/right base of left ear", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -519884,7 +517528,7 @@ "y": 164 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -519915,7 +517559,7 @@ { "id": 4611, "notes": "Rake the flotsam #5 Hare Isle/top left on head", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -519923,7 +517567,7 @@ "y": 173 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -519954,7 +517598,7 @@ { "id": 4612, "notes": "Rake the flotsam #6 Hare Isle/top right on head", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -519962,7 +517606,7 @@ "y": 177 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -519993,7 +517637,7 @@ { "id": 4613, "notes": "Rake the flotsam #7 Cat Isle/Left cheek opposite dock", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -520001,7 +517645,7 @@ "y": 188 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520032,7 +517676,7 @@ { "id": 4614, "notes": "Rake the flotsam #8 Cat Isle/ south of dock", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -520040,7 +517684,7 @@ "y": 174 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520071,7 +517715,7 @@ { "id": 4615, "notes": "Rake the flotsam #9 Cat Isle/top of head", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -520079,7 +517723,7 @@ "y": 159 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520110,7 +517754,7 @@ { "id": 4617, "notes": "Rake the flotsam #11 Cat Isle/N of sand castle left ear", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -520118,7 +517762,7 @@ "y": 162 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520149,7 +517793,7 @@ { "id": 4618, "notes": "Rake the flotsam #12 Cat Isle/tip of left ear", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -520157,7 +517801,7 @@ "y": 161 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520188,7 +517832,7 @@ { "id": 4619, "notes": "Rake the flotsam #13 Dolphin Isle/Left side opposite dock", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -520196,7 +517840,7 @@ "y": 252 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520227,7 +517871,7 @@ { "id": 4620, "notes": "Rake the flotsam #14 Dolphin Isle/bottom of 3 below dock", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -520235,7 +517879,7 @@ "y": 267 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520266,7 +517910,7 @@ { "id": 4621, "notes": "Rake the flotsam #15 Dolphin Isle/middle of 3 below dock", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -520274,7 +517918,7 @@ "y": 266 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520305,7 +517949,7 @@ { "id": 4622, "notes": "Rake the flotsam #16 Dolphin Isle/top of 3 below dock", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -520313,7 +517957,7 @@ "y": 265 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520344,7 +517988,7 @@ { "id": 4623, "notes": "Rake the flotsam #17 Dolphin Isle/bottom of 2, general store", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -520352,7 +517996,7 @@ "y": 245 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520383,7 +518027,7 @@ { "id": 4624, "notes": "Rake the flotsam #18 Dolphin Isle/top of 2, general store", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -520391,7 +518035,7 @@ "y": 244 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520422,7 +518066,7 @@ { "id": 4625, "notes": "Rake the flotsam #19 Dolphin Isle/right side north of mud hole", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -520430,7 +518074,7 @@ "y": 236 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520461,11 +518105,11 @@ { "id": 4626, "notes": "Scar-Nose Pete checks to see if you have all the necessary tiles.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520498,7 +518142,7 @@ { "id": 4628, "notes": "Dig Sandcastle #2 Hoof - yellow", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -520506,7 +518150,7 @@ "y": 353 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520537,7 +518181,7 @@ { "id": 4627, "notes": "Dig Sandcastle #1 Earton - yellow", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -520545,7 +518189,7 @@ "y": 181 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520580,7 +518224,7 @@ { "id": 4629, "notes": "Dig Sandcastle #3 Bird - yellow", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -520588,7 +518232,7 @@ "y": 163 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520619,7 +518263,7 @@ { "id": 4630, "notes": "Dig Sandcastle #4 Dolphin - turquoise", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -520627,7 +518271,7 @@ "y": 299 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520658,7 +518302,7 @@ { "id": 4631, "notes": "Dig Sandcastle #5 Art - turquoise", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -520666,7 +518310,7 @@ "y": 94 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520697,7 +518341,7 @@ { "id": 4632, "notes": "Dig Sandcastle #6 Snow - turquoise", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -520705,7 +518349,7 @@ "y": 65 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520736,7 +518380,7 @@ { "id": 4633, "notes": "Dig Sandcastle #7 Turtle - purple", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -520744,7 +518388,7 @@ "y": 311 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520775,7 +518419,7 @@ { "id": 4634, "notes": "Dig Sandcastle #8 Cat - Left ear - purple", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -520783,7 +518427,7 @@ "y": 165 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520814,7 +518458,7 @@ { "id": 4635, "notes": "Dig Sandcastle #9 Hare - right ear - purple", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -520822,7 +518466,7 @@ "y": 209 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520853,7 +518497,7 @@ { "id": 4636, "notes": "Dig Sandcastle #10 Flower - top notch - blue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -520861,7 +518505,7 @@ "y": 299 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520892,7 +518536,7 @@ { "id": 4637, "notes": "Dig Sandcastle #11 SE of Santon - blue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -520900,7 +518544,7 @@ "y": 464 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520931,7 +518575,7 @@ { "id": 4638, "notes": "Dig Sandcastle #12 Desert - se of Sandy Meadows - blue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -520939,7 +518583,7 @@ "y": 474 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -520970,7 +518614,7 @@ { "id": 4639, "notes": "Dig Sandcastle #13 smallest Sand isle - fuchsia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -520978,7 +518622,7 @@ "y": 409 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521009,7 +518653,7 @@ { "id": 4640, "notes": "Dig Sandcastle #14 2nd sand isle - fuchsia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521017,7 +518661,7 @@ "y": 422 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521048,7 +518692,7 @@ { "id": 4641, "notes": "Dig Sandcastle #15 Last sand isle - fuchsia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521056,7 +518700,7 @@ "y": 473 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521087,7 +518731,7 @@ { "id": 4642, "notes": "Dig Sandcastle #16 Dust - green", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521095,7 +518739,7 @@ "y": 430 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521126,7 +518770,7 @@ { "id": 4643, "notes": "Dig Sandcastle #17 Snowball - green", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521134,7 +518778,7 @@ "y": 70 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521165,7 +518809,7 @@ { "id": 4644, "notes": "Dig Sandcastle #18 Ice top of isle - green", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521173,7 +518817,7 @@ "y": 36 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521204,7 +518848,7 @@ { "id": 4645, "notes": "Dig Sandcastle #19 Crossbones east end - red", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521212,7 +518856,7 @@ "y": 99 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521243,7 +518887,7 @@ { "id": 4646, "notes": "Dig Sandcastle #20 Torrid - north end - red", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521251,7 +518895,7 @@ "y": 430 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521282,7 +518926,7 @@ { "id": 4647, "notes": "Dig Sandcastle #21 Polar - south of Olivia's - red", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521290,7 +518934,7 @@ "y": 45 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521321,14 +518965,14 @@ { "id": 4648, "notes": "ask The Red Dragon for permission", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -521349,7 +518993,7 @@ { "id": 4649, "notes": "Retrieve treasure from beneath Red Dragon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521357,7 +519001,7 @@ "y": 344 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521392,14 +519036,14 @@ { "id": 4650, "notes": "ask Green Dragon for permission", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -521420,7 +519064,7 @@ { "id": 4651, "notes": "Retrieve treasure from beneath Green Dragon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521428,7 +519072,7 @@ "y": 379 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521463,14 +519107,14 @@ { "id": 4652, "notes": "ask The Magenta Dragon for permission", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -521478,7 +519122,7 @@ "warp_x": null, "warp_y": null, "success_message": "The Magenta Dragon moves aside to allow you to dig.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -521491,11 +519135,11 @@ { "id": 4662, "notes": "Give Barbossa a smore", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521526,7 +519170,7 @@ { "id": 4653, "notes": "Retrieve treasure from beneath Magenta Dragon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521534,7 +519178,7 @@ "y": 394 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521569,14 +519213,14 @@ { "id": 4654, "notes": "ask permission from the Blue Dragon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -521584,7 +519228,7 @@ "warp_x": null, "warp_y": null, "success_message": "The Blue Dragon moves aside to allow you to dig.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -521597,22 +519241,22 @@ { "id": 4656, "notes": "ask permission from the Purple Dragon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -521625,7 +519269,7 @@ { "id": 4657, "notes": "Retrieve treasure from beneath Purple Dragon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521633,7 +519277,7 @@ "y": 351 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521668,7 +519312,7 @@ { "id": 4655, "notes": "Retrieve treasure from beneath Blue Dragon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521676,7 +519320,7 @@ "y": 349 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521711,21 +519355,21 @@ { "id": 4658, "notes": "ask permission from the Yellow Dragon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "(The Yellow Dragon moves gracefully aside and watches with great interest as you get ready to dig.)", "requires_awardid": null, "requires_questid_completed": [], @@ -521739,7 +519383,7 @@ { "id": 4659, "notes": "Retrieve treasure from beneath Yellow Dragon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521747,7 +519391,7 @@ "y": 412 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521782,21 +519426,21 @@ { "id": 4660, "notes": "ask permission from the Cyan Dragon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " (The dragon steps aside.)", "requires_awardid": null, "requires_questid_completed": [], @@ -521810,7 +519454,7 @@ { "id": 4661, "notes": "Retrieve treasure from beneath Cyan Dragon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -521818,7 +519462,7 @@ "y": 363 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521853,11 +519497,11 @@ { "id": 4663, "notes": "Give Barbossa a 2nd smore", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521888,11 +519532,11 @@ { "id": 4664, "notes": "Give Barbossa another smore", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -521923,11 +519567,11 @@ { "id": 4665, "notes": "You give Scar-Nose Pete the ornate chests.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521956,11 +519600,11 @@ { "id": 4666, "notes": "Tracking Scar-Nose Pete", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have that.", @@ -521970,8 +519614,8 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -521985,12 +519629,10 @@ "id": 4667, "notes": "Scar-Nose Pete Rewards you", "title": "Scar-Nose Pete’s TGPBTP Quest", - "requires_questid_npc": [ - 1681 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -521998,7 +519640,7 @@ "quantity": 50 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 250, @@ -522009,7 +519651,9 @@ "success_npc_chat": " I bought me a boat. So me and Barbossa are hitting the seas. Fair sailing and strong winds, Matey!", "requires_awardid": 2, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1681 + ], "hide_reply_on_fail": false, "difficulty": "Master", "author": "Desertmorn", @@ -522019,22 +519663,22 @@ { "id": 4668, "notes": "You've begun raking tiles", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -522047,22 +519691,22 @@ { "id": 4669, "notes": "You've begun digging up keys", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -522075,14 +519719,14 @@ { "id": 4670, "notes": "Agree to help Baba Yaga", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -522103,7 +519747,7 @@ { "id": 4671, "notes": "Dig for potatoes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -522111,7 +519755,7 @@ "y": 152 }, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [ { @@ -522142,7 +519786,7 @@ { "id": 4672, "notes": "Rake for beets", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -522150,7 +519794,7 @@ "y": 152 }, "tracked": true, - "repeats": 4, + "max_repeats": 4, "money_cost": 0, "items_required": [ { @@ -522181,14 +519825,14 @@ { "id": 4673, "notes": "Track Zachava", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -522196,7 +519840,7 @@ "warp_x": null, "warp_y": null, "success_message": "Zachava told you where to get the different vegetables.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -522209,11 +519853,11 @@ { "id": 4674, "notes": "Get cabbage & onion from William at the Inn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -522221,7 +519865,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -522242,11 +519886,11 @@ { "id": 4675, "notes": "Give Bag of Produce to Baba Yaga", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -522275,11 +519919,11 @@ { "id": 4676, "notes": "Give Beets and Potatoes to Baba Yaga", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -522312,11 +519956,11 @@ { "id": 4677, "notes": "Give carrots to Baba Yaga", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -522345,11 +519989,11 @@ { "id": 4678, "notes": "Get sour cream from Cinnamon", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 100, "items_required": [ { @@ -522378,11 +520022,11 @@ { "id": 4679, "notes": "Give sour cream to Baba Yaga", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -522415,7 +520059,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -522454,22 +520098,22 @@ { "id": 4681, "notes": "You've begun getting the ingredients for Baba Yaga", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -522482,14 +520126,14 @@ { "id": 4682, "notes": "Agree to help Crazy Eddie.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -522510,7 +520154,7 @@ { "id": 4683, "notes": "Catch a baby octopus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -522518,7 +520162,7 @@ "y": 231 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -522549,7 +520193,7 @@ { "id": 4684, "notes": "Catch a baby octopus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -522557,7 +520201,7 @@ "y": 228 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -522588,7 +520232,7 @@ { "id": 4686, "notes": "Catch a baby octopus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -522596,7 +520240,7 @@ "y": 227 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -522627,7 +520271,7 @@ { "id": 4685, "notes": "Catch a baby octopus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -522635,7 +520279,7 @@ "y": 229 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -522666,7 +520310,7 @@ { "id": 4687, "notes": "Catch a baby octopus.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -522674,7 +520318,7 @@ "y": 225 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -522706,12 +520350,10 @@ "id": 4688, "notes": "Give Eddie the octopuses ", "title": "Crazy Eddie's Octopus Rescue", - "requires_questid_npc": [ - 715 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -522735,6 +520377,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 715, 4682 ], "hide_reply_on_fail": false, @@ -522746,22 +520389,22 @@ { "id": 4689, "notes": "Start catching the baby octopuses", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -522774,22 +520417,22 @@ { "id": 4690, "notes": "Start deciphering the big boulders", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -522802,22 +520445,22 @@ { "id": 4733, "notes": "Tracking Humpty: discussing the wishing on a unicorn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -522830,22 +520473,22 @@ { "id": 4699, "notes": "Tracking Nikara", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -522858,22 +520501,22 @@ { "id": 4691, "notes": "Tracking Humpty - re: junket", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -522886,22 +520529,22 @@ { "id": 4692, "notes": "Tracking Humpty - re: sings", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -522914,22 +520557,22 @@ { "id": 4693, "notes": "Tracking Mortimer - re: wishing on a unicorn Big Clue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -522942,22 +520585,22 @@ { "id": 4694, "notes": "Tracking Patience on Bird - re: not me - talk to Grant", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -522970,22 +520613,22 @@ { "id": 4695, "notes": "Tracking Cinnamon - re: clue about nightcrawlers Big Clue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -522998,22 +520641,22 @@ { "id": 4696, "notes": "Tracking Grant - re: clue about groundskeeper", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523026,22 +520669,22 @@ { "id": 4697, "notes": "Tracking Kirby - re: clue about spiders", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523054,22 +520697,22 @@ { "id": 4698, "notes": "Tracking Patience - re: doesn't know Humpty", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523082,22 +520725,22 @@ { "id": 4700, "notes": "Tracking Little Miss Moufet", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523110,11 +520753,11 @@ { "id": 4701, "notes": "Agree to help Barbette Dingee", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -523122,7 +520765,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -523143,22 +520786,22 @@ { "id": 4702, "notes": "Tracking Humpty: discussing night crawlers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523171,22 +520814,22 @@ { "id": 4703, "notes": "Tracking Humpty: discussing the junket", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523199,22 +520842,22 @@ { "id": 4704, "notes": "Tracking Humpty: discussing kingdom's ridicule", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523227,22 +520870,22 @@ { "id": 4705, "notes": "Tracking Humpty: discussing not living around spiders", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523255,22 +520898,22 @@ { "id": 4706, "notes": "Tracking Humpty: His true love has an uncle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523284,12 +520927,10 @@ "id": 4707, "notes": "Humpty rewards you", "title": "Humpty's Lost Love", - "requires_questid_npc": [ - 2160 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -523297,7 +520938,7 @@ "quantity": 50 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 70000, "items_gained": [], "quest_points": 200, @@ -523308,7 +520949,9 @@ "success_npc_chat": " I hope this money will satisfy your costs. And for all your time, please take these Silver Linings. And if by chance you happen to speak with Patience again, please give her my deepest apologies.", "requires_awardid": 3, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2160 + ], "hide_reply_on_fail": false, "difficulty": "Advanced", "author": "Desertmorn", @@ -523318,11 +520961,11 @@ { "id": 4708, "notes": "Give Hank the package.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -523356,12 +520999,10 @@ "id": 4709, "notes": "Jungle Temple #17", "title": "Jungle Temple #17", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -523386,12 +521027,10 @@ "id": 4710, "notes": "Jungle Temple #18", "title": "Jungle Temple #18", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -523416,12 +521055,10 @@ "id": 4711, "notes": "Jungle Temple #19", "title": "Jungle Temple #19", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -523446,12 +521083,10 @@ "id": 4712, "notes": "Jungle Temple #20", "title": "Jungle Temple #20", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this Jungle Temple!", @@ -523479,7 +521114,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -523508,14 +521143,14 @@ { "id": 4714, "notes": "Agree to help Vega/corn husks", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -523523,7 +521158,7 @@ "warp_x": null, "warp_y": null, "success_message": "You agreed to get Vega 6 Dozen Corn Husks.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523536,14 +521171,14 @@ { "id": 4715, "notes": "Agree to put together the shopping list", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -523551,7 +521186,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've agreed to put together a shopping list. Time to start asking the residents if they need anything.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523564,14 +521199,14 @@ { "id": 4716, "notes": "Agree to get 2 dozen oyster shells for Isaac", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -523579,7 +521214,7 @@ "warp_x": null, "warp_y": null, "success_message": "You agreed to get 2 dozen Oyster Shells for Isaac.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523592,14 +521227,14 @@ { "id": 4717, "notes": "Agree to get oil of orange for Twyla", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -523607,7 +521242,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've agreed to get oil of orange for Twyla.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523620,14 +521255,14 @@ { "id": 4718, "notes": "Agree to get book on clouds and popcorn for Ociel", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -523635,7 +521270,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've agreed to get a book of clouds for Ociel and 2 bags of popcorn, for his wife.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523648,14 +521283,14 @@ { "id": 4719, "notes": "Agree to get 3 chickens for Jocosa", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -523676,11 +521311,11 @@ { "id": 4720, "notes": "Bettina checks to see if you have a complete shopping list", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -523714,11 +521349,11 @@ { "id": 4721, "notes": "Get a crate of 3 Minorca chickens for Jocosa from Kay Macaw", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 1200, "items_required": [ { @@ -523734,7 +521369,7 @@ "warp_x": null, "warp_y": null, "success_message": "Kay Macaw gave you a Crate of Minorca Fowl for Jocosa.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -523747,11 +521382,11 @@ { "id": 4722, "notes": "Get corn husks from Ben Burlap", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -523759,7 +521394,7 @@ "quantity": 6 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -523780,11 +521415,11 @@ { "id": 4723, "notes": "Give Vega corn husks", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -523813,11 +521448,11 @@ { "id": 4724, "notes": "Give 2 dozen oyster shells", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -523846,11 +521481,11 @@ { "id": 4725, "notes": "Get oil of orange from Charla Mae", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 500, "items_required": [ { @@ -523879,11 +521514,11 @@ { "id": 4726, "notes": "Give oil of orange", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -523912,11 +521547,11 @@ { "id": 4727, "notes": "Get book about clouds from Beatrice Bibliophile", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -523924,7 +521559,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -523945,11 +521580,11 @@ { "id": 4728, "notes": "Give book of clouds & popcorn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -523982,11 +521617,11 @@ { "id": 4729, "notes": "reuse", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You don't have that.", @@ -523996,8 +521631,8 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -524010,11 +521645,11 @@ { "id": 4730, "notes": "Give chickens", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -524043,22 +521678,22 @@ { "id": 4731, "notes": "Start the community list", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -524075,7 +521710,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -524110,7 +521745,7 @@ { "id": 4749, "notes": "Rake for oyster shells", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -524118,7 +521753,7 @@ "y": 338 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -524134,7 +521769,7 @@ "warp_x": null, "warp_y": null, "success_message": "You raked up an Oyster Shell!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -524149,14 +521784,14 @@ { "id": 4801, "notes": "You offer to help Ocean Born Mary [The Lioness of Brittany Treasure]", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -524177,14 +521812,14 @@ { "id": 4734, "notes": "Agree to get Humpty's mom a pet", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -524192,7 +521827,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've agreed to get a pet for Humpty's mom.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -524205,22 +521840,22 @@ { "id": 4735, "notes": "Track Cromwell's input on what pet not to get", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -524234,12 +521869,10 @@ "id": 4736, "notes": "Give Humpty his mom's pet ", "title": "Humpty's Small Favor", - "requires_questid_npc": [ - 1027 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -524258,7 +521891,9 @@ "success_npc_chat": "Ohhhh! A Rubber Ducky! She's fun. She's happy. She's perfect for Mumsy! Capitol job, Chap! Here's some chump change for my gratitude.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 1027 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "DesertMorn", @@ -524268,7 +521903,7 @@ { "id": 4737, "notes": "Rake for oyster shells", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -524276,7 +521911,7 @@ "y": 333 }, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [ { @@ -524292,7 +521927,7 @@ "warp_x": null, "warp_y": null, "success_message": "You raked up an Oyster Shell!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -524307,7 +521942,7 @@ { "id": 4738, "notes": "Rake for oyster shells", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -524315,7 +521950,7 @@ "y": 334 }, "tracked": true, - "repeats": 4, + "max_repeats": 4, "money_cost": 0, "items_required": [ { @@ -524331,7 +521966,7 @@ "warp_x": null, "warp_y": null, "success_message": "You raked up an Oyster Shell!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -524346,7 +521981,7 @@ { "id": 4739, "notes": "Rake for oyster shells", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -524354,7 +521989,7 @@ "y": 334 }, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -524370,7 +522005,7 @@ "warp_x": null, "warp_y": null, "success_message": "You raked up an Oyster Shell!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -524385,7 +522020,7 @@ { "id": 4740, "notes": "Rake for oyster shells", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -524393,7 +522028,7 @@ "y": 334 }, "tracked": true, - "repeats": 5, + "max_repeats": 5, "money_cost": 0, "items_required": [ { @@ -524409,7 +522044,7 @@ "warp_x": null, "warp_y": null, "success_message": "You raked up an Oyster Shell!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -524424,7 +522059,7 @@ { "id": 4741, "notes": "Rake for oyster shells", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -524432,7 +522067,7 @@ "y": 335 }, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [ { @@ -524448,7 +522083,7 @@ "warp_x": null, "warp_y": null, "success_message": "You raked up an Oyster Shell!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -524463,7 +522098,7 @@ { "id": 4742, "notes": "Rake for oyster shells", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -524471,7 +522106,7 @@ "y": 336 }, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [ { @@ -524487,7 +522122,7 @@ "warp_x": null, "warp_y": null, "success_message": "You raked up an Oyster Shell!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -524502,7 +522137,7 @@ { "id": 4743, "notes": "Rake for oyster shells", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -524510,7 +522145,7 @@ "y": 337 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -524526,7 +522161,7 @@ "warp_x": null, "warp_y": null, "success_message": "You raked up an Oyster Shell!", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -524541,22 +522176,22 @@ { "id": 4744, "notes": "Tracking Rocco", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -524569,7 +522204,7 @@ { "id": 4745, "notes": "Map directions on curious boulder", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -524577,10 +522212,10 @@ "y": 288 }, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -524588,7 +522223,7 @@ "warp_x": null, "warp_y": null, "success_message": "Compass to Clouds & fold in 1/2 again 2x. Open to start again
Pirate’s Hat to Compass, fold in 1/2 again once more. Against a light
map’s backside to you, Clouds on bottom right. Epicenter is #zero
number vertex from center out.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -524601,22 +522236,22 @@ { "id": 4746, "notes": "Start gathering request items on the list", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -524629,14 +522264,14 @@ { "id": 4747, "notes": "Agree to pay $1200 for the chickens", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -524644,7 +522279,7 @@ "warp_x": null, "warp_y": null, "success_message": "You ordered the chickens and agreed to pay $1200 when you pick them up.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -524657,22 +522292,22 @@ { "id": 4748, "notes": "reuse", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -524685,22 +522320,22 @@ { "id": 4750, "notes": "A Map/Graph Quest (-2, 1) Agree to help Charlotte", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -524713,14 +522348,14 @@ { "id": 4804, "notes": "Anastacia sends you to her neighbors", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -524741,11 +522376,11 @@ { "id": 4751, "notes": "Ride the Turtle to Dursley with seaweed message", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -524753,7 +522388,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -524774,11 +522409,11 @@ { "id": 4752, "notes": "Give seaweed to Dursley", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -524794,7 +522429,7 @@ "warp_x": null, "warp_y": null, "success_message": "You gave Dursley the Bit of Dried Seaweed. It has a message on it that you can't read.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -524807,14 +522442,14 @@ { "id": 4753, "notes": "More Turtle rides to Dursley", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -524835,11 +522470,11 @@ { "id": 4754, "notes": "Agree to help Dursley", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -524847,7 +522482,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -524868,14 +522503,14 @@ { "id": 4756, "notes": "More Turtle rides to Ebenezer", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -524896,11 +522531,11 @@ { "id": 4755, "notes": "Turtle ride to Ebenezer with seaweed message", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -524929,11 +522564,11 @@ { "id": 4757, "notes": "Give seaweed to Ebenezer", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -524949,7 +522584,7 @@ "warp_x": null, "warp_y": null, "success_message": "You gave Ebenezer the Bit of Dried Seaweed. It has a message on it that you can't read.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -524962,14 +522597,14 @@ { "id": 4758, "notes": "You agree to get a Great Pyrenees for Charlotte.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -524990,13 +522625,11 @@ { "id": 4759, "notes": "Give Charlotte the Great Pyrenees", - "title": "", - "requires_questid_npc": [ - 4593 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525019,7 +522652,9 @@ "success_npc_chat": " He's beautiful! Thank you so much. Here, please take these. I find them on the beach once in awhile. It is all I have that might be of value to you.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4593 + ], "hide_reply_on_fail": true, "difficulty": "Intermediate", "author": "DesertMorn", @@ -525029,22 +522664,22 @@ { "id": 4760, "notes": "Track Ebenezer", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -525058,16 +522693,14 @@ "id": 4761, "notes": "You Get Your Reward! ", "title": "MGQ - A Crab's Request", - "requires_questid_npc": [ - 4581 - ], + "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", "x": 503, "y": 126 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525087,6 +522720,7 @@ "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ + 4581, 4760 ], "hide_reply_on_fail": false, @@ -525098,7 +522732,7 @@ { "id": 4762, "notes": "A Map/GraphQuest (-3, 0) Starts at center Igneous Isle - needs previous adventure action id req", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -525106,7 +522740,7 @@ "y": 245 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525141,22 +522775,22 @@ { "id": 4763, "notes": "Track chat w/Cupid ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -525169,22 +522803,22 @@ { "id": 4764, "notes": "Track chat w/Oddly ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -525197,14 +522831,14 @@ { "id": 4765, "notes": "Oddly sends you to the unnamed lava island", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -525225,22 +522859,22 @@ { "id": 4781, "notes": "Track chat w/Belwyn", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -525253,7 +522887,7 @@ { "id": 4766, "notes": "Dig to return to Magma Isle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -525261,7 +522895,7 @@ "y": 196 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -525272,7 +522906,7 @@ "warp_x": 945, "warp_y": 211, "success_message": "You whoosh through the air and find yourself on Magma Isle.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -525287,11 +522921,11 @@ { "id": 4767, "notes": "Give Belwyn the chest.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525307,7 +522941,7 @@ "warp_x": null, "warp_y": null, "success_message": "You hand Belwyn the Small Strange Chest.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -525320,22 +522954,22 @@ { "id": 4768, "notes": "Track chat w/Oddly after long, long story.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -525348,14 +522982,14 @@ { "id": 4769, "notes": "Agree to help Belwyn with ingredients", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -525363,7 +522997,7 @@ "warp_x": null, "warp_y": null, "success_message": "You agreed to help Belwyn.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -525376,11 +523010,11 @@ { "id": 4770, "notes": "Give Belwyn the pink flamingo and the garden gnome", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525413,11 +523047,11 @@ { "id": 4771, "notes": "Give Belwen a pixie dust", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525446,11 +523080,11 @@ { "id": 4772, "notes": "Give Belwyn obsidian chunks", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525479,11 +523113,11 @@ { "id": 4773, "notes": "Give Belwyn Bunch of Flies", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525512,11 +523146,11 @@ { "id": 4774, "notes": "Give Belwyn 7 marshmallows", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525545,11 +523179,11 @@ { "id": 4775, "notes": "Give Belwyn 3 bananas", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525578,11 +523212,11 @@ { "id": 4776, "notes": "Give Belwyn 1 Owl", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525611,11 +523245,11 @@ { "id": 4777, "notes": "Belwyn checks to see that you have given him everything.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": " No, you haven't given me everything yet. ", @@ -525625,7 +523259,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " (Belwyn sets the chest on the ground, brings his sleeves together and mumbles. The chest whirls and twirls until it finally comes to rest at Belwyn's feet. A huge puff of smoke curls out of his sleeves, smelling like toasted marshmallows.)", "requires_awardid": null, "requires_questid_completed": [ @@ -525647,11 +523281,11 @@ { "id": 4778, "notes": "Agree to deliver the package to the sea hag.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525659,7 +523293,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -525680,11 +523314,11 @@ { "id": 4779, "notes": "Deliver package to Hyrokkin ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525699,7 +523333,7 @@ "goto_npc_chatpoint": 26, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "(Hyrokkin takes the package. It melts into a swirl of sparkling gray smoke that covers her and then dissipates. She lowers her head.) He sent the gift of penitence. I've got much to make amends for. Please, leave me now.", "requires_awardid": null, "requires_questid_completed": [], @@ -525713,14 +523347,14 @@ { "id": 4780, "notes": "Cupid sends you to Magma - only available if Cupid's Valentine's has been delivered.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -525741,14 +523375,14 @@ { "id": 4782, "notes": "Agree to help Ira", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -525769,11 +523403,11 @@ { "id": 4783, "notes": "Get Utensil set from Sasha", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525781,7 +523415,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -525789,7 +523423,7 @@ "warp_x": null, "warp_y": null, "success_message": "Sasha gave you a Crock of Utensils decorated with an overabundance of ribbons.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -525802,11 +523436,11 @@ { "id": 4784, "notes": "Give Utensil set to Jeremy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525839,10 +523473,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 50, @@ -525873,10 +523507,10 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 25000, "items_gained": [], "quest_points": 100, @@ -525897,22 +523531,22 @@ { "id": 4786, "notes": "Track Map Graph Quests 1 & 2 for postmaster NOT req. on CP0", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [ 4761, @@ -525928,11 +523562,11 @@ { "id": 4787, "notes": "Pony Express Agree to Delivery #61", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525961,11 +523595,11 @@ { "id": 4788, "notes": "Pony Express Completed Delivery #61 DeHatchz/Hoof", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -525973,7 +523607,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 0, @@ -525994,11 +523628,11 @@ { "id": 4789, "notes": "Pony Express Agree to Delivery #62", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526027,11 +523661,11 @@ { "id": 4790, "notes": "Pony Express Completed Delivery #62 Lavender/Shellton", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526039,7 +523673,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 7500, "items_gained": [], "quest_points": 0, @@ -526060,11 +523694,11 @@ { "id": 4791, "notes": "Pony Express Agree to Delivery #63", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526093,11 +523727,11 @@ { "id": 4793, "notes": "Pony Express Agree to Delivery #64", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526126,11 +523760,11 @@ { "id": 4792, "notes": "Pony Express Completed Delivery #63 Victor/Dog", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526159,11 +523793,11 @@ { "id": 4794, "notes": "Pony Express Completed Delivery #64 Peony/Flower", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526171,7 +523805,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 5000, "items_gained": [], "quest_points": 0, @@ -526192,11 +523826,11 @@ { "id": 4795, "notes": "Pony Express Agree to Delivery #65", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526225,11 +523859,11 @@ { "id": 4796, "notes": "Pony Express Completed Delivery #65 Dixie/Hotton ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526258,22 +523892,22 @@ { "id": 4797, "notes": "Track chat w/Oddly", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -526286,22 +523920,22 @@ { "id": 4798, "notes": "Track chat w/Oddly", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -526314,22 +523948,22 @@ { "id": 4799, "notes": "Track chat w/Postmaster after you find jewelry box", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -526342,11 +523976,11 @@ { "id": 4802, "notes": "Mary sends you on your way", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -526354,7 +523988,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -526377,21 +524011,21 @@ { "id": 4803, "notes": "Cate sends you to Silvertoot Sam", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "It be said that the treasure was passed from Mother to Daughter fer generations, til it were hidden away and an encrypted map were drawn up. Silvertooth Sam should be able to take you further along this journey. ", "requires_awardid": null, "requires_questid_completed": [], @@ -526405,11 +524039,11 @@ { "id": 4805, "notes": "Svetlana gives you a package", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526417,7 +524051,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -526438,11 +524072,11 @@ { "id": 4806, "notes": "Olena gives you her mail", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526450,7 +524084,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -526471,11 +524105,11 @@ { "id": 4807, "notes": "Lesia gives you a Pysanky in a case", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526483,7 +524117,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -526504,11 +524138,11 @@ { "id": 4808, "notes": "Anastacia gets Svetlana's package.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526537,11 +524171,11 @@ { "id": 4809, "notes": "Anastacia gets Olena's mail", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526570,11 +524204,11 @@ { "id": 4810, "notes": "Anastacia gets Lesia's Pysanky egg.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526607,7 +524241,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526643,14 +524277,14 @@ { "id": 4812, "notes": "Hanska offers plush dinosaurs now", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -526671,11 +524305,11 @@ { "id": 4813, "notes": "Hanska sells you a triceratops", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 250, "items_required": [ { @@ -526704,11 +524338,11 @@ { "id": 4814, "notes": "Welcome Willy will give you $100 so you can get off Welcome Isle if needed, but only 10 times.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 10, + "max_repeats": 10, "money_cost": 0, "items_required": [], "fail_npc_chat": "Now, I've had to help you out ten separate times. At this point, if you don't have the money, you may have to figure something else out. Sorry.", @@ -526732,11 +524366,11 @@ { "id": 4815, "notes": "Leslia will give you $300 for 2 pearls in case you are broke and can't get off Glacier Isle.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [ { @@ -526765,11 +524399,11 @@ { "id": 4816, "notes": "Action needed to check 61st PO deliveries -label for re-use when 61-65 go live", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [ { @@ -526798,16 +524432,14 @@ { "id": 4817, "notes": "Agree to help Smelly Toes", - "title": "", - "requires_questid_npc": [ - 2757 - ], + "title": null, + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -526818,7 +524450,9 @@ "success_npc_chat": " I'd be much appreciative. ", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 2757 + ], "hide_reply_on_fail": false, "difficulty": null, "author": null, @@ -526828,11 +524462,11 @@ { "id": 4818, "notes": "Get a crate of chickens for Smelly Toes from Kay Macaw", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 2500, "items_required": [ { @@ -526866,12 +524500,10 @@ "id": 4819, "notes": "Give Smelly Toes his chickens ", "title": "Smelly Toes' Woes", - "requires_questid_npc": [ - 4732 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526902,7 +524534,9 @@ "success_npc_chat": "Well now. They be much too cute to be eatin'. Guess I got me my first ever pets! Here be some booty and a bag o' worthless glitter. I were hoping they be doubloons but it weren't no such luck.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4732 + ], "hide_reply_on_fail": true, "difficulty": "Novice", "author": "Desertmorn", @@ -526912,11 +524546,11 @@ { "id": 4820, "notes": "Needed to check Smelly Toes' Woes - label for re-use when quest goes live", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -526928,7 +524562,7 @@ "quantity": 6 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -526949,22 +524583,22 @@ { "id": 4821, "notes": "track convo with Smelly Toes re: chickens", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -526977,22 +524611,22 @@ { "id": 4822, "notes": "track convo with Kay re: chickens", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -527005,14 +524639,14 @@ { "id": 4823, "notes": "Agree to help Cerise", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -527033,22 +524667,22 @@ { "id": 4824, "notes": "Meet Festus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -527061,7 +524695,7 @@ { "id": 4826, "notes": "Dig up the source of the swamp stench", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -527069,7 +524703,7 @@ "y": 159 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": " You dig all over, but turn up nothing.", @@ -527096,14 +524730,14 @@ { "id": 4825, "notes": "Agree to help Festus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -527124,22 +524758,22 @@ { "id": 4831, "notes": "Track Cerise", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -527152,22 +524786,22 @@ { "id": 4827, "notes": "Track convo with Cerise", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -527180,11 +524814,11 @@ { "id": 4828, "notes": "Get bag of charcoal powder", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -527192,7 +524826,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -527213,7 +524847,7 @@ { "id": 4829, "notes": "Neutralize the swamp stench with the charcoal dust", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -527221,7 +524855,7 @@ "y": 163 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -527229,7 +524863,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -527254,12 +524888,10 @@ "id": 4830, "notes": "Cerise rewards you. ", "title": "Cerise & The Swamp Stench", - "requires_questid_npc": [ - 4811 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -527267,7 +524899,7 @@ "quantity": 35 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 2000, "items_gained": [], "quest_points": 50, @@ -527278,7 +524910,9 @@ "success_npc_chat": " Thank you so much! Nana is going to be thrilled. Here, take this money and these giant coconuts as a reward. We got a double shipment and there is no room to store them.", "requires_awardid": null, "requires_questid_completed": [], - "requires_questid_not_completed": [], + "requires_questid_not_completed": [ + 4811 + ], "hide_reply_on_fail": false, "difficulty": "Intermediate", "author": "Desertmorn", @@ -527288,22 +524922,22 @@ { "id": 4832, "notes": "Track Festus", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -527316,7 +524950,7 @@ { "id": 4833, "notes": "Track movement of purple stinky blob", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -527324,17 +524958,17 @@ "y": 160 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "You see a tiny bit of purple slime. It must have moved through here!", "requires_awardid": null, "requires_questid_completed": [], @@ -527351,7 +524985,7 @@ { "id": 4834, "notes": "Track movement of purple stinky blob", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -527359,7 +524993,7 @@ "y": 161 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -527369,7 +525003,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Aha! You spy more tiny bits of purple slime. It must have moved through here!", "requires_awardid": null, "requires_questid_completed": [], @@ -527386,7 +525020,7 @@ { "id": 4835, "notes": "Track movement of purple stinky blob", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -527394,7 +525028,7 @@ "y": 162 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -527404,7 +525038,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "YES! More bits of purple slime. It came this way for sure!", "requires_awardid": null, "requires_questid_completed": [], @@ -527421,7 +525055,7 @@ { "id": 4836, "notes": "Track movement of purple stinky blob", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "MAGNIFY", @@ -527429,7 +525063,7 @@ "y": 163 }, "tracked": true, - "repeats": 999, + "max_repeats": 999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -527439,7 +525073,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": "Ha! Even more stinky bits of purple slime. You hope you are getting close. ", "requires_awardid": null, "requires_questid_completed": [], @@ -527456,11 +525090,11 @@ { "id": 4837, "notes": "Agree to help Festus by visiting the witch", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You know. This wasn't a good idea. Just go. I'll figure this out myself.", @@ -527486,14 +525120,14 @@ { "id": 4838, "notes": "Agree to accept the Elphiblah's challenge.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -527514,11 +525148,11 @@ { "id": 4839, "notes": "Get skein of spider's silk", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -527555,11 +525189,11 @@ { "id": 4840, "notes": "Get a tuft of Grendel's pelt", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -527567,7 +525201,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -527588,7 +525222,7 @@ { "id": 4841, "notes": "Get a piece of Gryphon eggshell 7 times", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -527596,7 +525230,7 @@ "y": 394 }, "tracked": true, - "repeats": 7, + "max_repeats": 7, "money_cost": 0, "items_required": [ { @@ -527627,7 +525261,7 @@ { "id": 4842, "notes": "Fail to get a Gryphon's egg", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -527635,7 +525269,7 @@ "y": 414 }, "tracked": false, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -527662,7 +525296,7 @@ { "id": 4843, "notes": "Fail to get a Gryphon's egg", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -527670,7 +525304,7 @@ "y": 270 }, "tracked": false, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -527697,7 +525331,7 @@ { "id": 4844, "notes": "Fail to get a Gryphon's egg", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -527705,7 +525339,7 @@ "y": 263 }, "tracked": false, - "repeats": 3, + "max_repeats": 3, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -527732,11 +525366,11 @@ { "id": 4845, "notes": "Give eggshell sherds to Lesia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -527765,11 +525399,11 @@ { "id": 4846, "notes": "Get repaired Gryphon Egg", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -527777,7 +525411,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -527798,11 +525432,11 @@ { "id": 4847, "notes": "Give Skein", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -527831,11 +525465,11 @@ { "id": 4848, "notes": "Give Tuft of Fur", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -527864,11 +525498,11 @@ { "id": 4849, "notes": "Give Gryphon's Egg", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -527897,11 +525531,11 @@ { "id": 4850, "notes": "Elphiblah checks to see if you have everything for the 3 Dares", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 99, + "max_repeats": 99, "money_cost": 0, "items_required": [], "fail_npc_chat": "You haven't brought me everything!", @@ -527911,7 +525545,7 @@ "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", + "success_message": null, "success_npc_chat": " Color me surprised! A mere mortal succeeded in The Three Dares challenge. ", "requires_awardid": null, "requires_questid_completed": [ @@ -527929,11 +525563,11 @@ { "id": 4851, "notes": "Receive Curse Reversal Potion", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -527941,7 +525575,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -527962,11 +525596,11 @@ { "id": 4852, "notes": "Give Festus the Curse Reversal Potion", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -528004,7 +525638,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -528012,7 +525646,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 200, @@ -528033,14 +525667,14 @@ { "id": 4854, "notes": "Track Elvira", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528061,14 +525695,14 @@ { "id": 4855, "notes": "Start of 3 Sleepy Kittens ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528089,22 +525723,22 @@ { "id": 4856, "notes": "Track Peter the Pumpkin Eater ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -528117,22 +525751,22 @@ { "id": 4857, "notes": "Track Mother Goose", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -528145,14 +525779,14 @@ { "id": 4858, "notes": "Start of MGQ Frank’s Mysterious Catch", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528173,14 +525807,14 @@ { "id": 4859, "notes": "You offer to help Contrary Larry", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528201,7 +525835,7 @@ { "id": 4860, "notes": "Dig for Larry's Garden", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -528209,17 +525843,17 @@ "y": 415 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": 168, "warp_y": 412, - "success_message": "", + "success_message": null, "success_npc_chat": "You are whooshed down through the cloud and find yourself here, on another cloud!", "requires_awardid": null, "requires_questid_completed": [], @@ -528235,14 +525869,14 @@ { "id": 4861, "notes": "Agree to get Blaze 2 Apple Treats", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528263,11 +525897,11 @@ { "id": 4862, "notes": "Give Blaze 2 apple treats", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [ { @@ -528304,22 +525938,22 @@ { "id": 4863, "notes": "track Blaze re: garden info ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -528332,7 +525966,7 @@ { "id": 4864, "notes": "Dig to leave", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -528340,10 +525974,10 @@ "y": 414 }, "tracked": false, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528364,22 +525998,22 @@ { "id": 4865, "notes": "Track Mr. Poppers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -528392,22 +526026,22 @@ { "id": 4866, "notes": "Track Curlicue re: Being bullied", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -528420,22 +526054,22 @@ { "id": 4867, "notes": "Track Blaze after talking to Curlicue", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -528448,22 +526082,22 @@ { "id": 4868, "notes": "Track Curlicue re: misunderstanding.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -528476,11 +526110,11 @@ { "id": 4869, "notes": "Contrary Larry rewards you. ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -528492,7 +526126,7 @@ "quantity": 25 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528520,7 +526154,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -528528,7 +526162,7 @@ "quantity": 12 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 10000, "items_gained": [], "quest_points": 150, @@ -528549,22 +526183,22 @@ { "id": 4871, "notes": "Track Mother Goose", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -528577,22 +526211,22 @@ { "id": 4872, "notes": "Track Peter re: Contrary Larry", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -528605,11 +526239,11 @@ { "id": 4873, "notes": "Track Hedda re: Frank Tackle", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "Hmm... Well, if I hear something, I'll be sure to let you know. It's important that you are quite the adventurer. Only the most adventurous can hear some of my stories.", @@ -528635,11 +526269,11 @@ { "id": 4874, "notes": "You agree to backtrack the strange man's journey. 10 Bananas Stinking", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -528647,7 +526281,7 @@ "quantity": 10 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528668,11 +526302,11 @@ { "id": 4875, "notes": "Track Fergus - 9 ferrets leaping", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -528680,7 +526314,7 @@ "quantity": 9 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528701,11 +526335,11 @@ { "id": 4876, "notes": "Track Felton - 5 Dino bones", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -528713,7 +526347,7 @@ "quantity": 5 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528734,11 +526368,11 @@ { "id": 4877, "notes": "Track Mona - 7 Chickens clucking", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -528746,7 +526380,7 @@ "quantity": 7 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528767,11 +526401,11 @@ { "id": 4878, "notes": "Track Kay - 2 Persian cats", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -528779,7 +526413,7 @@ "quantity": 2 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528800,11 +526434,11 @@ { "id": 4879, "notes": "Track Catronia - 8 bunnies munching", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -528812,7 +526446,7 @@ "quantity": 8 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528833,11 +526467,11 @@ { "id": 4880, "notes": "Track Murron - 6 Birds a humming", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -528845,7 +526479,7 @@ "quantity": 6 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528866,22 +526500,22 @@ { "id": 4881, "notes": "Track Atl - no gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -528894,11 +526528,11 @@ { "id": 4882, "notes": "Track Vern - 11 geckos blinking", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -528906,7 +526540,7 @@ "quantity": 11 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -528927,22 +526561,22 @@ { "id": 4883, "notes": "Track Nana - no gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -528955,22 +526589,22 @@ { "id": 4884, "notes": "Track Hazel - no gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -528983,22 +526617,22 @@ { "id": 4885, "notes": "Track Felicity -no gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529011,11 +526645,11 @@ { "id": 4886, "notes": "Track Griffin - 4 rats a running", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -529023,7 +526657,7 @@ "quantity": 4 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -529044,22 +526678,22 @@ { "id": 4887, "notes": "Track Demetrius - no gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529072,22 +526706,22 @@ { "id": 4888, "notes": "Track Maj. Manesale - no gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529100,22 +526734,22 @@ { "id": 4889, "notes": "Track Tighe - no gifts", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529128,11 +526762,11 @@ { "id": 4890, "notes": "Track Vee - 1 pie a la mode", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -529140,7 +526774,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -529161,11 +526795,11 @@ { "id": 4891, "notes": "You agree to help with the monkey", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -529173,7 +526807,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -529194,11 +526828,11 @@ { "id": 4892, "notes": "Offer monkey a banana", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -529227,22 +526861,22 @@ { "id": 4894, "notes": "track Frannie re: Crazy Eddie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529255,11 +526889,11 @@ { "id": 4895, "notes": "give Crazy Eddie a strawberry", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [ { @@ -529288,11 +526922,11 @@ { "id": 4898, "notes": "Track Josten - 3 telescopes", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -529300,7 +526934,7 @@ "quantity": 3 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -529321,22 +526955,22 @@ { "id": 4893, "notes": "Arrive back at Frannie's with monkey", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529349,11 +526983,11 @@ { "id": 4896, "notes": "track Crazy Eddie - 12 starfish waving", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -529361,7 +526995,7 @@ "quantity": 12 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -529382,22 +527016,22 @@ { "id": 4897, "notes": "Track Hudson - no gift", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529414,10 +527048,10 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 22000, "items_gained": [], "quest_points": 300, @@ -529438,14 +527072,14 @@ { "id": 4906, "notes": "You agree to check out the hooting.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -529453,7 +527087,7 @@ "warp_x": null, "warp_y": null, "success_message": "You agreed to check out the hooting.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529466,22 +527100,22 @@ { "id": 4900, "notes": "Tracking little cloud residents for Larry", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529494,22 +527128,22 @@ { "id": 4901, "notes": "Tracking Ricochet", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529522,22 +527156,22 @@ { "id": 4902, "notes": "Tracking Theodosia", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529550,22 +527184,22 @@ { "id": 4903, "notes": "Tracking Quakers", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529578,22 +527212,22 @@ { "id": 4904, "notes": "Tracking Chip", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529606,22 +527240,22 @@ { "id": 4905, "notes": "Tracking Curlique", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529634,22 +527268,22 @@ { "id": 4907, "notes": "Track Gneville", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529662,11 +527296,11 @@ { "id": 4908, "notes": "Gneville buys a garden gnome", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -529695,11 +527329,11 @@ { "id": 4909, "notes": "Gneville buys a flamingo", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -529728,22 +527362,22 @@ { "id": 4910, "notes": "Track Gneville", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529760,7 +527394,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -529768,7 +527402,7 @@ "quantity": 22 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 25, @@ -529789,22 +527423,22 @@ { "id": 4912, "notes": "Start finding odd keys", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -529817,7 +527451,7 @@ { "id": 4913, "notes": "Decipher Rock #1 Cabin Isle ", - "title": "", + "title": null, "requires_questid_npc": [ 3496, 4593 @@ -529828,7 +527462,7 @@ "y": 276 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -529855,7 +527489,7 @@ { "id": 4914, "notes": "Decipher Rock #2 Cabin Isle ", - "title": "", + "title": null, "requires_questid_npc": [ 3496, 4593 @@ -529866,7 +527500,7 @@ "y": 316 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -529893,7 +527527,7 @@ { "id": 4915, "notes": "Decipher Rock #3 Cabin Isle ", - "title": "", + "title": null, "requires_questid_npc": [ 3496, 4593 @@ -529904,7 +527538,7 @@ "y": 251 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -529931,7 +527565,7 @@ { "id": 4916, "notes": "Decipher Rock #4 Cabin Isle . ", - "title": "", + "title": null, "requires_questid_npc": [ 3496, 4593 @@ -529942,7 +527576,7 @@ "y": 249 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You look all over at all the tiny details, but alas, nothing interesting.", @@ -529969,7 +527603,7 @@ { "id": 4917, "notes": "Dig Flower Isle Violet Mushroom bottom Dew Forest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -529977,7 +527611,7 @@ "y": 332 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530008,7 +527642,7 @@ { "id": 4918, "notes": "Dig Bunny Cabin Dead Conifer", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -530016,7 +527650,7 @@ "y": 240 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530047,7 +527681,7 @@ { "id": 4919, "notes": "Dig Between Scoria Gryphons", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -530055,7 +527689,7 @@ "y": 266 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530086,7 +527720,7 @@ { "id": 4920, "notes": "Dig Cat Isle Boulder Near Construction Guy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -530094,7 +527728,7 @@ "y": 179 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530125,11 +527759,11 @@ { "id": 4921, "notes": "Give Mdm. Babushka the copper key)", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530158,11 +527792,11 @@ { "id": 4922, "notes": "Give Mdm. Babushka the gold key", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530191,11 +527825,11 @@ { "id": 4923, "notes": "Give Mdm. Babushka the platinum key", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530224,11 +527858,11 @@ { "id": 4924, "notes": "Give Mdm. Babushka the silver key", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530257,11 +527891,11 @@ { "id": 4925, "notes": "Mdm Babushka counts the keys.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You haven't given me all the keys. Don't tell me you have, until you have actually done so! Begone with you now. ", @@ -530290,22 +527924,22 @@ { "id": 4926, "notes": "tracking giving Mdm Babuska Keys", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -530318,14 +527952,14 @@ { "id": 4927, "notes": "You accept your destiny!", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -530346,11 +527980,11 @@ { "id": 4928, "notes": "Orville gives you another key", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530358,7 +527992,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -530379,7 +528013,7 @@ { "id": 4929, "notes": "Dig at the Southern Lights", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -530387,7 +528021,7 @@ "y": 491 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530429,7 +528063,7 @@ ], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530462,11 +528096,11 @@ { "id": 4931, "notes": "Agree to get Curtis' bow fixed.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530474,7 +528108,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -530495,11 +528129,11 @@ { "id": 4932, "notes": "Give fiddle bow to Donna to fix", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530507,7 +528141,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -530528,11 +528162,11 @@ { "id": 4933, "notes": "Get repaired fiddle bow", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530540,7 +528174,7 @@ "quantity": 1 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -530565,7 +528199,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530577,7 +528211,7 @@ "quantity": 17 } ], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 50, @@ -530598,11 +528232,11 @@ { "id": 4935, "notes": "You agree to take Diana's Musical Challenge.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 1000, "items_required": [], "fail_npc_chat": "Well darn. You don't have the $1000. You are welcome to come back and take the Challenge if you come up with the money.", @@ -530627,12 +528261,10 @@ "id": 4936, "notes": "You win Diana's Musical Challenge", "title": "Diana's Musical Challenge", - "requires_questid_npc": [ - 0 - ], + "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], "fail_npc_chat": "You must have already completed this! ", @@ -530656,22 +528288,22 @@ { "id": 4959, "notes": "reuse", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -530684,14 +528316,14 @@ { "id": 4937, "notes": "You agree to find socks for Mandy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -530712,7 +528344,7 @@ { "id": 4938, "notes": "Dig to find a sock -yellow banana", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -530720,7 +528352,7 @@ "y": 360 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530751,7 +528383,7 @@ { "id": 4939, "notes": "Dig to find a sock - dead toad", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -530759,7 +528391,7 @@ "y": 356 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -530785,7 +528417,7 @@ { "id": 4940, "notes": "Dig to find a sock- red teepee ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -530793,7 +528425,7 @@ "y": 367 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530824,7 +528456,7 @@ { "id": 4941, "notes": "Dig to find a sock - Garden Gnome", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -530832,7 +528464,7 @@ "y": 359 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530863,7 +528495,7 @@ { "id": 4942, "notes": "Dig to find a sock- orange triangle ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -530871,7 +528503,7 @@ "y": 354 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -530902,7 +528534,7 @@ { "id": 4943, "notes": "Dig to find a sock -shoe sole", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -530910,7 +528542,7 @@ "y": 359 }, "tracked": false, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -530936,7 +528568,7 @@ { "id": 4944, "notes": "Dig to find a sock - chewed up bone", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -530944,7 +528576,7 @@ "y": 357 }, "tracked": false, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -530970,7 +528602,7 @@ { "id": 4945, "notes": "Dig to find a sock - purple star ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -530978,7 +528610,7 @@ "y": 366 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531009,7 +528641,7 @@ { "id": 4946, "notes": "Dig to find a sock - rubber ducky", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -531017,7 +528649,7 @@ "y": 364 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531048,7 +528680,7 @@ { "id": 4947, "notes": "Dig to find a sock - pink bunny ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -531056,7 +528688,7 @@ "y": 367 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531087,7 +528719,7 @@ { "id": 4948, "notes": "Dig to find a sock - homework", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -531095,7 +528727,7 @@ "y": 367 }, "tracked": false, - "repeats": 32767, + "max_repeats": 32767, "money_cost": 0, "items_required": [], "fail_npc_chat": "You dig all over, but turn up nothing.", @@ -531121,7 +528753,7 @@ { "id": 4949, "notes": "Dig to find a sock - green shamrock ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -531129,7 +528761,7 @@ "y": 364 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531158,7 +528790,7 @@ { "id": 4950, "notes": "Dig to find a sock - pet rock", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -531166,7 +528798,7 @@ "y": 363 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531197,7 +528829,7 @@ { "id": 4951, "notes": "Dig to find a sock - blue heart ", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "SHOVEL", @@ -531205,7 +528837,7 @@ "y": 366 }, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531236,22 +528868,22 @@ { "id": 4952, "notes": "Tracking socks", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [ @@ -531266,11 +528898,11 @@ { "id": 4968, "notes": "Give Caribella one Silver Ore/Hummingbird", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531303,14 +528935,14 @@ { "id": 4953, "notes": "Track 1st set of options, Caribella's Game.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -531318,7 +528950,7 @@ "warp_x": null, "warp_y": null, "success_message": "Yo", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -531335,7 +528967,7 @@ "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531368,7 +529000,7 @@ { "id": 4955, "notes": "Rake & Discover Caribella", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -531376,17 +529008,17 @@ "y": 364 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": 374, "warp_y": 362, - "success_message": "", + "success_message": null, "success_npc_chat": "You find yourself whooshed through a purple sparkling haze and land with a light thump!", "requires_awardid": null, "requires_questid_completed": [], @@ -531400,7 +529032,7 @@ { "id": 4956, "notes": "Dig to get of Caribella's Enclosure", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -531408,17 +529040,17 @@ "y": 362 }, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": 374, "warp_y": 364, - "success_message": "", + "success_message": null, "success_npc_chat": "You find yourself whooshed through a purple sparkling haze and land with a light thump!", "requires_awardid": null, "requires_questid_completed": [], @@ -531432,14 +529064,14 @@ { "id": 4957, "notes": "Agree to play Caribella's game", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -531447,7 +529079,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've agreed to play Caribella's game.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -531460,22 +529092,22 @@ { "id": 4958, "notes": "reuse for 3 sleepy kittens quest", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -531488,22 +529120,22 @@ { "id": 4960, "notes": "Track chat w/Astrape aka Angie", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -531516,14 +529148,14 @@ { "id": 4961, "notes": "You agree to negotiate for the girls", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -531544,7 +529176,7 @@ { "id": 4962, "notes": "Rake below tree to get to root cellar", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": { "type": "RAKE", @@ -531552,7 +529184,7 @@ "y": 191 }, "tracked": true, - "repeats": 9999, + "max_repeats": 9999, "money_cost": 0, "items_required": [], "fail_npc_chat": "You rake all over, but uncover nothing interesting.", @@ -531576,22 +529208,22 @@ { "id": 4963, "notes": "Track chat w/Bronte", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 2, + "max_repeats": 2, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, "goto_npc_chatpoint": -1, "warp_x": null, "warp_y": null, - "success_message": "", - "success_npc_chat": "", + "success_message": null, + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -531604,14 +529236,14 @@ { "id": 4964, "notes": "Agree to bring Inigo 50 pieces of copper.", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [], - "fail_npc_chat": "", + "fail_npc_chat": null, "money_gained": 0, "items_gained": [], "quest_points": 0, @@ -531619,7 +529251,7 @@ "warp_x": null, "warp_y": null, "success_message": "You've agreed to bring Inigo 50 pieces of copper.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -531632,11 +529264,11 @@ { "id": 4965, "notes": "Give Inigo 50 pieces of copper", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": false, - "repeats": 0, + "max_repeats": 0, "money_cost": 0, "items_required": [ { @@ -531652,7 +529284,7 @@ "warp_x": null, "warp_y": null, "success_message": "You give Inigo 50 pieces of copper ore.", - "success_npc_chat": "", + "success_npc_chat": null, "requires_awardid": null, "requires_questid_completed": [], "requires_questid_not_completed": [], @@ -531665,11 +529297,11 @@ { "id": 4966, "notes": "Give Caribella one Bunch of Flies/Feather", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531702,11 +529334,11 @@ { "id": 4967, "notes": "Give Caribella one Coconut/Ruby", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531739,11 +529371,11 @@ { "id": 4969, "notes": "Give Caribella one Honeycomb/Diamond Necklace", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531776,11 +529408,11 @@ { "id": 4970, "notes": "Give Caribella the feather back/sparkling feather", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531813,11 +529445,11 @@ { "id": 4971, "notes": "Give Caribella the Ruby back/Ruby Necklace", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531850,11 +529482,11 @@ { "id": 4972, "notes": "Give Caribella the Hummingbird back./Aussy", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531887,11 +529519,11 @@ { "id": 4973, "notes": "Give Caribella the Diamond Necklace back./Polar Bear Cub", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531924,11 +529556,11 @@ { "id": 4974, "notes": "Give Caribella one Rubber Ducky/Kiwi", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531961,11 +529593,11 @@ { "id": 4975, "notes": "Give Caribella one Obsidian Chunk/Ferret", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -531998,11 +529630,11 @@ { "id": 4976, "notes": "Give Caribella a Red Pinecone/Potoo", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 0, "items_required": [ { @@ -532035,11 +529667,11 @@ { "id": 4977, "notes": "Give Caribella $3000/Piglet", - "title": "", + "title": null, "requires_questid_npc": [], "alt_activation": null, "tracked": true, - "repeats": 1, + "max_repeats": 1, "money_cost": 3000, "items_required": [ { @@ -532066,4 +529698,4 @@ "minigame": false } ] -} \ No newline at end of file + } \ No newline at end of file diff --git a/Horse Isle Server/Horse Isle Server/Action.cs b/Horse Isle Server/Horse Isle Server/Action.cs deleted file mode 100644 index 71ae36e..0000000 --- a/Horse Isle Server/Horse Isle Server/Action.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Horse_Isle_Server -{ - class Action - { - public enum ActivationMethod - { - MANUAL, - SHOVEL, - BINOCULARS, - MAGNIFYING_GLASS, - RAKE - } - public struct AltActivation - { - public ActivationMethod Method; - public int ActivationX; - public int ActivationY; - } - - public struct Requirements - { - public bool Track; - public int MaxCompletions; - public int MoneyRequired; - public int[] CompletedRequired; - public int[] NotCompletedRequired; - public int RequiredAward; - - } - public struct GameAction - { - public int Id; - public string Notes; - public string AdventurousTitle; - public string Difficulty; - public string Author; - public int[] ActionIdRequired; - - AltActivation Activation; - - } - - - } -} diff --git a/Horse Isle Server/Horse Isle Server/Chat.cs b/Horse Isle Server/Horse Isle Server/Game/Chat.cs similarity index 86% rename from Horse Isle Server/Horse Isle Server/Chat.cs rename to Horse Isle Server/Horse Isle Server/Game/Chat.cs index dbd5a80..ce796b5 100644 --- a/Horse Isle Server/Horse Isle Server/Chat.cs +++ b/Horse Isle Server/Horse Isle Server/Game/Chat.cs @@ -1,8 +1,10 @@ using System; using System.Collections.Generic; using System.Linq; +using HISP.Player; +using HISP.Server; -namespace Horse_Isle_Server +namespace HISP.Game { class Chat { @@ -136,12 +138,12 @@ namespace Horse_Isle_Server } } - public static Client[] GetRecipiants(User user, ChatChannel channel, string to=null) + public static GameClient[] GetRecipiants(User user, ChatChannel channel, string to=null) { if (channel == ChatChannel.All) { - List recipiants = new List(); - foreach (Client client in Server.ConnectedClients) + List recipiants = new List(); + foreach (GameClient client in GameServer.ConnectedClients) { if (client.LoggedIn) if (!client.LoggedinUser.MuteGlobal) @@ -153,8 +155,8 @@ namespace Horse_Isle_Server if(channel == ChatChannel.Ads) { - List recipiants = new List(); - foreach (Client client in Server.ConnectedClients) + List recipiants = new List(); + foreach (GameClient client in GameServer.ConnectedClients) { if (client.LoggedIn) if (!client.LoggedinUser.MuteAds) @@ -166,8 +168,8 @@ namespace Horse_Isle_Server if(channel == ChatChannel.Buddies) { - List recipiants = new List(); - foreach (Client client in Server.ConnectedClients) + List recipiants = new List(); + foreach (GameClient client in GameServer.ConnectedClients) { if (client.LoggedIn) if (!client.LoggedinUser.MuteBuddy) @@ -180,10 +182,10 @@ namespace Horse_Isle_Server if (channel == ChatChannel.Isle) { - List recipiants = new List(); + List recipiants = new List(); if(World.InIsle(user.X,user.Y)) { - User[] usersInSile = Server.GetUsersUsersInIsle(World.GetIsle(user.X, user.Y), true, false); + User[] usersInSile = GameServer.GetUsersUsersInIsle(World.GetIsle(user.X, user.Y), true, false); foreach (User userInIsle in usersInSile) { if (user.Id != userInIsle.Id) @@ -193,15 +195,15 @@ namespace Horse_Isle_Server } else { - return new Client[0]; + return new GameClient[0]; } } if (channel == ChatChannel.Here) { - List recipiants = new List(); - User[] usersHere = Server.GetUsersAt(user.X, user.Y, true, false); + List recipiants = new List(); + User[] usersHere = GameServer.GetUsersAt(user.X, user.Y, true, false); foreach (User userHere in usersHere) { if (user.Id != userHere.Id) @@ -212,8 +214,8 @@ namespace Horse_Isle_Server if (channel == ChatChannel.Near) { - List recipiants = new List(); - User[] nearbyUsers = Server.GetNearbyUsers(user.X, user.Y, true, false); + List recipiants = new List(); + User[] nearbyUsers = GameServer.GetNearbyUsers(user.X, user.Y, true, false); foreach (User nearbyUser in nearbyUsers) { if (user.Id != nearbyUser.Id) @@ -227,11 +229,11 @@ namespace Horse_Isle_Server if (!user.Moderator || !user.Administrator) // No mod chat for non-mods! { Logger.WarnPrint(user.Username + " attempted to send in MOD chat, without being a MOD."); - return new Client[0]; + return new GameClient[0]; } - List recipiants = new List(); - foreach (Client client in Server.ConnectedClients) + List recipiants = new List(); + foreach (GameClient client in GameServer.ConnectedClients) { if (client.LoggedIn) if (client.LoggedinUser.Moderator) @@ -246,12 +248,12 @@ namespace Horse_Isle_Server if (!user.Administrator) // No admin chat for non-admins! { Logger.WarnPrint(user.Username + " attempted to send in ADMIN chat, without being an ADMIN."); - return new Client[0]; + return new GameClient[0]; } - List recipiants = new List(); - foreach (Client client in Server.ConnectedClients) + List recipiants = new List(); + foreach (GameClient client in GameServer.ConnectedClients) { if (client.LoggedIn) if (client.LoggedinUser.Administrator) @@ -265,8 +267,8 @@ namespace Horse_Isle_Server { if (to != null) { - List recipiants = new List(); - foreach (Client client in Server.ConnectedClients) + List recipiants = new List(); + foreach (GameClient client in GameServer.ConnectedClients) { if (client.LoggedIn) if (!client.LoggedinUser.MutePrivateMessage) @@ -278,13 +280,13 @@ namespace Horse_Isle_Server else { Logger.ErrorPrint("Channel is " + channel + " (DM) BUT no 'to' Paramater was specfied"); - return new Client[0]; + return new GameClient[0]; } } Logger.ErrorPrint(user.Username + " Sent message in unknown channel: " + (byte)channel); - return new Client[0]; // No recipiants + return new GameClient[0]; // No recipiants } public static string DoCorrections(string message) @@ -364,19 +366,19 @@ namespace Horse_Isle_Server case ChatChannel.Isle: int inIsle = 0; if (World.InIsle(user.X, user.Y)) - inIsle = Server.GetUsersUsersInIsle(World.GetIsle(user.X, user.Y), false, false).Length -1; + inIsle = GameServer.GetUsersUsersInIsle(World.GetIsle(user.X, user.Y), false, false).Length -1; return Messages.FormatIsleChatMessageForSender(inIsle, user.Username, message); case ChatChannel.Here: - int usersHere = Server.GetUsersAt(user.X, user.Y, false, false).Length -1; + int usersHere = GameServer.GetUsersAt(user.X, user.Y, false, false).Length -1; return Messages.FormatHereChatMessageForSender(usersHere, user.Username, message); case ChatChannel.Near: - int nearbyUsers = Server.GetNearbyUsers(user.X, user.Y, false, false).Length -1; + int nearbyUsers = GameServer.GetNearbyUsers(user.X, user.Y, false, false).Length -1; return Messages.FormatNearChatMessageForSender(nearbyUsers, user.Username, message); case ChatChannel.Mod: - int modsOnline = Server.GetNumberOfModsOnline() - 1; + int modsOnline = GameServer.GetNumberOfModsOnline() - 1; return Messages.FormatModChatForSender(modsOnline, user.Username, message); case ChatChannel.Admin: - int adminsOnline = Server.GetNumberOfAdminsOnline() - 1; + int adminsOnline = GameServer.GetNumberOfAdminsOnline() - 1; return Messages.FormatAdminChatForSender(adminsOnline, user.Username, message); case ChatChannel.Dm: return Messages.FormatDirectChatMessageForSender(user.Username, dmRecipiant, message); diff --git a/Horse Isle Server/Horse Isle Server/DroppedItems.cs b/Horse Isle Server/Horse Isle Server/Game/DroppedItems.cs similarity index 92% rename from Horse Isle Server/Horse Isle Server/DroppedItems.cs rename to Horse Isle Server/Horse Isle Server/Game/DroppedItems.cs index 8763ba7..e0bebe5 100644 --- a/Horse Isle Server/Horse Isle Server/DroppedItems.cs +++ b/Horse Isle Server/Horse Isle Server/Game/DroppedItems.cs @@ -1,10 +1,8 @@ using System; using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using HISP.Server; -namespace Horse_Isle_Server +namespace HISP.Game { class DroppedItems { @@ -98,7 +96,7 @@ namespace Horse_Isle_Server { if(new_epoch + item.DespawnTimer < old_epoch) { - if(Server.GetUsersAt(item.X, item.Y,true,true).Length == 0) + if(GameServer.GetUsersAt(item.X, item.Y,true,true).Length == 0) { RemoveDroppedItem(item); removedCount++; @@ -129,7 +127,7 @@ namespace Horse_Isle_Server count++; - int despawnTimer = Server.RandomNumberGenerator.Next(900, 1500); + int despawnTimer = GameServer.RandomNumberGenerator.Next(900, 1500); if (item.SpawnParamaters.SpawnInArea != null) { @@ -149,12 +147,12 @@ namespace Horse_Isle_Server while (true) { // Pick a random isle: - int isleId = Server.RandomNumberGenerator.Next(0, World.Isles.Count); + int isleId = GameServer.RandomNumberGenerator.Next(0, World.Isles.Count); World.Isle isle = World.Isles[isleId]; // Pick a random location inside the isle - int tryX = Server.RandomNumberGenerator.Next(isle.StartX, isle.EndX); - int tryY = Server.RandomNumberGenerator.Next(isle.StartY, isle.EndY); + int tryX = GameServer.RandomNumberGenerator.Next(isle.StartX, isle.EndX); + int tryY = GameServer.RandomNumberGenerator.Next(isle.StartY, isle.EndY); if (World.InTown(tryX, tryY) || World.InSpecialTile(tryX, tryY)) diff --git a/Horse Isle Server/Horse Isle Server/IInventory.cs b/Horse Isle Server/Horse Isle Server/Game/IInventory.cs similarity index 87% rename from Horse Isle Server/Horse Isle Server/IInventory.cs rename to Horse Isle Server/Horse Isle Server/Game/IInventory.cs index 04f6d58..df4b633 100644 --- a/Horse Isle Server/Horse Isle Server/IInventory.cs +++ b/Horse Isle Server/Horse Isle Server/Game/IInventory.cs @@ -1,10 +1,8 @@ using System; using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -namespace Horse_Isle_Server + +namespace HISP.Game { class InventoryItem { diff --git a/Horse Isle Server/Horse Isle Server/Item.cs b/Horse Isle Server/Horse Isle Server/Game/Item.cs similarity index 98% rename from Horse Isle Server/Horse Isle Server/Item.cs rename to Horse Isle Server/Horse Isle Server/Game/Item.cs index 9274ffd..9b14476 100644 --- a/Horse Isle Server/Horse Isle Server/Item.cs +++ b/Horse Isle Server/Horse Isle Server/Game/Item.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace Horse_Isle_Server +namespace HISP.Game { class Item { diff --git a/Horse Isle Server/Horse Isle Server/ItemInstance.cs b/Horse Isle Server/Horse Isle Server/Game/ItemInstance.cs similarity index 72% rename from Horse Isle Server/Horse Isle Server/ItemInstance.cs rename to Horse Isle Server/Horse Isle Server/Game/ItemInstance.cs index 198f670..19fa4f3 100644 --- a/Horse Isle Server/Horse Isle Server/ItemInstance.cs +++ b/Horse Isle Server/Horse Isle Server/Game/ItemInstance.cs @@ -1,10 +1,5 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Horse_Isle_Server +using HISP.Security; +namespace HISP.Game { class ItemInstance { diff --git a/Horse Isle Server/Horse Isle Server/Map.cs b/Horse Isle Server/Horse Isle Server/Game/Map.cs similarity index 91% rename from Horse Isle Server/Horse Isle Server/Map.cs rename to Horse Isle Server/Horse Isle Server/Game/Map.cs index a4eb3b0..4064466 100644 --- a/Horse Isle Server/Horse Isle Server/Map.cs +++ b/Horse Isle Server/Horse Isle Server/Game/Map.cs @@ -1,114 +1,110 @@ -using System; -using System.Collections.Generic; -using System.Drawing; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Horse_Isle_Server -{ - class Map - { - public struct TerrainTile - { - public bool Passable; - public string Type; - } - - public static int[] OverlayTileDepth; - - public static int Width; - public static int Height; - - public static byte[] MapData; - public static byte[] oMapData; - - public static TerrainTile[] TerrainTiles; - - - public static int NewUserStartX; - public static int NewUserStartY; - public static int GetTileId(int x, int y, bool overlay) - { - if ((x > Width || x < 0) || (y > Height || y < 0)) // Outside map? - return 0x1; - - int pos = ((x * Height) + y); - - if (overlay) - return oMapData[pos]; - else - return MapData[pos]; - } - public static bool CheckPassable(int x, int y) - { - int tileId = GetTileId(x, y, false) - 1; - int otileId = GetTileId(x, y, true) - 1; - - bool terrainPassable = TerrainTiles[tileId].Passable; - int tileset = 0; - - - if (otileId > 192) - { - if (World.InIsle(x, y)) - tileset = World.GetIsle(x, y).Tileset; - otileId = otileId + 64 * tileset; - } - - - int tileDepth = OverlayTileDepth[otileId]; - bool overlayPassable = false; - if (tileDepth == 0) - overlayPassable = false; - if (tileDepth == 1) - overlayPassable = false; - if (tileDepth == 2) - overlayPassable = true; - if (tileDepth == 3) - overlayPassable = true; - - bool tilePassable = false; - if (terrainPassable || overlayPassable) - tilePassable = true; - if (!overlayPassable && (tileId != 0 && otileId != 0)) - tilePassable = false; - - - - return tilePassable; - } - - public static void OpenMap() - { - if(!File.Exists(ConfigReader.MapFile)) - { - Logger.ErrorPrint("Map file not found."); - return; - } - - - byte[] worldMap = File.ReadAllBytes(ConfigReader.MapFile); - - Width = BitConverter.ToInt32(worldMap, 0); - Height = BitConverter.ToInt32(worldMap, 4); - - MapData = new byte[Width * Height]; - oMapData = new byte[Width * Height]; - int ii = 8; - - for (int i = 0; i < MapData.Length; i++) - { - - oMapData[i] = worldMap[ii]; - MapData[i] = worldMap[ii+ 1]; - ii += 2; - } - - worldMap = null; - - } - } -} +using System; +using System.IO; +using HISP.Server; + +namespace HISP.Game +{ + class Map + { + public struct TerrainTile + { + public bool Passable; + public string Type; + } + + public static int[] OverlayTileDepth; + + public static int Width; + public static int Height; + + public static byte[] MapData; + public static byte[] oMapData; + + public static TerrainTile[] TerrainTiles; + + + public static int NewUserStartX; + public static int NewUserStartY; + public static int GetTileId(int x, int y, bool overlay) + { + if ((x > Width || x < 0) || (y > Height || y < 0)) // Outside map? + return 0x1; + + int pos = ((x * Height) + y); + + if (overlay) + return oMapData[pos]; + else + return MapData[pos]; + } + public static bool CheckPassable(int x, int y) + { + int tileId = GetTileId(x, y, false) - 1; + int otileId = GetTileId(x, y, true) - 1; + + bool terrainPassable = TerrainTiles[tileId].Passable; + int tileset = 0; + + + if (otileId > 192) + { + if (World.InIsle(x, y)) + tileset = World.GetIsle(x, y).Tileset; + otileId = otileId + 64 * tileset; + } + + + int tileDepth = OverlayTileDepth[otileId]; + bool overlayPassable = false; + if (tileDepth == 0) + overlayPassable = false; + if (tileDepth == 1) + overlayPassable = false; + if (tileDepth == 2) + overlayPassable = true; + if (tileDepth == 3) + overlayPassable = true; + + bool tilePassable = false; + if (terrainPassable || overlayPassable) + tilePassable = true; + if (!overlayPassable && (tileId != 0 && otileId != 0)) + tilePassable = false; + + + + return tilePassable; + } + + public static void OpenMap() + { + if(!File.Exists(ConfigReader.MapFile)) + { + Logger.ErrorPrint("Map file not found."); + return; + } + + + byte[] worldMap = File.ReadAllBytes(ConfigReader.MapFile); + + Width = BitConverter.ToInt32(worldMap, 0); + Height = BitConverter.ToInt32(worldMap, 4); + + MapData = new byte[Width * Height]; + oMapData = new byte[Width * Height]; + int ii = 8; + + for (int i = 0; i < MapData.Length; i++) + { + + oMapData[i] = worldMap[ii]; + MapData[i] = worldMap[ii+ 1]; + ii += 2; + } + + worldMap = null; + + } + } +} \ No newline at end of file diff --git a/Horse Isle Server/Horse Isle Server/Messages.cs b/Horse Isle Server/Horse Isle Server/Game/Messages.cs similarity index 93% rename from Horse Isle Server/Horse Isle Server/Messages.cs rename to Horse Isle Server/Horse Isle Server/Game/Messages.cs index b19067d..830fe15 100644 --- a/Horse Isle Server/Horse Isle Server/Messages.cs +++ b/Horse Isle Server/Horse Isle Server/Game/Messages.cs @@ -1,317 +1,331 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Horse_Isle_Server -{ - class Messages - { - public static int RequiredChatViolations; - public static int DefaultInventoryMax; - - // Announcements - public static string NewUserMessage; - public static string WelcomeFormat; - public static string MotdFormat; - public static string IdleWarningFormat; - public static string LoginMessageForamt; - public static string LogoutMessageFormat; - - // Records - public static string ProfileSavedMessage; - - // Chat - public static string GlobalChatFormat; - public static string AdsChatFormat; - public static string BuddyChatFormat; - public static string NearChatFormat; - public static string IsleChatFormat; - public static string HereChatFormat; - public static string DirectChatFormat; - public static string ModChatFormat; - public static string AdminChatFormat; - - public static string GlobalChatFormatForModerators; - public static string DirectChatFormatForModerators; - - public static string IsleChatFormatForSender; - public static string NearChatFormatForSender; - public static string HereChatFormatForSender; - public static string BuddyChatFormatForSender; - public static string DirectChatFormatForSender; - public static string AdminChatFormatForSender; - public static string ModChatFormatForSender; - - public static string ChatViolationMessageFormat; - public static string PasswordNotice; - public static string CapsNotice; - - // Transport - - public static string CantAffordTransport; - public static string WelcomeToAreaFormat; - - //Dropped Items - - public static string NothingMessage; - public static string ItemsOnGroundMessage; - public static string GrabItemFormat; - public static string GrabAllItemsButton; - public static string GrabAllItemsMessage; - public static string GrabbedItemMessage; - public static string GrabbedAllObjectsMessage; - public static string DroppedAnItemMessage; - - // Inventory - public static string InventoryItemFormat; - public static string InventoryHeaderFormat; - - public static string ItemDropButton; - public static string ItemInformationButton; - public static string ItemConsumeButton; - public static string ItemThrowButton; - public static string ItemUseButton; - public static string ItemReadButton; - - // Npc - public static string NpcStartChatFormat; - public static string NpcChatpointFormat; - public static string NpcReplyFormat; - - // Meta - public static string IsleFormat; - public static string TownFormat; - public static string AreaFormat; - public static string LocationFormat; - public static string TransportFormat; - - - - public static string NearbyPlayers; - public static string North; - public static string East; - public static string South; - public static string West; - - public static string TileFormat; - public static string Seperator; - - public static string ExitThisPlace; - public static string BackToMap; - public static string LongFullLine; - public static string MetaTerminator; - - // Disconnect Messages - public static string BanMessage; - public static string IdleKickMessageFormat; - - // Swf - public static string BoatCutscene; - public static string WagonCutscene; - public static string BallonCutscene; - public static string FormatNpcChatpoint(string name, string shortDescription, string chatText) - { - return NpcChatpointFormat.Replace("%NAME%", name).Replace("%DESCRIPTION%", shortDescription).Replace("%TEXT%", chatText); - } - - public static string FormatNpcReply(string replyText, int replyId) - { - return NpcReplyFormat.Replace("%TEXT%", replyText).Replace("%ID%", replyId.ToString()); - } - - public static string FormatNpcStartChatMessage(int iconId, string name, string shortDescription, int npcId) - { - return NpcStartChatFormat.Replace("%ICONID%", iconId.ToString()).Replace("%NAME%", name).Replace("%DESCRIPTION%", shortDescription).Replace("%ID%", npcId.ToString()); - } - - public static string FormatGlobalChatViolationMessage(Chat.Reason violationReason) - { - return ChatViolationMessageFormat.Replace("%AMOUNT%", RequiredChatViolations.ToString()).Replace("%REASON%", violationReason.Message); - } - - public static string FormatPlayerInventoryHeaderMeta(int itemCount, int maxItems) - { - return InventoryHeaderFormat.Replace("%ITEMCOUNT%", itemCount.ToString()).Replace("%MAXITEMS%", maxItems.ToString()); - } - - public static string FormatPlayerInventoryItemMeta(int iconid, int count, string name) - { - return InventoryItemFormat.Replace("%ICONID%", iconid.ToString()).Replace("%COUNT%", count.ToString()).Replace("%TITLE%", name); - } - - public static string FormatItemThrowButton(int randomid) - { - return ItemThrowButton.Replace("%RANDOMID%", randomid.ToString()); - } - public static string FormatItemConsumeButton(int randomid) - { - return ItemConsumeButton.Replace("%RANDOMID%", randomid.ToString()); - } - public static string FormatItemInformationButton(int randomid) - { - return ItemInformationButton.Replace("%RANDOMID%", randomid.ToString()); - } - - public static string FormatItemDropButton(int randomid) - { - return ItemDropButton.Replace("%RANDOMID%", randomid.ToString()); - } - public static string FormatItemUseButton(int randomid) - { - return ItemUseButton.Replace("%RANDOMID%", randomid.ToString()); - } - public static string FormatItemReadButton(int randomid) - { - return ItemReadButton.Replace("%RANDOMID%", randomid.ToString()); - } - - // Meta - public static string FormatTileName(string name) - { - return Messages.TileFormat.Replace("%TILENAME%", name); - } - public static string FormatGrabItemMessage(string name, int randomid, int iconid) - { - return GrabItemFormat.Replace("%ICONID%",iconid.ToString()).Replace("%ITEMNAME%", name).Replace("%RANDOMID%", randomid.ToString()); - } - public static string FormatTransportMessage(string method, string place, int cost, int id, int x, int y) - { - string xy = ""; - xy += (char)(((x - 4) / 64) + 20); - xy += (char)(((x - 4) % 64) + 20); - - xy += (char)(((y - 1) / 64) + 20); - xy += (char)(((y - 1) % 64) + 20); - - int iconId = 253; - if(method == "WAGON") - iconId = 254; - return TransportFormat.Replace("%METHOD%", method).Replace("%PLACE%", place).Replace("%COST%", cost.ToString()).Replace("%ID%", id.ToString()).Replace("%ICON%",iconId.ToString()).Replace("%XY%", xy); - } - // For all - public static string FormatGlobalChatMessage(string username, string message) - { - return GlobalChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); - } - - public static string FormatBuddyChatMessage(string username, string message) - { - return BuddyChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); - } - - public static string FormatIsleChatMessage(string username, string message) - { - return IsleChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); - } - - public static string FormatNearbyChatMessage(string username, string message) - { - return NearChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); - } - - public static string FormatHereChatMessage(string username, string message) - { - return HereChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); - } - - public static string FormatDirectMessage(string username, string message) - { - return DirectChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); - } - public static string FormatDirectMessageForMod(string username, string message) - { - return DirectChatFormatForModerators.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); - } - - public static string FormatGlobalChatMessageForMod(string username, string message) - { - return GlobalChatFormatForModerators.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); - } - - public static string FormatAdsChatMessage(string username, string message) - { - return AdsChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); - } - - public static string FormatModChatMessage(string username, string message) - { - return ModChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); - } - - public static string FormatAdminChatMessage(string username, string message) - { - return AdminChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); - } - - - // For Sender - public static string FormatBuddyChatMessageForSender(int numbBuddies, string username, string message) - { - return BuddyChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbBuddies.ToString()); - } - public static string FormatHereChatMessageForSender(int numbHere, string username, string message) - { - return HereChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbHere.ToString()); - } - public static string FormatNearChatMessageForSender(int numbNear, string username, string message) - { - return NearChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbNear.ToString()); - } - public static string FormatIsleChatMessageForSender(int numbIsle, string username, string message) - { - return IsleChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbIsle.ToString()); - } - - public static string FormatAdminChatForSender(int numbAdmins, string username, string message) - { - return AdminChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbAdmins.ToString()); - } - - public static string FormatModChatForSender(int numbMods, string username, string message) - { - return ModChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbMods.ToString()); - } - public static string FormatDirectChatMessageForSender(string username,string toUsername, string message) - { - return DirectChatFormatForSender.Replace("%FROMUSER%", username).Replace("%TOUSER%", toUsername).Replace(" %MESSAGE%", message); - } - public static string FormatIdleWarningMessage() - { - return IdleWarningFormat.Replace("%WARN%", Server.IdleWarning.ToString()).Replace("%KICK%", Server.IdleTimeout.ToString()); - } - - public static string FormatLoginMessage(string username) - { - return LoginMessageForamt.Replace("%USERNAME%", username); - } - - public static string FormatLogoutMessage(string username) - { - return LogoutMessageFormat.Replace("%USERNAME%", username); - } - - public static string FormatMOTD() - { - return MotdFormat.Replace("%MOTD%", ConfigReader.Motd); - } - public static string FormatWelcomeMessage(string username) - { - return WelcomeFormat.Replace("%USERNAME%", username); - } - - // Transport - public static string FormatWelcomeToAreaMessage(string placeName) - { - return WelcomeToAreaFormat.Replace("%PLACE%", placeName); - } - - // Disconnect - public static string FormatIdleKickMessage() - { - return IdleKickMessageFormat.Replace("%KICK%", Server.IdleTimeout.ToString()); - } - - } -} +using HISP.Server; + +namespace HISP.Game +{ + class Messages + { + public static int RequiredChatViolations; + public static int DefaultInventoryMax; + + // Tools + public static string BinocularsNothing; + public static string MagnifyNothing; + public static string RakeNothing; + public static string ShovelNothing; + + // Announcements + public static string NewUserMessage; + public static string WelcomeFormat; + public static string MotdFormat; + public static string IdleWarningFormat; + public static string LoginMessageForamt; + public static string LogoutMessageFormat; + + // Records + public static string ProfileSavedMessage; + + // Chat + public static string GlobalChatFormat; + public static string AdsChatFormat; + public static string BuddyChatFormat; + public static string NearChatFormat; + public static string IsleChatFormat; + public static string HereChatFormat; + public static string DirectChatFormat; + public static string ModChatFormat; + public static string AdminChatFormat; + + public static string GlobalChatFormatForModerators; + public static string DirectChatFormatForModerators; + + public static string IsleChatFormatForSender; + public static string NearChatFormatForSender; + public static string HereChatFormatForSender; + public static string BuddyChatFormatForSender; + public static string DirectChatFormatForSender; + public static string AdminChatFormatForSender; + public static string ModChatFormatForSender; + + public static string ChatViolationMessageFormat; + public static string PasswordNotice; + public static string CapsNotice; + + // Transport + + public static string CantAffordTransport; + public static string WelcomeToAreaFormat; + + //Dropped Items + + public static string NothingMessage; + public static string ItemsOnGroundMessage; + public static string GrabItemFormat; + public static string GrabAllItemsButton; + public static string GrabAllItemsMessage; + public static string GrabbedItemMessage; + public static string GrabbedAllObjectsMessage; + public static string DroppedAnItemMessage; + + // Inventory + public static string InventoryItemFormat; + public static string InventoryHeaderFormat; + + public static string ItemDropButton; + public static string ItemInformationButton; + public static string ItemConsumeButton; + public static string ItemThrowButton; + public static string ItemUseButton; + public static string ItemReadButton; + + // Npc + public static string NpcStartChatFormat; + public static string NpcChatpointFormat; + public static string NpcReplyFormat; + public static string NpcInformationButton; + public static string NpcTalkButton; + + // Meta + public static string IsleFormat; + public static string TownFormat; + public static string AreaFormat; + public static string LocationFormat; + public static string TransportFormat; + + + + public static string NearbyPlayers; + public static string North; + public static string East; + public static string South; + public static string West; + + public static string TileFormat; + public static string Seperator; + + public static string ExitThisPlace; + public static string BackToMap; + public static string LongFullLine; + public static string MetaTerminator; + + // Disconnect Messages + public static string BanMessage; + public static string IdleKickMessageFormat; + + // Swf + public static string BoatCutscene; + public static string WagonCutscene; + public static string BallonCutscene; + public static string FormatNpcChatpoint(string name, string shortDescription, string chatText) + { + return NpcChatpointFormat.Replace("%NAME%", name).Replace("%DESCRIPTION%", shortDescription).Replace("%TEXT%", chatText); + } + + public static string FormatNpcTalkButton(int npcId) + { + return NpcTalkButton.Replace("%ID%", npcId.ToString()); + } + public static string FormatNpcInformationButton(int npcId) + { + return NpcInformationButton.Replace("%ID%", npcId.ToString()); + } + + + public static string FormatNpcReply(string replyText, int replyId) + { + return NpcReplyFormat.Replace("%TEXT%", replyText).Replace("%ID%", replyId.ToString()); + } + + public static string FormatNpcStartChatMessage(int iconId, string name, string shortDescription, int npcId) + { + return NpcStartChatFormat.Replace("%ICONID%", iconId.ToString()).Replace("%NAME%", name).Replace("%DESCRIPTION%", shortDescription).Replace("%ID%", npcId.ToString()); + } + + public static string FormatGlobalChatViolationMessage(Chat.Reason violationReason) + { + return ChatViolationMessageFormat.Replace("%AMOUNT%", RequiredChatViolations.ToString()).Replace("%REASON%", violationReason.Message); + } + + public static string FormatPlayerInventoryHeaderMeta(int itemCount, int maxItems) + { + return InventoryHeaderFormat.Replace("%ITEMCOUNT%", itemCount.ToString()).Replace("%MAXITEMS%", maxItems.ToString()); + } + + public static string FormatPlayerInventoryItemMeta(int iconid, int count, string name) + { + return InventoryItemFormat.Replace("%ICONID%", iconid.ToString()).Replace("%COUNT%", count.ToString()).Replace("%TITLE%", name); + } + + public static string FormatItemThrowButton(int randomid) + { + return ItemThrowButton.Replace("%RANDOMID%", randomid.ToString()); + } + public static string FormatItemConsumeButton(int randomid) + { + return ItemConsumeButton.Replace("%RANDOMID%", randomid.ToString()); + } + public static string FormatItemInformationButton(int randomid) + { + return ItemInformationButton.Replace("%RANDOMID%", randomid.ToString()); + } + + public static string FormatItemDropButton(int randomid) + { + return ItemDropButton.Replace("%RANDOMID%", randomid.ToString()); + } + public static string FormatItemUseButton(int randomid) + { + return ItemUseButton.Replace("%RANDOMID%", randomid.ToString()); + } + public static string FormatItemReadButton(int randomid) + { + return ItemReadButton.Replace("%RANDOMID%", randomid.ToString()); + } + + // Meta + public static string FormatTileName(string name) + { + return Messages.TileFormat.Replace("%TILENAME%", name); + } + public static string FormatGrabItemMessage(string name, int randomid, int iconid) + { + return GrabItemFormat.Replace("%ICONID%",iconid.ToString()).Replace("%ITEMNAME%", name).Replace("%RANDOMID%", randomid.ToString()); + } + public static string FormatTransportMessage(string method, string place, int cost, int id, int x, int y) + { + string xy = ""; + xy += (char)(((x - 4) / 64) + 20); + xy += (char)(((x - 4) % 64) + 20); + + xy += (char)(((y - 1) / 64) + 20); + xy += (char)(((y - 1) % 64) + 20); + + int iconId = 253; + if(method == "WAGON") + iconId = 254; + return TransportFormat.Replace("%METHOD%", method).Replace("%PLACE%", place).Replace("%COST%", cost.ToString()).Replace("%ID%", id.ToString()).Replace("%ICON%",iconId.ToString()).Replace("%XY%", xy); + } + // For all + public static string FormatGlobalChatMessage(string username, string message) + { + return GlobalChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); + } + + public static string FormatBuddyChatMessage(string username, string message) + { + return BuddyChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); + } + + public static string FormatIsleChatMessage(string username, string message) + { + return IsleChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); + } + + public static string FormatNearbyChatMessage(string username, string message) + { + return NearChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); + } + + public static string FormatHereChatMessage(string username, string message) + { + return HereChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); + } + + public static string FormatDirectMessage(string username, string message) + { + return DirectChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); + } + public static string FormatDirectMessageForMod(string username, string message) + { + return DirectChatFormatForModerators.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); + } + + public static string FormatGlobalChatMessageForMod(string username, string message) + { + return GlobalChatFormatForModerators.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); + } + + public static string FormatAdsChatMessage(string username, string message) + { + return AdsChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); + } + + public static string FormatModChatMessage(string username, string message) + { + return ModChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); + } + + public static string FormatAdminChatMessage(string username, string message) + { + return AdminChatFormat.Replace("%USERNAME%", username).Replace("%MESSAGE%", message); + } + + + // For Sender + public static string FormatBuddyChatMessageForSender(int numbBuddies, string username, string message) + { + return BuddyChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbBuddies.ToString()); + } + public static string FormatHereChatMessageForSender(int numbHere, string username, string message) + { + return HereChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbHere.ToString()); + } + public static string FormatNearChatMessageForSender(int numbNear, string username, string message) + { + return NearChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbNear.ToString()); + } + public static string FormatIsleChatMessageForSender(int numbIsle, string username, string message) + { + return IsleChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbIsle.ToString()); + } + + public static string FormatAdminChatForSender(int numbAdmins, string username, string message) + { + return AdminChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbAdmins.ToString()); + } + + public static string FormatModChatForSender(int numbMods, string username, string message) + { + return ModChatFormatForSender.Replace("%USERNAME%", username).Replace("%MESSAGE%", message).Replace("%AMOUNT%", numbMods.ToString()); + } + public static string FormatDirectChatMessageForSender(string username,string toUsername, string message) + { + return DirectChatFormatForSender.Replace("%FROMUSER%", username).Replace("%TOUSER%", toUsername).Replace(" %MESSAGE%", message); + } + public static string FormatIdleWarningMessage() + { + return IdleWarningFormat.Replace("%WARN%", GameServer.IdleWarning.ToString()).Replace("%KICK%", GameServer.IdleTimeout.ToString()); + } + + public static string FormatLoginMessage(string username) + { + return LoginMessageForamt.Replace("%USERNAME%", username); + } + + public static string FormatLogoutMessage(string username) + { + return LogoutMessageFormat.Replace("%USERNAME%", username); + } + + public static string FormatMOTD() + { + return MotdFormat.Replace("%MOTD%", ConfigReader.Motd); + } + public static string FormatWelcomeMessage(string username) + { + return WelcomeFormat.Replace("%USERNAME%", username); + } + + // Transport + public static string FormatWelcomeToAreaMessage(string placeName) + { + return WelcomeToAreaFormat.Replace("%PLACE%", placeName); + } + + // Disconnect + public static string FormatIdleKickMessage() + { + return IdleKickMessageFormat.Replace("%KICK%", GameServer.IdleTimeout.ToString()); + } + + } +} diff --git a/Horse Isle Server/Horse Isle Server/Meta.cs b/Horse Isle Server/Horse Isle Server/Game/Meta.cs similarity index 71% rename from Horse Isle Server/Horse Isle Server/Meta.cs rename to Horse Isle Server/Horse Isle Server/Game/Meta.cs index e67eb23..8e6bbf3 100644 --- a/Horse Isle Server/Horse Isle Server/Meta.cs +++ b/Horse Isle Server/Horse Isle Server/Game/Meta.cs @@ -1,10 +1,7 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using HISP.Player; +using HISP.Server; -namespace Horse_Isle_Server +namespace HISP.Game { class Meta { @@ -30,7 +27,7 @@ namespace Horse_Isle_Server { string playersNearby = ""; - User[] nearbyUsers = Server.GetNearbyUsers(x, y, true, true); + User[] nearbyUsers = GameServer.GetNearbyUsers(x, y, true, true); if (nearbyUsers.Length > 1) { playersNearby += Messages.NearbyPlayers; @@ -99,18 +96,49 @@ namespace Horse_Isle_Server } return message; } + + public static string buildNpc(User user, int x, int y) + { + string message = ""; + Npc.NpcEntry[] entries = Npc.GetNpcByXAndY(x, y); + if (entries.Length > 0) + message += Messages.Seperator; + foreach (Npc.NpcEntry ent in entries) + { + if (ent.AdminOnly && !user.Administrator) + continue; + + if (ent.RequiresQuestIdCompleted != 0) + if (user.Quests.GetTrackedQuestAmount(ent.RequiresQuestIdNotCompleted) <= 0) + continue; + + if (ent.RequiresQuestIdNotCompleted != 0) + if (user.Quests.GetTrackedQuestAmount(ent.RequiresQuestIdCompleted) >= 1) + continue; + + message += Messages.FormatNpcStartChatMessage(ent.IconId, ent.Name, ent.ShortDescription, ent.Id); + if (ent.LongDescription != "") + message += Messages.FormatNpcInformationButton(ent.Id); + message += Messages.FormatNpcTalkButton(ent.Id); + message += "^R1"; + } + return message; + } public static string BuildTransportInfo(Transport.TransportPoint transportPoint) { string message = ""; // Build list of locations - foreach(int transportLocationId in transportPoint.Locations) + for (int i = 0; i < transportPoint.Locations.Length; i++) { + int transportLocationId = transportPoint.Locations[i]; Transport.TransportLocation transportLocation = Transport.GetTransportLocation(transportLocationId); message += Messages.FormatTransportMessage(transportLocation.Type, transportLocation.LocationTitle, transportLocation.Cost, transportLocation.Id, transportLocation.GotoX, transportLocation.GotoY); + if(i + 1 != transportPoint.Locations.Length) + message += "^R1"; } return message; } - public static string BuildSpecialTileInfo(World.SpecialTile specialTile) + public static string BuildSpecialTileInfo(User user, World.SpecialTile specialTile) { string message = ""; @@ -124,11 +152,7 @@ namespace Horse_Isle_Server if (specialTile.Description != null && specialTile.Description != "") message += specialTile.Description; - Npc.NpcEntry[] entries = Npc.GetNpcByXAndY(specialTile.X, specialTile.Y); - if(entries.Length > 0) - message += Messages.Seperator; - foreach(Npc.NpcEntry ent in entries) - message += Messages.FormatNpcStartChatMessage(ent.IconId, ent.Name, ent.ShortDescription, ent.Id); + message += buildNpc(user, specialTile.X, specialTile.Y); if (specialTile.Code == null) message += buildCommonInfo(specialTile.X, specialTile.Y); @@ -184,29 +208,56 @@ namespace Horse_Isle_Server message += Messages.MetaTerminator; return message; } - public static string BuildChatpoint(Npc.NpcEntry npc, Npc.NpcChat chatpoint) + public static string BuildChatpoint(User user, Npc.NpcEntry npc, Npc.NpcChat chatpoint) { + bool hideReplys = false; + if (chatpoint.ActivateQuestId != 0) + { + Quest.QuestEntry quest = Quest.GetQuestById(chatpoint.ActivateQuestId); + if (Quest.ActivateQuest(user, quest, true)) + { + if(quest.GotoNpcChatpoint != -1) + chatpoint = Npc.GetNpcChatpoint(npc,quest.GotoNpcChatpoint); + if (quest.SuccessNpcChat != null) + chatpoint.ChatText = quest.SuccessNpcChat; + } + else + { + if (quest.GotoNpcChatpoint != -1) + chatpoint = Npc.GetNpcChatpoint(npc, quest.GotoNpcChatpoint); + if (quest.FailNpcChat != null) + chatpoint.ChatText = quest.FailNpcChat; + + if (quest.HideReplyOnFail) + hideReplys = true; + } + } + + string message = ""; message += Messages.FormatNpcChatpoint(npc.Name, npc.ShortDescription, chatpoint.ChatText); foreach(Npc.NpcReply reply in chatpoint.Replies) { + if(reply.RequiresQuestIdCompleted != 0) + if (user.Quests.GetTrackedQuestAmount(reply.RequiresQuestIdCompleted) <= 0) + continue; + if (reply.RequiresQuestIdNotCompleted != 0) + if (user.Quests.GetTrackedQuestAmount(reply.RequiresQuestIdCompleted) >= 1) + continue; + if (hideReplys) + continue; message += Messages.FormatNpcReply(reply.ReplyText, reply.Id); } message += Messages.BackToMap + Messages.MetaTerminator; return message; } - public static string BuildMetaInfo(int x, int y) + public static string BuildMetaInfo(User user, int x, int y) { string message = ""; message += buildLocationString(x, y); - Npc.NpcEntry[] entries = Npc.GetNpcByXAndY(x, y); - if (entries.Length > 0) - message += Messages.Seperator; - foreach (Npc.NpcEntry ent in entries) - message += Messages.FormatNpcStartChatMessage(ent.IconId, ent.Name, ent.ShortDescription, ent.Id); - + message += buildNpc(user, x, y); message += buildCommonInfo(x, y); return message; diff --git a/Horse Isle Server/Horse Isle Server/Npc.cs b/Horse Isle Server/Horse Isle Server/Game/Npc.cs similarity index 99% rename from Horse Isle Server/Horse Isle Server/Npc.cs rename to Horse Isle Server/Horse Isle Server/Game/Npc.cs index fb94152..239cf3a 100644 --- a/Horse Isle Server/Horse Isle Server/Npc.cs +++ b/Horse Isle Server/Horse Isle Server/Game/Npc.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace Horse_Isle_Server +namespace HISP.Game { class Npc { diff --git a/Horse Isle Server/Horse Isle Server/Game/Quest.cs b/Horse Isle Server/Horse Isle Server/Game/Quest.cs new file mode 100644 index 0000000..2533345 --- /dev/null +++ b/Horse Isle Server/Horse Isle Server/Game/Quest.cs @@ -0,0 +1,194 @@ +using System.Collections.Generic; +using System.IO; +using HISP.Player; +using HISP.Server; + +namespace HISP.Game +{ + class Quest + { + public const string Shovel = "SHOVEL"; + public const string Binoculars = "BINOCS"; + public const string Rake = "RAKE"; + public const string MagnifyingGlass = "MAGNIFY"; + + public struct QuestItemInfo + { + public int ItemId; + public int Quantity; + } + public struct QuestAltActivation + { + public string Type; + public int ActivateX; + public int ActivateY; + } + public struct QuestEntry + { + public int Id; + public string Notes; + public string Title; + + public int[] RequiresQuestIdComplete; // Not sure what this is for. + public QuestAltActivation AltActivation; + public bool Tracked; // Should we track how many times the player has completed this quest. + // Fail Settings + public int MaxRepeats; + public int MoneyCost; + public QuestItemInfo[] ItemsRequired; + public string FailNpcChat; + public int AwardRequired; + public int[] RequiresQuestIdCompleted; + public int[] RequiresQuestIdNotCompleted; + + // Success Settings + public int MoneyEarned; + public QuestItemInfo[] ItemsEarned; + public int QuestPointsEarned; + public int GotoNpcChatpoint; + public int WarpX; + public int WarpY; + public string SuccessMessage; + public string SuccessNpcChat; + + public bool HideReplyOnFail; + public string Difficulty; + public string Author; + public int ChainedQuestId; + public bool Minigame; + } + + public static List QuestList = new List(); + + + public static bool ActivateQuest(User user, QuestEntry quest, bool npcActivation = false) + { + + if (quest.Tracked) + { + // Has completed other required quests? + foreach (int questId in quest.RequiresQuestIdCompleted) + if (user.Quests.GetTrackedQuestAmount(quest.Id) < 1) + goto Fail; + + // Has NOT competed other MUST NOT BE required quests + foreach (int questId in quest.RequiresQuestIdNotCompleted) + if (user.Quests.GetTrackedQuestAmount(quest.Id) > 1) + goto Fail; + // Has allready tracked this quest? + if (user.Quests.GetTrackedQuestAmount(quest.Id) >= quest.MaxRepeats) + goto Fail; + + } + + // Check if i have required items + foreach (QuestItemInfo itemInfo in quest.ItemsRequired) + { + bool hasThisItem = false; + InventoryItem[] items = user.Inventory.GetItemList(); + foreach (InventoryItem item in items) + { + if (item.ItemId == itemInfo.ItemId && item.ItemInstances.Count >= itemInfo.Quantity) + { + hasThisItem = true; + break; + } + } + if (!hasThisItem) + goto Fail; + } + + // Have enough money? + if (user.Money < quest.MoneyCost) + goto Fail; + + // Have required award (unimplemented) + + goto Success; + + Fail: { + if(quest.FailNpcChat != null) + { + if(!npcActivation) + { + byte[] ChatPacket = PacketBuilder.CreateChat(quest.FailNpcChat, PacketBuilder.CHAT_BOTTOM_RIGHT); + user.LoggedinClient.SendPacket(ChatPacket); + } + } + return false; + }; + Success: { + // Take Items + foreach(QuestItemInfo itemInfo in quest.ItemsRequired) + { + InventoryItem itm = user.Inventory.GetItemByItemId(itemInfo.ItemId); + for(int i = 0; i < itemInfo.Quantity; i++) + user.Inventory.Remove(itm.ItemInstances[0]); + + } + user.Money -= quest.MoneyCost; + // Give money + user.Money += quest.MoneyEarned; + // Give items + foreach (QuestItemInfo itemInfo in quest.ItemsEarned) + { + for (int i = 0; i < itemInfo.Quantity; i++) + { + ItemInstance itm = new ItemInstance(itemInfo.ItemId); + user.Inventory.Add(itm); + } + } + if (quest.WarpX != 0 && quest.WarpY != 0) + GameServer.Teleport(user.LoggedinClient, quest.WarpX, quest.WarpY); + + // Give quest points + user.QuestPoints += quest.QuestPointsEarned; + + if (quest.ChainedQuestId != 0) + ActivateQuest(user, GetQuestById(quest.ChainedQuestId)); + + if(quest.Tracked) + user.Quests.TrackQuest(quest.Id); + + if(quest.SuccessNpcChat != null) + { + if (!npcActivation) + { + byte[] ChatPacket = PacketBuilder.CreateChat(quest.SuccessNpcChat, PacketBuilder.CHAT_BOTTOM_RIGHT); + user.LoggedinClient.SendPacket(ChatPacket); + } + } + + if(quest.SuccessMessage != null) + { + byte[] ChatPacket = PacketBuilder.CreateChat(quest.SuccessMessage, PacketBuilder.CHAT_BOTTOM_RIGHT); + user.LoggedinClient.SendPacket(ChatPacket); + } + return true; + }; + } + public static QuestEntry GetQuestById(int id) + { + foreach(QuestEntry quest in QuestList) + { + if(quest.Id == id) + { + return quest; + } + } + throw new KeyNotFoundException("QuestId: " + id + " Dont exist."); + } + public static bool UseTool(User user, string tool, int x, int y) + { + foreach(QuestEntry quest in QuestList) + { + if (quest.AltActivation.Type == tool && quest.AltActivation.ActivateX == x && quest.AltActivation.ActivateY == y) + { + ActivateQuest(user, quest); + return true; + } + } + return false; + } + } +} diff --git a/Horse Isle Server/Horse Isle Server/Transport.cs b/Horse Isle Server/Horse Isle Server/Game/Transport.cs similarity index 98% rename from Horse Isle Server/Horse Isle Server/Transport.cs rename to Horse Isle Server/Horse Isle Server/Game/Transport.cs index c636ed4..fca3efd 100644 --- a/Horse Isle Server/Horse Isle Server/Transport.cs +++ b/Horse Isle Server/Horse Isle Server/Game/Transport.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace Horse_Isle_Server +namespace HISP.Game { class Transport { diff --git a/Horse Isle Server/Horse Isle Server/World.cs b/Horse Isle Server/Horse Isle Server/Game/World.cs similarity index 93% rename from Horse Isle Server/Horse Isle Server/World.cs rename to Horse Isle Server/Horse Isle Server/Game/World.cs index 4f4d6c1..66cdaf2 100644 --- a/Horse Isle Server/Horse Isle Server/World.cs +++ b/Horse Isle Server/Horse Isle Server/Game/World.cs @@ -1,216 +1,213 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Horse_Isle_Server -{ - - class World - { - public struct Isle - { - public int StartX; - public int EndX; - public int StartY; - public int EndY; - public int Tileset; - public string Name; - } - public struct Town - { - public int StartX; - public int EndX; - public int StartY; - public int EndY; - public string Name; - } - public struct Area - { - public int StartX; - public int EndX; - public int StartY; - public int EndY; - public string Name; - } - - - public struct Time - { - public int Minutes; - public int Days; - public int Years; - } - - public struct SpecialTile - { - public int X; - public int Y; - - public string Title; - public string Description; - - public string Code; - public int ExitX; - public int ExitY; - - public string AutoplaySwf; - public string TypeFlag; - } - public static Time ServerTime = new Time(); - - public static List Isles = new List(); - public static List Towns = new List(); - public static List Areas = new List(); - public static List SpecialTiles = new List(); - public static void TickWorldClock() - { - ServerTime.Minutes += 1; - - int hours = ServerTime.Minutes / 60; - - // Periodically write time to database: - if (ServerTime.Minutes % 10 == 0) // every 10-in-game minutes) - Database.SetServerTime(ServerTime.Minutes, ServerTime.Days, ServerTime.Years); - - if (hours == 24) // 1 day - { - ServerTime.Days += 1; - ServerTime.Minutes = 0; - } - - if (ServerTime.Days == 366) // 1 year! - { - ServerTime.Days = 0; - ServerTime.Years += 1; - } - } - - public static void ReadWorldData() - { - Logger.DebugPrint("Reading time from database..."); - ServerTime.Minutes = Database.GetServerTime(); - ServerTime.Days = Database.GetServerDay(); - ServerTime.Years = Database.GetServerYear(); - Logger.InfoPrint("It is " + ServerTime.Minutes / 60 + ":" + ServerTime.Minutes % 60 + " on Day " + ServerTime.Days + " in Year " + ServerTime.Years + "!!!"); - } - - public static bool InArea(int x, int y) - { - try - { - GetArea(x, y); - return true; - } - catch (KeyNotFoundException) - { - return false; - } - } - - public static bool InTown(int x, int y) - { - try - { - GetTown(x, y); - return true; - } - catch (KeyNotFoundException) - { - return false; - } - } - - public static bool InSpecialTile(int x, int y) - { - try - { - GetSpecialTile(x, y); - return true; - } - catch (KeyNotFoundException) - { - return false; - } - } - - public static bool InIsle(int x, int y) - { - try - { - GetIsle(x, y); - return true; - } - catch(KeyNotFoundException) - { - return false; - } - } - public static SpecialTile GetSpecialTile(int x, int y) - { - foreach(SpecialTile specialTile in SpecialTiles) - { - if(specialTile.X == x && specialTile.Y == y) - { - return specialTile; - } - } - throw new KeyNotFoundException("x,y not in a special tile!"); - } - public static Isle GetIsle(int x, int y) - { - foreach(Isle isle in Isles) - { - - if (isle.StartX <= x && isle.EndX >= x && isle.StartY <= y && isle.EndY >= y) - { - return isle; - } - } - throw new KeyNotFoundException("x,y not in an isle!"); - } - - public static Area GetArea(int x, int y) - { - foreach (Area area in Areas) - { - - if (area.StartX <= x && area.EndX >= x && area.StartY <= y && area.EndY >= y) - { - return area; - } - } - throw new KeyNotFoundException("x,y not in an area!"); - } - - public static Town GetTown(int x, int y) - { - foreach (Town town in Towns) - { - - if (town.StartX <= x && town.EndX >= x && town.StartY <= y && town.EndY >= y) - { - return town; - } - } - throw new KeyNotFoundException("x,y not in a town!"); - } - - public static bool CanDropItems(int x, int y) - { - if (World.InSpecialTile(x, y)) - { - World.SpecialTile tile = World.GetSpecialTile(x, y); - if (tile.Code != null) - return false; - } - return true; - } - - public static string GetWeather() - { - return Database.GetWorldWeather(); - } - } -} +using System.Collections.Generic; +using HISP.Server; + +namespace HISP.Game +{ + + class World + { + public struct Isle + { + public int StartX; + public int EndX; + public int StartY; + public int EndY; + public int Tileset; + public string Name; + } + public struct Town + { + public int StartX; + public int EndX; + public int StartY; + public int EndY; + public string Name; + } + public struct Area + { + public int StartX; + public int EndX; + public int StartY; + public int EndY; + public string Name; + } + + + public struct Time + { + public int Minutes; + public int Days; + public int Years; + } + + public struct SpecialTile + { + public int X; + public int Y; + + public string Title; + public string Description; + + public string Code; + public int ExitX; + public int ExitY; + + public string AutoplaySwf; + public string TypeFlag; + } + public static Time ServerTime = new Time(); + + public static List Isles = new List(); + public static List Towns = new List(); + public static List Areas = new List(); + public static List SpecialTiles = new List(); + public static void TickWorldClock() + { + ServerTime.Minutes += 1; + + int hours = ServerTime.Minutes / 60; + + // Periodically write time to database: + if (ServerTime.Minutes % 10 == 0) // every 10-in-game minutes) + Database.SetServerTime(ServerTime.Minutes, ServerTime.Days, ServerTime.Years); + + if (hours == 24) // 1 day + { + ServerTime.Days += 1; + ServerTime.Minutes = 0; + } + + if (ServerTime.Days == 366) // 1 year! + { + ServerTime.Days = 0; + ServerTime.Years += 1; + } + } + + public static void ReadWorldData() + { + Logger.DebugPrint("Reading time from database..."); + ServerTime.Minutes = Database.GetServerTime(); + ServerTime.Days = Database.GetServerDay(); + ServerTime.Years = Database.GetServerYear(); + Logger.InfoPrint("It is " + ServerTime.Minutes / 60 + ":" + ServerTime.Minutes % 60 + " on Day " + ServerTime.Days + " in Year " + ServerTime.Years + "!!!"); + } + + public static bool InArea(int x, int y) + { + try + { + GetArea(x, y); + return true; + } + catch (KeyNotFoundException) + { + return false; + } + } + + public static bool InTown(int x, int y) + { + try + { + GetTown(x, y); + return true; + } + catch (KeyNotFoundException) + { + return false; + } + } + + public static bool InSpecialTile(int x, int y) + { + try + { + GetSpecialTile(x, y); + return true; + } + catch (KeyNotFoundException) + { + return false; + } + } + + public static bool InIsle(int x, int y) + { + try + { + GetIsle(x, y); + return true; + } + catch(KeyNotFoundException) + { + return false; + } + } + public static SpecialTile GetSpecialTile(int x, int y) + { + foreach(SpecialTile specialTile in SpecialTiles) + { + if(specialTile.X == x && specialTile.Y == y) + { + return specialTile; + } + } + throw new KeyNotFoundException("x,y not in a special tile!"); + } + public static Isle GetIsle(int x, int y) + { + foreach(Isle isle in Isles) + { + + if (isle.StartX <= x && isle.EndX >= x && isle.StartY <= y && isle.EndY >= y) + { + return isle; + } + } + throw new KeyNotFoundException("x,y not in an isle!"); + } + + public static Area GetArea(int x, int y) + { + foreach (Area area in Areas) + { + + if (area.StartX <= x && area.EndX >= x && area.StartY <= y && area.EndY >= y) + { + return area; + } + } + throw new KeyNotFoundException("x,y not in an area!"); + } + + public static Town GetTown(int x, int y) + { + foreach (Town town in Towns) + { + + if (town.StartX <= x && town.EndX >= x && town.StartY <= y && town.EndY >= y) + { + return town; + } + } + throw new KeyNotFoundException("x,y not in a town!"); + } + + public static bool CanDropItems(int x, int y) + { + if (World.InSpecialTile(x, y)) + { + World.SpecialTile tile = World.GetSpecialTile(x, y); + if (tile.Code != null) + return false; + } + return true; + } + + public static string GetWeather() + { + return Database.GetWorldWeather(); + } + } +} diff --git a/Horse Isle Server/Horse Isle Server/Horse Isle Server.csproj b/Horse Isle Server/Horse Isle Server/Horse Isle Server.csproj index 7d9c383..ab15020 100644 --- a/Horse Isle Server/Horse Isle Server/Horse Isle Server.csproj +++ b/Horse Isle Server/Horse Isle Server/Horse Isle Server.csproj @@ -6,7 +6,7 @@ AnyCPU {C48CBD82-AB30-494A-8FFA-4DE7069B5827} Exe - Horse_Isle_Server + HISP Horse Isle Server v4.8 8.0 @@ -72,40 +72,42 @@ - - - - - - - - - - - - - - - - - - - - - - - - + True True Resources.resx - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -114,6 +116,7 @@ ResXFileCodeGenerator + Designer Resources.Designer.cs diff --git a/Horse Isle Server/Horse Isle Server/Friends.cs b/Horse Isle Server/Horse Isle Server/Player/Friends.cs similarity index 87% rename from Horse Isle Server/Horse Isle Server/Friends.cs rename to Horse Isle Server/Horse Isle Server/Player/Friends.cs index fe39f09..3899be9 100644 --- a/Horse Isle Server/Horse Isle Server/Friends.cs +++ b/Horse Isle Server/Horse Isle Server/Player/Friends.cs @@ -1,10 +1,7 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using System.Collections.Generic; +using HISP.Server; -namespace Horse_Isle_Server +namespace HISP.Player { class Friends { diff --git a/Horse Isle Server/Horse Isle Server/Mailbox.cs b/Horse Isle Server/Horse Isle Server/Player/Mailbox.cs similarity index 58% rename from Horse Isle Server/Horse Isle Server/Mailbox.cs rename to Horse Isle Server/Horse Isle Server/Player/Mailbox.cs index 67d5b4f..5f4df0e 100644 --- a/Horse Isle Server/Horse Isle Server/Mailbox.cs +++ b/Horse Isle Server/Horse Isle Server/Player/Mailbox.cs @@ -1,20 +1,16 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Horse_Isle_Server -{ - class Mailbox - { - private User baseUser; - public int MailCount; - - public Mailbox(User user) - { - MailCount = Database.CheckMailcount(user.Id); - baseUser = user; - } - } -} +using HISP.Server; + +namespace HISP.Player +{ + class Mailbox + { + private User baseUser; + public int MailCount; + + public Mailbox(User user) + { + MailCount = Database.CheckMailcount(user.Id); + baseUser = user; + } + } +} diff --git a/Horse Isle Server/Horse Isle Server/PlayerInventory.cs b/Horse Isle Server/Horse Isle Server/Player/PlayerInventory.cs similarity index 97% rename from Horse Isle Server/Horse Isle Server/PlayerInventory.cs rename to Horse Isle Server/Horse Isle Server/Player/PlayerInventory.cs index 287ee14..51ea7fd 100644 --- a/Horse Isle Server/Horse Isle Server/PlayerInventory.cs +++ b/Horse Isle Server/Horse Isle Server/Player/PlayerInventory.cs @@ -1,10 +1,9 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using System.Linq; -using System.Text; -using System.Threading.Tasks; +using HISP.Game; +using HISP.Server; -namespace Horse_Isle_Server +namespace HISP.Player { class PlayerInventory : IInventory { diff --git a/Horse Isle Server/Horse Isle Server/Player/PlayerQuests.cs b/Horse Isle Server/Horse Isle Server/Player/PlayerQuests.cs new file mode 100644 index 0000000..65aa6e3 --- /dev/null +++ b/Horse Isle Server/Horse Isle Server/Player/PlayerQuests.cs @@ -0,0 +1,53 @@ +using System.Collections.Generic; +using HISP.Server; + +namespace HISP.Player +{ + class PlayerQuests + { + private List trackedQuests = new List(); + public User BaseUser; + public TrackedQuest[] QuestList + { + get + { + return trackedQuests.ToArray(); + } + } + public void Add(int questId, int timesCompleted) + { + TrackedQuest quest = new TrackedQuest(BaseUser.Id, questId, 0); + quest.TimesCompleted = timesCompleted; + trackedQuests.Add(quest); + } + public int GetTrackedQuestAmount(int questId) + { + foreach(TrackedQuest quest in QuestList) + { + if (quest.QuestId == questId) + return quest.TimesCompleted; + } + return 0; + } + + public void TrackQuest(int questId) + { + foreach (TrackedQuest quest in QuestList) + { + if (quest.QuestId == questId) + { + quest.TimesCompleted++; + return; + } + } + Add(questId, 1); + } + public PlayerQuests(User user) + { + BaseUser = user; + TrackedQuest[] quests = Database.GetTrackedQuests(user.Id); + foreach (TrackedQuest quest in quests) + trackedQuests.Add(quest); + } + } +} diff --git a/Horse Isle Server/Horse Isle Server/Player/TrackedQuest.cs b/Horse Isle Server/Horse Isle Server/Player/TrackedQuest.cs new file mode 100644 index 0000000..f162ee1 --- /dev/null +++ b/Horse Isle Server/Horse Isle Server/Player/TrackedQuest.cs @@ -0,0 +1,30 @@ +using System; +using HISP.Server; +namespace HISP +{ + class TrackedQuest + { + public TrackedQuest(int playerID, int questID, int timesComplete) + { + playerId = playerID; + QuestId = questID; + timesCompleted = timesComplete; + } + public int QuestId; + private int playerId; + public int TimesCompleted + { + get + { + return timesCompleted; + } + set + { + Database.SetTrackedQuestCompletedCount(playerId, QuestId, value); + timesCompleted = value; + } + } + private int timesCompleted; + + } +} diff --git a/Horse Isle Server/Horse Isle Server/User.cs b/Horse Isle Server/Horse Isle Server/Player/User.cs similarity index 88% rename from Horse Isle Server/Horse Isle Server/User.cs rename to Horse Isle Server/Horse Isle Server/Player/User.cs index d1fc30a..7251751 100644 --- a/Horse Isle Server/Horse Isle Server/User.cs +++ b/Horse Isle Server/Horse Isle Server/Player/User.cs @@ -1,203 +1,222 @@ -using System; -using System.Collections.Generic; - -namespace Horse_Isle_Server -{ - class User - { - public int Id; - public string Username; - public bool Administrator; - public bool Moderator; - public bool NewPlayer = false; - public Client LoggedinClient; - - public bool MuteAds = false; - public bool MuteGlobal = false; - public bool MuteIsland = false; - public bool MuteNear = false; - public bool MuteHere = false; - public bool MuteBuddy = false; - public bool MutePrivateMessage = false; - public bool MuteBuddyRequests = false; - public bool MuteSocials = false; - public bool MuteLogins = false; - - public bool Stealth = false; - - public int Facing; - public Mailbox MailBox; - public Friends Friends; - public string Password; // For chat filter. - public PlayerInventory Inventory; - public Npc.NpcEntry LastTalkedToNpc; - public int ChatViolations - { - get - { - return chatViolations; - } - set - { - Database.SetChatViolations(value,Id); - chatViolations = value; - } - } - public string ProfilePage { - get - { - return profilePage; - } - set - { - Database.SetPlayerProfile(value, Id); - profilePage = value; - } - } - - public int Money - { - get - { - return money; - } - set - { - Database.SetPlayerMoney(value, Id); - Server.UpdatePlayer(LoggedinClient); - money = value; - } - } - - public int BankMoney - { - get - { - return bankMoney; - } - set - { - Database.SetPlayerBankMoney(value, Id); - bankMoney = value; - } - } - - public int X - { - get - { - return x; - } - set - { - Database.SetPlayerX(value, Id); - x = value; - } - } - - public int Y - { - get - { - return y; - } - set - { - Database.SetPlayerY(value, Id); - y = value; - } - } - - public int CharacterId - { - get - { - return charId; - } - set - { - Database.SetPlayerCharId(value, Id); - charId = value; - } - } - - private int chatViolations; - private int charId; - private string profilePage; - private int x; - private int y; - private int money; - private int bankMoney; - - public byte[] SecCodeSeeds = new byte[3]; - public int SecCodeInc = 0; - public int SecCodeCount = 0; - - - public byte[] GenerateSecCode() - { - var i = 0; - SecCodeCount++; - SecCodeSeeds[SecCodeCount % 3] = (byte)(SecCodeSeeds[SecCodeCount % 3] + SecCodeInc); - SecCodeSeeds[SecCodeCount % 3] = (byte)(SecCodeSeeds[SecCodeCount % 3] % 92); - i = SecCodeSeeds[0] + SecCodeSeeds[1] * SecCodeSeeds[2] - SecCodeSeeds[1]; - i = Math.Abs(i); - i = i % 92; - - byte[] SecCode = new byte[4]; - SecCode[0] = (byte)(SecCodeSeeds[0] + 33); - SecCode[1] = (byte)(SecCodeSeeds[1] + 33); - SecCode[2] = (byte)(SecCodeSeeds[2] + 33); - SecCode[3] = (byte)(i + 33); - return SecCode; - } - - public User(Client baseClient, int UserId) - { - if (!Database.CheckUserExist(UserId)) - throw new KeyNotFoundException("User " + UserId + " not found in database!"); - - if (!Database.CheckUserExtExists(UserId)) - { - Database.CreateUserExt(UserId); - NewPlayer = true; - } - - Id = UserId; - Username = Database.GetUsername(UserId); - - Administrator = Database.CheckUserIsAdmin(Username); - Moderator = Database.CheckUserIsModerator(Username); - - chatViolations = Database.GetChatViolations(UserId); - x = Database.GetPlayerX(UserId); - y = Database.GetPlayerY(UserId); - charId = Database.GetPlayerCharId(UserId); - - Facing = PacketBuilder.DIRECTION_DOWN; - - money = Database.GetPlayerMoney(UserId); - bankMoney = Database.GetPlayerBankMoney(UserId); - - profilePage = Database.GetPlayerProfile(UserId); - - MailBox = new Mailbox(this); - - // Generate SecCodes - - Random rng = new Random(); - SecCodeSeeds[0] = (byte)rng.Next(40, 140); - SecCodeSeeds[1] = (byte)rng.Next(40, 140); - SecCodeSeeds[2] = (byte)rng.Next(40, 140); - SecCodeInc = (byte)rng.Next(0, 99); - - // Make some friends! (Get a life!) - - Friends = new Friends(this); - - LoggedinClient = baseClient; - - Inventory = new PlayerInventory(this); - } - } -} +using System; +using System.Collections.Generic; +using HISP.Game; +using HISP.Server; +namespace HISP.Player +{ + class User + { + public int Id; + public string Username; + public bool Administrator; + public bool Moderator; + public bool NewPlayer = false; + public GameClient LoggedinClient; + + public bool MuteAds = false; + public bool MuteGlobal = false; + public bool MuteIsland = false; + public bool MuteNear = false; + public bool MuteHere = false; + public bool MuteBuddy = false; + public bool MutePrivateMessage = false; + public bool MuteBuddyRequests = false; + public bool MuteSocials = false; + public bool MuteLogins = false; + + public bool Stealth = false; + + public int Facing; + public Mailbox MailBox; + public Friends Friends; + public string Password; // For chat filter. + public PlayerInventory Inventory; + public Npc.NpcEntry LastTalkedToNpc; + public PlayerQuests Quests; + public int ChatViolations + { + get + { + return chatViolations; + } + set + { + Database.SetChatViolations(value,Id); + chatViolations = value; + } + } + public string ProfilePage { + get + { + return profilePage; + } + set + { + Database.SetPlayerProfile(value, Id); + profilePage = value; + } + } + + public int Money + { + get + { + return money; + } + set + { + Database.SetPlayerMoney(value, Id); + money = value; + GameServer.UpdatePlayer(LoggedinClient); + } + } + + public int QuestPoints + { + get + { + return questPoints; + } + set + { + Database.SetPlayerQuestPoints(value, Id); + questPoints = value; + } + } + + public int BankMoney + { + get + { + return bankMoney; + } + set + { + Database.SetPlayerBankMoney(value, Id); + bankMoney = value; + } + } + + public int X + { + get + { + return x; + } + set + { + Database.SetPlayerX(value, Id); + x = value; + } + } + + public int Y + { + get + { + return y; + } + set + { + Database.SetPlayerY(value, Id); + y = value; + } + } + + public int CharacterId + { + get + { + return charId; + } + set + { + Database.SetPlayerCharId(value, Id); + charId = value; + } + } + + private int chatViolations; + private int charId; + private string profilePage; + private int x; + private int y; + private int money; + private int questPoints; + private int bankMoney; + + public byte[] SecCodeSeeds = new byte[3]; + public int SecCodeInc = 0; + public int SecCodeCount = 0; + + + public byte[] GenerateSecCode() + { + var i = 0; + SecCodeCount++; + SecCodeSeeds[SecCodeCount % 3] = (byte)(SecCodeSeeds[SecCodeCount % 3] + SecCodeInc); + SecCodeSeeds[SecCodeCount % 3] = (byte)(SecCodeSeeds[SecCodeCount % 3] % 92); + i = SecCodeSeeds[0] + SecCodeSeeds[1] * SecCodeSeeds[2] - SecCodeSeeds[1]; + i = Math.Abs(i); + i = i % 92; + + byte[] SecCode = new byte[4]; + SecCode[0] = (byte)(SecCodeSeeds[0] + 33); + SecCode[1] = (byte)(SecCodeSeeds[1] + 33); + SecCode[2] = (byte)(SecCodeSeeds[2] + 33); + SecCode[3] = (byte)(i + 33); + return SecCode; + } + + public User(GameClient baseClient, int UserId) + { + if (!Database.CheckUserExist(UserId)) + throw new KeyNotFoundException("User " + UserId + " not found in database!"); + + if (!Database.CheckUserExtExists(UserId)) + { + Database.CreateUserExt(UserId); + NewPlayer = true; + } + + Id = UserId; + Username = Database.GetUsername(UserId); + + Administrator = Database.CheckUserIsAdmin(Username); + Moderator = Database.CheckUserIsModerator(Username); + + chatViolations = Database.GetChatViolations(UserId); + x = Database.GetPlayerX(UserId); + y = Database.GetPlayerY(UserId); + charId = Database.GetPlayerCharId(UserId); + + Facing = PacketBuilder.DIRECTION_DOWN; + + money = Database.GetPlayerMoney(UserId); + bankMoney = Database.GetPlayerBankMoney(UserId); + questPoints = Database.GetPlayerQuestPoints(UserId); + + profilePage = Database.GetPlayerProfile(UserId); + + MailBox = new Mailbox(this); + + // Generate SecCodes + + Random rng = new Random(); + SecCodeSeeds[0] = (byte)rng.Next(40, 140); + SecCodeSeeds[1] = (byte)rng.Next(40, 140); + SecCodeSeeds[2] = (byte)rng.Next(40, 140); + SecCodeInc = (byte)rng.Next(0, 99); + + // Make some friends! (Get a life!) + + Friends = new Friends(this); + + LoggedinClient = baseClient; + + Inventory = new PlayerInventory(this); + + Quests = new PlayerQuests(this); + } + } +} diff --git a/Horse Isle Server/Horse Isle Server/Program.cs b/Horse Isle Server/Horse Isle Server/Program.cs index dd3953a..245ff6b 100644 --- a/Horse Isle Server/Horse Isle Server/Program.cs +++ b/Horse Isle Server/Horse Isle Server/Program.cs @@ -3,8 +3,10 @@ using System.Drawing; using System.Drawing.Imaging; using System.IO; using System.Reflection; - -namespace Horse_Isle_Server +using HISP.Game; +using HISP.Security; +using HISP.Server; +namespace HISP { class Program { @@ -19,7 +21,7 @@ namespace Horse_Isle_Server Gamedata.ReadGamedata(); World.ReadWorldData(); DroppedItems.Init(); - Server.StartServer(); + GameServer.StartServer(); } } diff --git a/Horse Isle Server/Horse Isle Server/Properties/Resources.Designer.cs b/Horse Isle Server/Horse Isle Server/Properties/Resources.Designer.cs index 1633fc7..c43104d 100644 --- a/Horse Isle Server/Horse Isle Server/Properties/Resources.Designer.cs +++ b/Horse Isle Server/Horse Isle Server/Properties/Resources.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace Horse_Isle_Server.Properties { +namespace HISP.Properties { using System; @@ -39,7 +39,7 @@ namespace Horse_Isle_Server.Properties { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Horse_Isle_Server.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("HISP.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; @@ -62,7 +62,7 @@ namespace Horse_Isle_Server.Properties { /// /// Looks up a localized string similar to <cross-domain-policy> - /// <allow-access-from domain="*" to-ports="1080" secure="false"/> + /// <allow-access-from domain="*" to-ports="12321" secure="false"/> ///</cross-domain-policy>. /// internal static string DefaultCrossDomain { @@ -76,24 +76,28 @@ namespace Horse_Isle_Server.Properties { /// ///# Ip address the server will bind to (default: 0.0.0.0 ALL INTERFACES) ///ip=0.0.0.0 - ///# Port the server will bind to (default: 1080) - ///port=1080 + ///# Port the server will bind to (default: 12321) + ///port=12321 /// ///# MariaDB Database ///db_ip=127.0.0.1 + ///db_name=beta ///db_username=root ///db_password=test123 ///db_port=3306 /// ///# Map Data - ///map=MapData.bmp - ///overlaymap=oMapData.bmp + ///map=HI1.MAP + /// + ///# JSON Format Data + /// + ///gamedata=gamedata.json /// ///# Cross-Domain Policy File - ///crossdomain="CrossDomainPolicy.xml + ///crossdomain=CrossDomainPolicy.xml /// - ///# Should print debug logs - ///debug=false. + ///# Red Text Stating "Todays Note:" + ///motd=April 11, 2020. New breed, C [rest of string was truncated]";. /// internal static string DefaultServerProperties { get { diff --git a/Horse Isle Server/Horse Isle Server/Properties/Resources.resx b/Horse Isle Server/Horse Isle Server/Properties/Resources.resx index 594555e..11b57d8 100644 --- a/Horse Isle Server/Horse Isle Server/Properties/Resources.resx +++ b/Horse Isle Server/Horse Isle Server/Properties/Resources.resx @@ -122,6 +122,6 @@ ..\Resources\default_cross_domain.xml;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 - ..\Resources\server.properties;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 + ..\Resources\Server.properties;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 \ No newline at end of file diff --git a/Horse Isle Server/Horse Isle Server/Resources/server.properties b/Horse Isle Server/Horse Isle Server/Resources/server.properties index 58f2cda..3e07619 100644 --- a/Horse Isle Server/Horse Isle Server/Resources/server.properties +++ b/Horse Isle Server/Horse Isle Server/Resources/server.properties @@ -18,8 +18,6 @@ map=HI1.MAP # JSON Format Data gamedata=gamedata.json -npc=npc.json -quest=action.json # Cross-Domain Policy File crossdomain=CrossDomainPolicy.xml diff --git a/Horse Isle Server/Horse Isle Server/Authentication.cs b/Horse Isle Server/Horse Isle Server/Security/Authentication.cs similarity index 91% rename from Horse Isle Server/Horse Isle Server/Authentication.cs rename to Horse Isle Server/Horse Isle Server/Security/Authentication.cs index 1a8bb31..3f3c148 100644 --- a/Horse Isle Server/Horse Isle Server/Authentication.cs +++ b/Horse Isle Server/Horse Isle Server/Security/Authentication.cs @@ -1,89 +1,87 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Security.Cryptography; -using System.Text; -using System.Threading.Tasks; - -namespace Horse_Isle_Server -{ - class Authentication - { - public static string DecryptLogin(string encpass) - { - string decrypt = ""; - string ROTPOOL = "bl7Jgk61IZdnY mfDN5zjM2XLqTCty4WSEoKR3BFVQsaUhHOAx0rPwp9uc8iGve"; - string POSPOOL = "DQc3uxiGsKZatMmOS5qYveN71zoPTk8yU0H2w9VjprBXWn l4FJd6IRbhgACfEL"; - string ROTPOOL2 = "evGi8cu9pwPr0xAOHhUasQVFB3RKoESW4ytCTqLX2Mjz5NDfm YndZI16kgJ7lb"; - - - int i = 0; - int ii = 0; - while (i < encpass.Length) - { - int ROT = ROTPOOL.IndexOf(encpass[i].ToString()); - int POS = POSPOOL.IndexOf(encpass[i + 1].ToString()); - POS -= (ROT + ii); - if (POS < 0) - { - POS = (POS / -1) - 1; - - while (POS >= ROTPOOL.Length) - { - POS -= ROTPOOL.Length; - } - - decrypt += ROTPOOL2[POS]; - } - else - { - while (POS >= ROTPOOL.Length) - { - POS -= ROTPOOL.Length; - } - - decrypt += ROTPOOL[POS]; - } - - i += 2; - ii += 1; - } - return decrypt.Replace(" ", ""); - } - - - - public static byte[] HashAndSalt(string plaintext, byte[] salt) - { - byte[] plaintextBytes = Encoding.UTF8.GetBytes(plaintext); - - SHA512 sha512 = new SHA512Managed(); - byte[] hash = sha512.ComputeHash(plaintextBytes); - - for (int i = 0; i < hash.Length; i++) - { - hash[i] ^= salt[i]; - } - - - byte[] finalHash = sha512.ComputeHash(hash); - - return finalHash; - } - - public static bool CheckPassword(string username, string password) - { - if(Database.CheckUserExist(username)) - { - byte[] expectedPassword = Database.GetPasswordHash(username); - byte[] salt = Database.GetPasswordSalt(username); - byte[] hashedPassword = HashAndSalt(password, salt); - - if (Enumerable.SequenceEqual(expectedPassword, hashedPassword)) - return true; - } - return false; - } - - } -} +using System.Linq; +using System.Security.Cryptography; +using System.Text; +using HISP.Server; + +namespace HISP.Security +{ + class Authentication + { + public static string DecryptLogin(string encpass) + { + string decrypt = ""; + string ROTPOOL = "bl7Jgk61IZdnY mfDN5zjM2XLqTCty4WSEoKR3BFVQsaUhHOAx0rPwp9uc8iGve"; + string POSPOOL = "DQc3uxiGsKZatMmOS5qYveN71zoPTk8yU0H2w9VjprBXWn l4FJd6IRbhgACfEL"; + string ROTPOOL2 = "evGi8cu9pwPr0xAOHhUasQVFB3RKoESW4ytCTqLX2Mjz5NDfm YndZI16kgJ7lb"; + + + int i = 0; + int ii = 0; + while (i < encpass.Length) + { + int ROT = ROTPOOL.IndexOf(encpass[i].ToString()); + int POS = POSPOOL.IndexOf(encpass[i + 1].ToString()); + POS -= (ROT + ii); + if (POS < 0) + { + POS = (POS / -1) - 1; + + while (POS >= ROTPOOL.Length) + { + POS -= ROTPOOL.Length; + } + + decrypt += ROTPOOL2[POS]; + } + else + { + while (POS >= ROTPOOL.Length) + { + POS -= ROTPOOL.Length; + } + + decrypt += ROTPOOL[POS]; + } + + i += 2; + ii += 1; + } + return decrypt.Replace(" ", ""); + } + + + + public static byte[] HashAndSalt(string plaintext, byte[] salt) + { + byte[] plaintextBytes = Encoding.UTF8.GetBytes(plaintext); + + SHA512 sha512 = new SHA512Managed(); + byte[] hash = sha512.ComputeHash(plaintextBytes); + + for (int i = 0; i < hash.Length; i++) + { + hash[i] ^= salt[i]; + } + + + byte[] finalHash = sha512.ComputeHash(hash); + + return finalHash; + } + + public static bool CheckPassword(string username, string password) + { + if(Database.CheckUserExist(username)) + { + byte[] expectedPassword = Database.GetPasswordHash(username); + byte[] salt = Database.GetPasswordSalt(username); + byte[] hashedPassword = HashAndSalt(password, salt); + + if (Enumerable.SequenceEqual(expectedPassword, hashedPassword)) + return true; + } + return false; + } + + } +} diff --git a/Horse Isle Server/Horse Isle Server/CrossDomainPolicy.cs b/Horse Isle Server/Horse Isle Server/Security/CrossDomainPolicy.cs similarity index 81% rename from Horse Isle Server/Horse Isle Server/CrossDomainPolicy.cs rename to Horse Isle Server/Horse Isle Server/Security/CrossDomainPolicy.cs index 279171c..6b567f3 100644 --- a/Horse Isle Server/Horse Isle Server/CrossDomainPolicy.cs +++ b/Horse Isle Server/Horse Isle Server/Security/CrossDomainPolicy.cs @@ -1,34 +1,30 @@ -using Horse_Isle_Server.Properties; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Horse_Isle_Server -{ - class CrossDomainPolicy - { - public static byte[] GetPolicy() - { - if (!File.Exists(ConfigReader.CrossDomainPolicyFile)) { - if (ConfigReader.Debug) - Console.WriteLine("[DEBUG] Cross-Domain-Policy file not found, using default"); - File.WriteAllText(ConfigReader.CrossDomainPolicyFile, Resources.DefaultCrossDomain); - } - - - MemoryStream ms = new MemoryStream(); - byte[] policyFileBytes = File.ReadAllBytes(ConfigReader.CrossDomainPolicyFile); - ms.Write(policyFileBytes, 0x00, policyFileBytes.Length); - ms.WriteByte(0x00); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] policyFileData = ms.ToArray(); - ms.Close(); - - return policyFileData; - } - } -} +using HISP.Properties; +using System; +using System.IO; +using HISP.Server; +namespace HISP.Security +{ + class CrossDomainPolicy + { + public static byte[] GetPolicy() + { + if (!File.Exists(ConfigReader.CrossDomainPolicyFile)) { + if (ConfigReader.Debug) + Console.WriteLine("[DEBUG] Cross-Domain-Policy file not found, using default"); + File.WriteAllText(ConfigReader.CrossDomainPolicyFile, Resources.DefaultCrossDomain); + } + + + MemoryStream ms = new MemoryStream(); + byte[] policyFileBytes = File.ReadAllBytes(ConfigReader.CrossDomainPolicyFile); + ms.Write(policyFileBytes, 0x00, policyFileBytes.Length); + ms.WriteByte(0x00); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] policyFileData = ms.ToArray(); + ms.Close(); + + return policyFileData; + } + } +} diff --git a/Horse Isle Server/Horse Isle Server/RandomID.cs b/Horse Isle Server/Horse Isle Server/Security/RandomID.cs similarity index 75% rename from Horse Isle Server/Horse Isle Server/RandomID.cs rename to Horse Isle Server/Horse Isle Server/Security/RandomID.cs index 95e892f..9bfa631 100644 --- a/Horse Isle Server/Horse Isle Server/RandomID.cs +++ b/Horse Isle Server/Horse Isle Server/Security/RandomID.cs @@ -1,10 +1,5 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Horse_Isle_Server +namespace HISP.Security { class RandomID { diff --git a/Horse Isle Server/Horse Isle Server/ConfigReader.cs b/Horse Isle Server/Horse Isle Server/Server/ConfigReader.cs similarity index 87% rename from Horse Isle Server/Horse Isle Server/ConfigReader.cs rename to Horse Isle Server/Horse Isle Server/Server/ConfigReader.cs index d14e185..f7fef64 100644 --- a/Horse Isle Server/Horse Isle Server/ConfigReader.cs +++ b/Horse Isle Server/Horse Isle Server/Server/ConfigReader.cs @@ -1,120 +1,111 @@ -using Horse_Isle_Server.Properties; -using System; -using System.IO; - -namespace Horse_Isle_Server -{ - - class ConfigReader - { - public static int Port; - public static string BindIP; - - public static string DatabaseIP; - public static string DatabaseUsername; - public static string DatabaseName; - public static string DatabasePassword; - public static int DatabasePort; - - public static string Motd; - public static string MapFile; - public static string GameDataFile; - public static string NpcDataFile; - public static string QuestDataFile; - public static string CrossDomainPolicyFile; - public static bool Debug; - - public static bool BadWords; - public static bool DoCorrections; - - private static string ConfigurationFileName = "server.properties"; - public static void OpenConfig() - { - if (!File.Exists(ConfigurationFileName)) - { - Logger.ErrorPrint(ConfigurationFileName+" not found! writing default."); - File.WriteAllText(ConfigurationFileName,Resources.DefaultServerProperties); - } - - string[] configFile = File.ReadAllLines(ConfigurationFileName); - foreach (string setting in configFile) - { - /* - * Avoid crashing. - */ - if (setting.Length < 1) - continue; - if (setting[0] == '#') - continue; - if (!setting.Contains("=")) - continue; - - string[] dataPair = setting.Split('='); - - string key = dataPair[0]; - string data = dataPair[1]; - /* - * Parse configuration file - */ - - switch (key) - { - case "port": - Port = int.Parse(data); - break; - case "ip": - BindIP = data; - break; - case "db_ip": - DatabaseIP = data; - break; - case "db_username": - DatabaseUsername = data; - break; - case "db_password": - DatabasePassword = data; - break; - case "db_name": - DatabaseName = data; - break; - case "db_port": - DatabasePort = int.Parse(data); - break; - case "map": - MapFile = data; - break; - case "motd": - Motd = data; - break; - case "gamedata": - GameDataFile = data; - break; - case "npc": - NpcDataFile = data; - break; - case "quest": - QuestDataFile = data; - break; - case "crossdomain": - CrossDomainPolicyFile = data; - break; - case "enable_corrections": - BadWords = data == "true"; - break; - case "enable_word_filter": - DoCorrections = data == "true"; - break; - case "debug": - Debug = data == "true"; - break; - } - - - - } - - - } - - } -} +using HISP.Properties; +using System.IO; + +namespace HISP.Server +{ + + class ConfigReader + { + public static int Port; + public static string BindIP; + + public static string DatabaseIP; + public static string DatabaseUsername; + public static string DatabaseName; + public static string DatabasePassword; + public static int DatabasePort; + + public static string Motd; + public static string MapFile; + public static string GameDataFile; + public static string CrossDomainPolicyFile; + public static bool Debug; + + public static bool BadWords; + public static bool DoCorrections; + + private static string ConfigurationFileName = "server.properties"; + public static void OpenConfig() + { + if (!File.Exists(ConfigurationFileName)) + { + Logger.ErrorPrint(ConfigurationFileName+" not found! writing default."); + File.WriteAllText(ConfigurationFileName,Resources.DefaultServerProperties); + } + + string[] configFile = File.ReadAllLines(ConfigurationFileName); + foreach (string setting in configFile) + { + /* + * Avoid crashing. + */ + if (setting.Length < 1) + continue; + if (setting[0] == '#') + continue; + if (!setting.Contains("=")) + continue; + + string[] dataPair = setting.Split('='); + + string key = dataPair[0]; + string data = dataPair[1]; + /* + * Parse configuration file + */ + + switch (key) + { + case "port": + Port = int.Parse(data); + break; + case "ip": + BindIP = data; + break; + case "db_ip": + DatabaseIP = data; + break; + case "db_username": + DatabaseUsername = data; + break; + case "db_password": + DatabasePassword = data; + break; + case "db_name": + DatabaseName = data; + break; + case "db_port": + DatabasePort = int.Parse(data); + break; + case "map": + MapFile = data; + break; + case "motd": + Motd = data; + break; + case "gamedata": + GameDataFile = data; + break; + case "crossdomain": + CrossDomainPolicyFile = data; + break; + case "enable_corrections": + BadWords = data == "true"; + break; + case "enable_word_filter": + DoCorrections = data == "true"; + break; + case "debug": + Debug = data == "true"; + break; + } + + + + } + + + } + + } +} diff --git a/Horse Isle Server/Horse Isle Server/Converters.cs b/Horse Isle Server/Horse Isle Server/Server/Converters.cs similarity index 94% rename from Horse Isle Server/Horse Isle Server/Converters.cs rename to Horse Isle Server/Horse Isle Server/Server/Converters.cs index 9d4bc23..e871881 100644 --- a/Horse Isle Server/Horse Isle Server/Converters.cs +++ b/Horse Isle Server/Horse Isle Server/Server/Converters.cs @@ -1,38 +1,38 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Horse_Isle_Server -{ - class Converters - { - // Thanks Stackoverflow (https://stackoverflow.com/questions/321370/how-can-i-convert-a-hex-string-to-a-byte-array) - private static int getHexVal(char hex) - { - int val = (int)hex; - //For uppercase A-F letters: - //return val - (val < 58 ? 48 : 55); - //For lowercase a-f letters: - //return val - (val < 58 ? 48 : 87); - //Or the two combined, but a bit slower: - return val - (val < 58 ? 48 : (val < 97 ? 55 : 87)); - } - public static byte[] StringToByteArray(string hex) - { - if (hex.Length % 2 == 1) - throw new ArgumentException("The binary key cannot have an odd number of digits"); - - byte[] arr = new byte[hex.Length >> 1]; - - for (int i = 0; i < hex.Length >> 1; ++i) - { - arr[i] = (byte)((getHexVal(hex[i << 1]) << 4) + (getHexVal(hex[(i << 1) + 1]))); - } - - return arr; - } - - } -} +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HISP.Server +{ + class Converters + { + // Thanks Stackoverflow (https://stackoverflow.com/questions/321370/how-can-i-convert-a-hex-string-to-a-byte-array) + private static int getHexVal(char hex) + { + int val = (int)hex; + //For uppercase A-F letters: + //return val - (val < 58 ? 48 : 55); + //For lowercase a-f letters: + //return val - (val < 58 ? 48 : 87); + //Or the two combined, but a bit slower: + return val - (val < 58 ? 48 : (val < 97 ? 55 : 87)); + } + public static byte[] StringToByteArray(string hex) + { + if (hex.Length % 2 == 1) + throw new ArgumentException("The binary key cannot have an odd number of digits"); + + byte[] arr = new byte[hex.Length >> 1]; + + for (int i = 0; i < hex.Length >> 1; ++i) + { + arr[i] = (byte)((getHexVal(hex[i << 1]) << 4) + (getHexVal(hex[(i << 1) + 1]))); + } + + return arr; + } + + } +} diff --git a/Horse Isle Server/Horse Isle Server/Database.cs b/Horse Isle Server/Horse Isle Server/Server/Database.cs similarity index 84% rename from Horse Isle Server/Horse Isle Server/Database.cs rename to Horse Isle Server/Horse Isle Server/Server/Database.cs index 79b4aea..f05ff61 100644 --- a/Horse Isle Server/Horse Isle Server/Database.cs +++ b/Horse Isle Server/Horse Isle Server/Server/Database.cs @@ -1,1000 +1,1169 @@ -using System; -using System.Collections.Generic; -using MySqlConnector; - -namespace Horse_Isle_Server -{ - class Database - { - public static string ConnectionString = ""; - - public static void OpenDatabase() - { - ConnectionString = "server=" + ConfigReader.DatabaseIP + ";user=" + ConfigReader.DatabaseUsername + ";password=" + ConfigReader.DatabasePassword + ";database=" + ConfigReader.DatabaseName; - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - string UserTable = "CREATE TABLE Users(Id INT, Username TEXT(16),Email TEXT(128),Country TEXT(128),SecurityQuestion Text(128),SecurityAnswerHash TEXT(128),Age INT,PassHash TEXT(128), Salt TEXT(128),Gender TEXT(16), Admin TEXT(3), Moderator TEXT(3))"; - string ExtTable = "CREATE TABLE UserExt(Id INT, X INT, Y INT, Money INT, BankBalance BIGINT,ProfilePage Text(1028), CharId INT, ChatViolations INT)"; - string MailTable = "CREATE TABLE Mailbox(IdTo INT, PlayerFrom TEXT(16),Subject TEXT(128), Message Text(1028), TimeSent INT)"; - string BuddyTable = "CREATE TABLE BuddyList(Id INT, IdFriend INT, Pending BOOL)"; - string WorldTable = "CREATE TABLE World(Time INT,Day INT, Year INT, Weather TEXT(64))"; - string InventoryTable = "CREATE TABLE Inventory(PlayerID INT, RandomID INT, ItemID INT)"; - string DroppedItems = "CREATE TABLE DroppedItems(X INT, Y INT, RandomID INT, ItemID INT, DespawnTimer INT)"; - - try - { - - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = UserTable; - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - } - catch (Exception e) - { - Logger.WarnPrint(e.Message); - }; - - try - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = ExtTable; - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - } - catch (Exception e) - { - Logger.WarnPrint(e.Message); - }; - - try - { - - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = MailTable; - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - } - catch (Exception e) - { - Logger.WarnPrint(e.Message); - }; - - try - { - - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = BuddyTable; - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - } - catch (Exception e) - { - Logger.WarnPrint(e.Message); - }; - - - try - { - - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = DroppedItems; - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - } - catch (Exception e) - { - Logger.WarnPrint(e.Message); - }; - - try - { - - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = InventoryTable; - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - } - catch (Exception e) - { - Logger.WarnPrint(e.Message); - }; - - - try - { - - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = WorldTable; - sqlCommand.ExecuteNonQuery(); - - - - sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "INSERT INTO World VALUES(0,0,0,'SUNNY')"; - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - - sqlCommand.Dispose(); - } - catch (Exception e) - { - Logger.WarnPrint(e.Message); - }; - } - - } - - - public static void SetServerTime(int time, int day, int year) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "UPDATE World SET Time=@time,Day=@day,Year=@year"; - sqlCommand.Parameters.AddWithValue("@time", time); - sqlCommand.Parameters.AddWithValue("@day", day); - sqlCommand.Parameters.AddWithValue("@year", year); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - } - } - - public static int GetServerTime() - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT Time FROM World"; - int serverTime = Convert.ToInt32(sqlCommand.ExecuteScalar()); - sqlCommand.Dispose(); - return serverTime; - } - } - - public static int GetServerDay() - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT Day FROM World"; - int serverTime = Convert.ToInt32(sqlCommand.ExecuteScalar()); - sqlCommand.Dispose(); - return serverTime; - } - } - - public static int GetServerYear() - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT Year FROM World"; - int creationTime = Convert.ToInt32(sqlCommand.ExecuteScalar()); - sqlCommand.Dispose(); - return creationTime; - } - } - public static string GetWorldWeather() - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT Weather FROM World"; - string Weather = sqlCommand.ExecuteScalar().ToString(); - sqlCommand.Dispose(); - return Weather; - } - } - - public static void SetWorldWeather(string Weather) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "UPDATE World SET Weather=@weather"; - sqlCommand.Parameters.AddWithValue("@weather", Weather); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - } - } - - public static byte[] GetPasswordSalt(string username) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExist(username)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT Salt FROM Users WHERE Username=@name"; - sqlCommand.Parameters.AddWithValue("@name", username); - sqlCommand.Prepare(); - string expectedHash = sqlCommand.ExecuteScalar().ToString(); - sqlCommand.Dispose(); - return Converters.StringToByteArray(expectedHash); - } - else - { - throw new KeyNotFoundException("Username " + username + " not found in database."); - } - } - } - - public static int CheckMailcount(int id) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT COUNT(1) FROM Mailbox WHERE IdTo=@id"; - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Prepare(); - Int32 count = Convert.ToInt32(sqlCommand.ExecuteScalar()); - - sqlCommand.Dispose(); - return count; - } - } - - public static List GetPlayerInventory(int playerId) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - - sqlCommand.CommandText = "SELECT ItemId,RandomId FROM Inventory WHERE PlayerId=@playerId"; - sqlCommand.Parameters.AddWithValue("@playerId", playerId); - sqlCommand.Prepare(); - MySqlDataReader reader = sqlCommand.ExecuteReader(); - List instances = new List(); - - while(reader.Read()) - { - instances.Add(new ItemInstance(reader.GetInt32(0), reader.GetInt32(1))); - } - sqlCommand.Dispose(); - return instances; - } - } - public static void AddItemToInventory(int playerId, ItemInstance instance) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - - sqlCommand.CommandText = "INSERT INTO Inventory VALUES(@playerId,@randomId,@itemId)"; - sqlCommand.Parameters.AddWithValue("@playerId", playerId); - sqlCommand.Parameters.AddWithValue("@randomId", instance.RandomId); - sqlCommand.Parameters.AddWithValue("@itemId", instance.ItemId); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - } - } - - public static void RemoveItemFromInventory(int playerId, ItemInstance instance) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - - sqlCommand.CommandText = "DELETE FROM Inventory WHERE (PlayerId=@playerId AND RandomId=@randomId)"; - sqlCommand.Parameters.AddWithValue("@playerId", playerId); - sqlCommand.Parameters.AddWithValue("@randomId", instance.RandomId); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - } - } - - public static void RemoveDroppedItem(int randomId) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - - sqlCommand.CommandText = "DELETE FROM DroppedItems WHERE (RandomId=@randomId)"; - sqlCommand.Parameters.AddWithValue("@randomId", randomId); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - } - } - - public static DroppedItems.DroppedItem[] GetDroppedItems() - { - List itemList = new List(); - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT * FROM DroppedItems"; - sqlCommand.Prepare(); - MySqlDataReader reader = sqlCommand.ExecuteReader(); - while(reader.Read()) - { - DroppedItems.DroppedItem droppedItem = new DroppedItems.DroppedItem(); - droppedItem.X = reader.GetInt32(0); - droppedItem.Y = reader.GetInt32(1); - droppedItem.DespawnTimer = reader.GetInt32(4); - ItemInstance instance = new ItemInstance(reader.GetInt32(3),reader.GetInt32(2)); - droppedItem.instance = instance; - itemList.Add(droppedItem); - } - sqlCommand.Dispose(); - - } - return itemList.ToArray(); - } - - public static void AddDroppedItem(DroppedItems.DroppedItem item) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - - - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "INSERT INTO DroppedItems VALUES(@x, @y, @randomId, @itemId, @despawnTimer)"; - sqlCommand.Parameters.AddWithValue("@x", item.X); - sqlCommand.Parameters.AddWithValue("@y", item.Y); - sqlCommand.Parameters.AddWithValue("@randomId", item.instance.RandomId); - sqlCommand.Parameters.AddWithValue("@itemId", item.instance.ItemId); - sqlCommand.Parameters.AddWithValue("@despawnTimer", item.DespawnTimer); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - - } - } - - public static void AddMail(int toId, string fromName, string subject, string message) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - int epoch = (int)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds; - - sqlCommand.CommandText = "INSERT INTO Mailbox VALUES(@toId,@from,@subject,@message,@time)"; - sqlCommand.Parameters.AddWithValue("@toId", toId); - sqlCommand.Parameters.AddWithValue("@from", fromName); - sqlCommand.Parameters.AddWithValue("@subject", subject); - sqlCommand.Parameters.AddWithValue("@mesasge", message); - sqlCommand.Parameters.AddWithValue("@time", epoch); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - } - - } - - public static bool CheckUserExist(int id) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT COUNT(1) FROM Users WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Prepare(); - - Int32 count = Convert.ToInt32(sqlCommand.ExecuteScalar()); - - sqlCommand.Dispose(); - return count >= 1; - } - } - public static bool CheckUserExist(string username) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT COUNT(1) FROM Users WHERE Username=@name"; - sqlCommand.Parameters.AddWithValue("@name", username); - sqlCommand.Prepare(); - - Int32 count = Convert.ToInt32(sqlCommand.ExecuteScalar()); - - sqlCommand.Dispose(); - return count >= 1; - } - } - public static bool CheckUserExtExists(int id) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT COUNT(1) FROM UserExt WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Prepare(); - - Int32 count = Convert.ToInt32(sqlCommand.ExecuteScalar()); - - sqlCommand.Dispose(); - return count >= 1; - } - } - - - public static bool CheckUserIsModerator(string username) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExist(username)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT Moderator FROM Users WHERE Username=@name"; - sqlCommand.Parameters.AddWithValue("@name", username); - sqlCommand.Prepare(); - string modStr = sqlCommand.ExecuteScalar().ToString(); - - sqlCommand.Dispose(); - return modStr == "YES"; - } - else - { - throw new KeyNotFoundException("Username " + username + " not found in database."); - } - } - } - - - public static bool CheckUserIsAdmin(string username) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExist(username)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT Admin FROM Users WHERE Username=@name"; - sqlCommand.Parameters.AddWithValue("@name", username); - sqlCommand.Prepare(); - string adminStr = sqlCommand.ExecuteScalar().ToString(); - - sqlCommand.Dispose(); - return adminStr == "YES"; - } - else - { - throw new KeyNotFoundException("Username " + username + " not found in database."); - } - } - } - - public static int GetBuddyCount(int id) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT COUNT(1) FROM BuddyList WHERE Id=@id OR IdFriend=@id AND Pending=false"; - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Prepare(); - - Int32 count = Convert.ToInt32(sqlCommand.ExecuteScalar()); - sqlCommand.Dispose(); - - return count; - } - } - - public static int[] GetBuddyList(int id) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (GetBuddyCount(id) <= 0) - return new int[0]; // user is forever alone. - - List buddyList = new List(); - - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT Id,IdFriend FROM BuddyList WHERE Id=@id OR IdFriend=@id AND Pending=false"; - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Prepare(); - MySqlDataReader dataReader = sqlCommand.ExecuteReader(); - - while (dataReader.Read()) - { - int adder = dataReader.GetInt32(0); - int friend = dataReader.GetInt32(1); - if (adder != id) - buddyList.Add(adder); - else if (friend != id) - buddyList.Add(adder); - } - - sqlCommand.Dispose(); - return buddyList.ToArray(); - } - } - - public static bool IsPendingBuddyRequestExist(int id, int friendId) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT COUNT(1) FROM BuddyList WHERE (Id=@id AND IdFriend=@friendId) OR (Id=@friendid AND IdFriend=@Id) AND Pending=true"; - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Parameters.AddWithValue("@friendId", friendId); - sqlCommand.Prepare(); - - Int32 count = Convert.ToInt32(sqlCommand.ExecuteScalar()); - sqlCommand.Dispose(); - return count >= 1; - } - } - - public static void RemoveBuddy(int id, int friendId) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "DELETE FROM BuddyList WHERE (Id=@id AND IdFriend=@friendId) OR (Id=@friendid AND IdFriend=@Id)"; - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Parameters.AddWithValue("@friendId", friendId); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - } - } - public static void AcceptBuddyRequest(int id, int friendId) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "UPDATE BuddyList SET Pending=false WHERE (Id=@id AND IdFriend=@friendId) OR (Id=@friendid AND IdFriend=@Id)"; - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Parameters.AddWithValue("@friendId", friendId); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - sqlCommand.Dispose(); - } - } - public static void AddPendingBuddyRequest(int id, int friendId) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "INSERT INTO BuddyList VALUES(@id,@friendId,true)"; - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Parameters.AddWithValue("@friendId", friendId); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - - sqlCommand.Dispose(); - } - } - public static void CreateUserExt(int id) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExtExists(id)) // user allready exists! - throw new Exception("Userid " + id + " Allready in userext."); - - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "INSERT INTO UserExt VALUES(@id,@x,@y,0,0,'',0,0)"; - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Parameters.AddWithValue("@x", Map.NewUserStartX); - sqlCommand.Parameters.AddWithValue("@y", Map.NewUserStartY); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - - sqlCommand.Dispose(); - } - } - - public static int GetUserid(string username) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExist(username)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT Id FROM Users WHERE Username=@name"; - sqlCommand.Parameters.AddWithValue("@name", username); - sqlCommand.Prepare(); - int userId = Convert.ToInt32(sqlCommand.ExecuteScalar()); - - sqlCommand.Dispose(); - return userId; - } - else - { - throw new KeyNotFoundException("Username " + username + " not found in database."); - } - } - } - - public static int GetPlayerCharId(int userId) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExtExists(userId)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT CharId FROM UserExt WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@id", userId); - sqlCommand.Prepare(); - int CharId = Convert.ToInt32(sqlCommand.ExecuteScalar()); - - sqlCommand.Dispose(); - return CharId; - } - else - { - throw new KeyNotFoundException("Id " + userId + " not found in database."); - } - } - } - - public static void SetPlayerCharId(int charid, int id) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExist(id)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "UPDATE UserExt SET CharId=@charId WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@charId", charid); - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - - sqlCommand.Dispose(); - } - else - { - throw new KeyNotFoundException("Id " + id + " not found in database."); - } - } - } - - public static int GetPlayerX(int userId) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExtExists(userId)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT X FROM UserExt WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@id", userId); - sqlCommand.Prepare(); - int X = Convert.ToInt32(sqlCommand.ExecuteScalar()); - - sqlCommand.Dispose(); - return X; - } - else - { - throw new KeyNotFoundException("Id " + userId + " not found in database."); - } - } - } - - public static void SetPlayerX(int x, int id) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExist(id)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "UPDATE UserExt SET X=@x WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@x", x); - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - - sqlCommand.Dispose(); - } - else - { - throw new KeyNotFoundException("Id " + id + " not found in database."); - } - } - } - - public static int GetPlayerY(int userId) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExtExists(userId)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT Y FROM UserExt WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@id", userId); - sqlCommand.Prepare(); - int Y = Convert.ToInt32(sqlCommand.ExecuteScalar()); - - sqlCommand.Dispose(); - return Y; - } - else - { - throw new KeyNotFoundException("Id " + userId + " not found in database."); - } - } - } - - public static int GetChatViolations(int userId) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExtExists(userId)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT ChatViolations FROM UserExt WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@id", userId); - sqlCommand.Prepare(); - int violations = Convert.ToInt32(sqlCommand.ExecuteScalar()); - - sqlCommand.Dispose(); - return violations; - } - else - { - throw new KeyNotFoundException("Id " + userId + " not found in database."); - } - } - } - - - public static void SetChatViolations(int violations, int id) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExist(id)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "UPDATE UserExt SET ChatViolations=@violations WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@violations", violations); - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - - sqlCommand.Dispose(); - } - else - { - throw new KeyNotFoundException("Id " + id + " not found in database."); - } - } - } - public static void SetPlayerY(int y, int id) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExist(id)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "UPDATE UserExt SET Y=@y WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@y", y); - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - - sqlCommand.Dispose(); - } - else - { - throw new KeyNotFoundException("Id " + id + " not found in database."); - } - } - } - - public static void SetPlayerMoney(int money, int id) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExist(id)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "UPDATE UserExt SET Money=@money WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@money", money); - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - - sqlCommand.Dispose(); - } - else - { - throw new KeyNotFoundException("Id " + id + " not found in database."); - } - } - } - public static int GetPlayerMoney(int userId) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExtExists(userId)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT Money FROM UserExt WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@id", userId); - sqlCommand.Prepare(); - int Money = Convert.ToInt32(sqlCommand.ExecuteScalar()); - - sqlCommand.Dispose(); - return Money; - } - else - { - throw new KeyNotFoundException("Id " + userId + " not found in database."); - } - } - } - - public static int GetPlayerBankMoney(int userId) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExtExists(userId)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT BankBalance FROM UserExt WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@id", userId); - sqlCommand.Prepare(); - int BankMoney = Convert.ToInt32(sqlCommand.ExecuteScalar()); - - sqlCommand.Dispose(); - return BankMoney; - } - else - { - throw new KeyNotFoundException("Id " + userId + " not found in database."); - } - } - } - - public static void SetPlayerBankMoney(int bankMoney, int id) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExist(id)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "UPDATE UserExt SET BankBalance=@bankMoney WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@bankMoney", bankMoney); - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - - sqlCommand.Dispose(); - } - else - { - throw new KeyNotFoundException("Id " + id + " not found in database."); - } - } - } - - public static void SetPlayerProfile(string profilePage, int id) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExist(id)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "UPDATE UserExt SET ProfilePage=@profilePage WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@profilePage", profilePage); - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Prepare(); - sqlCommand.ExecuteNonQuery(); - - sqlCommand.Dispose(); - } - else - { - throw new KeyNotFoundException("Id " + id + " not found in database."); - } - } - } - - public static string GetPlayerProfile(int id) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExist(id)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT ProfilePage FROM UserExt WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@id", id); - sqlCommand.Prepare(); - string profilePage = sqlCommand.ExecuteScalar().ToString(); - - sqlCommand.Dispose(); - return profilePage; - } - else - { - throw new KeyNotFoundException("Id " + id + " not found in database."); - } - } - } - - - public static string GetUsername(int userId) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExist(userId)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT Username FROM Users WHERE Id=@id"; - sqlCommand.Parameters.AddWithValue("@id", userId); - sqlCommand.Prepare(); - string username = sqlCommand.ExecuteScalar().ToString(); - - sqlCommand.Dispose(); - return username; - } - else - { - throw new KeyNotFoundException("Id " + userId + " not found in database."); - } - } - } - public static byte[] GetPasswordHash(string username) - { - using (MySqlConnection db = new MySqlConnection(ConnectionString)) - { - db.Open(); - if (CheckUserExist(username)) - { - MySqlCommand sqlCommand = db.CreateCommand(); - sqlCommand.CommandText = "SELECT PassHash FROM Users WHERE Username=@name"; - sqlCommand.Parameters.AddWithValue("@name", username); - sqlCommand.Prepare(); - string expectedHash = sqlCommand.ExecuteScalar().ToString(); - - sqlCommand.Dispose(); - return Converters.StringToByteArray(expectedHash); - } - else - { - throw new KeyNotFoundException("Username " + username + " not found in database."); - } - } - } - } - +using System; +using System.Collections.Generic; +using MySqlConnector; +using HISP.Game; + +namespace HISP.Server +{ + class Database + { + public static string ConnectionString = ""; + + public static void OpenDatabase() + { + ConnectionString = "server=" + ConfigReader.DatabaseIP + ";user=" + ConfigReader.DatabaseUsername + ";password=" + ConfigReader.DatabasePassword + ";database=" + ConfigReader.DatabaseName; + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + string UserTable = "CREATE TABLE Users(Id INT, Username TEXT(16),Email TEXT(128),Country TEXT(128),SecurityQuestion Text(128),SecurityAnswerHash TEXT(128),Age INT,PassHash TEXT(128), Salt TEXT(128),Gender TEXT(16), Admin TEXT(3), Moderator TEXT(3))"; + string ExtTable = "CREATE TABLE UserExt(Id INT, X INT, Y INT, Money INT, QuestPoints INT, BankBalance BIGINT,ProfilePage Text(1028), CharId INT, ChatViolations INT)"; + string MailTable = "CREATE TABLE Mailbox(IdTo INT, PlayerFrom TEXT(16),Subject TEXT(128), Message Text(1028), TimeSent INT)"; + string BuddyTable = "CREATE TABLE BuddyList(Id INT, IdFriend INT, Pending BOOL)"; + string WorldTable = "CREATE TABLE World(Time INT,Day INT, Year INT, Weather TEXT(64))"; + string InventoryTable = "CREATE TABLE Inventory(PlayerID INT, RandomID INT, ItemID INT)"; + string DroppedItems = "CREATE TABLE DroppedItems(X INT, Y INT, RandomID INT, ItemID INT, DespawnTimer INT)"; + string TrackedQuest = "CREATE TABLE TrackedQuest(playerId INT, questId INT, timesCompleted INT)"; + + try + { + + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = UserTable; + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + catch (Exception e) + { + Logger.WarnPrint(e.Message); + }; + + try + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = ExtTable; + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + catch (Exception e) + { + Logger.WarnPrint(e.Message); + }; + + try + { + + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = MailTable; + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + catch (Exception e) + { + Logger.WarnPrint(e.Message); + }; + + try + { + + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = BuddyTable; + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + catch (Exception e) + { + Logger.WarnPrint(e.Message); + }; + + + try + { + + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = DroppedItems; + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + catch (Exception e) + { + Logger.WarnPrint(e.Message); + }; + + try + { + + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = InventoryTable; + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + catch (Exception e) + { + Logger.WarnPrint(e.Message); + }; + + + try + { + + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = TrackedQuest; + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + catch (Exception e) + { + Logger.WarnPrint(e.Message); + }; + + try + { + + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = WorldTable; + sqlCommand.ExecuteNonQuery(); + + + + sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "INSERT INTO World VALUES(0,0,0,'SUNNY')"; + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + + sqlCommand.Dispose(); + } + catch (Exception e) + { + Logger.WarnPrint(e.Message); + }; + } + + } + + + public static void SetServerTime(int time, int day, int year) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "UPDATE World SET Time=@time,Day=@day,Year=@year"; + sqlCommand.Parameters.AddWithValue("@time", time); + sqlCommand.Parameters.AddWithValue("@day", day); + sqlCommand.Parameters.AddWithValue("@year", year); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + } + + public static int GetServerTime() + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT Time FROM World"; + int serverTime = Convert.ToInt32(sqlCommand.ExecuteScalar()); + sqlCommand.Dispose(); + return serverTime; + } + } + + public static int GetServerDay() + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT Day FROM World"; + int serverTime = Convert.ToInt32(sqlCommand.ExecuteScalar()); + sqlCommand.Dispose(); + return serverTime; + } + } + + public static int GetServerYear() + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT Year FROM World"; + int creationTime = Convert.ToInt32(sqlCommand.ExecuteScalar()); + sqlCommand.Dispose(); + return creationTime; + } + } + public static string GetWorldWeather() + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT Weather FROM World"; + string Weather = sqlCommand.ExecuteScalar().ToString(); + sqlCommand.Dispose(); + return Weather; + } + } + + public static void SetWorldWeather(string Weather) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "UPDATE World SET Weather=@weather"; + sqlCommand.Parameters.AddWithValue("@weather", Weather); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + } + + public static byte[] GetPasswordSalt(string username) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(username)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT Salt FROM Users WHERE Username=@name"; + sqlCommand.Parameters.AddWithValue("@name", username); + sqlCommand.Prepare(); + string expectedHash = sqlCommand.ExecuteScalar().ToString(); + sqlCommand.Dispose(); + return Converters.StringToByteArray(expectedHash); + } + else + { + throw new KeyNotFoundException("Username " + username + " not found in database."); + } + } + } + + public static int CheckMailcount(int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT COUNT(1) FROM Mailbox WHERE IdTo=@id"; + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Prepare(); + Int32 count = Convert.ToInt32(sqlCommand.ExecuteScalar()); + + sqlCommand.Dispose(); + return count; + } + } + + public static List GetPlayerInventory(int playerId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + + sqlCommand.CommandText = "SELECT ItemId,RandomId FROM Inventory WHERE PlayerId=@playerId"; + sqlCommand.Parameters.AddWithValue("@playerId", playerId); + sqlCommand.Prepare(); + MySqlDataReader reader = sqlCommand.ExecuteReader(); + List instances = new List(); + + while(reader.Read()) + { + instances.Add(new ItemInstance(reader.GetInt32(0), reader.GetInt32(1))); + } + sqlCommand.Dispose(); + return instances; + } + } + + public static int GetTrackedQuestCompletedCount(int playerId, int questId) + { + if(CheckTrackeQuestExists(playerId,questId)) + { + + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + + sqlCommand.CommandText = "SELECT timesCompleted FROM TrackedQuest WHERE playerId=@playerId AND questId=@questId"; + sqlCommand.Parameters.AddWithValue("@playerId", playerId); + sqlCommand.Parameters.AddWithValue("@questId", questId); + sqlCommand.Prepare(); + int timesComplete = Convert.ToInt32(sqlCommand.ExecuteScalar()); + sqlCommand.Dispose(); + return timesComplete; + } + } + else + { + return 0; + } + + } + public static bool CheckTrackeQuestExists(int playerId, int questId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + + sqlCommand.CommandText = "SELECT COUNT(*) FROM TrackedQuest WHERE playerId=@playerId AND questId=@questId"; + sqlCommand.Parameters.AddWithValue("@playerId", playerId); + sqlCommand.Parameters.AddWithValue("@questId", questId); + sqlCommand.Prepare(); + int count = Convert.ToInt32(sqlCommand.ExecuteScalar()); + sqlCommand.Dispose(); + + if (count >= 1) + return true; + else + return false; + } + + } + + public static TrackedQuest[] GetTrackedQuests(int playerId) + { + List trackedQuests = new List(); + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + + sqlCommand.CommandText = "SELECT questId,timesCompleted FROM TrackedQuest WHERE playerId=@playerId"; + sqlCommand.Parameters.AddWithValue("@playerId", playerId); + sqlCommand.Prepare(); + MySqlDataReader reader = sqlCommand.ExecuteReader(); + while(reader.Read()) + { + TrackedQuest trackedQuest = new TrackedQuest(playerId, reader.GetInt32(0), reader.GetInt32(1)); + trackedQuests.Add(trackedQuest); + } + sqlCommand.Dispose(); + } + return trackedQuests.ToArray(); + } + public static void SetTrackedQuestCompletedCount(int playerId, int questId, int timesCompleted) + { + if(CheckTrackeQuestExists(playerId,questId)) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + + sqlCommand.CommandText = "UPDATE TrackedQuest SET timesCompleted=@timesCompleted WHERE playerId=@playerId AND questId=@questId"; + sqlCommand.Parameters.AddWithValue("@playerId", playerId); + sqlCommand.Parameters.AddWithValue("@questId", questId); + sqlCommand.Parameters.AddWithValue("@timesCompleted", timesCompleted); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + } + else + { + AddNewTrackedQuest(playerId, questId, timesCompleted); + } + + } + public static void AddNewTrackedQuest(int playerId, int questId, int timesCompleted) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + + sqlCommand.CommandText = "INSERT INTO TrackedQuest VALUES(@playerId,@questId,@timesCompleted)"; + sqlCommand.Parameters.AddWithValue("@playerId", playerId); + sqlCommand.Parameters.AddWithValue("@questId", questId); + sqlCommand.Parameters.AddWithValue("@timesCompleted", timesCompleted); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + } + public static void AddItemToInventory(int playerId, ItemInstance instance) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + + sqlCommand.CommandText = "INSERT INTO Inventory VALUES(@playerId,@randomId,@itemId)"; + sqlCommand.Parameters.AddWithValue("@playerId", playerId); + sqlCommand.Parameters.AddWithValue("@randomId", instance.RandomId); + sqlCommand.Parameters.AddWithValue("@itemId", instance.ItemId); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + } + + public static void RemoveItemFromInventory(int playerId, ItemInstance instance) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + + sqlCommand.CommandText = "DELETE FROM Inventory WHERE (PlayerId=@playerId AND RandomId=@randomId)"; + sqlCommand.Parameters.AddWithValue("@playerId", playerId); + sqlCommand.Parameters.AddWithValue("@randomId", instance.RandomId); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + } + + public static void RemoveDroppedItem(int randomId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + + sqlCommand.CommandText = "DELETE FROM DroppedItems WHERE (RandomId=@randomId)"; + sqlCommand.Parameters.AddWithValue("@randomId", randomId); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + } + + public static DroppedItems.DroppedItem[] GetDroppedItems() + { + List itemList = new List(); + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT * FROM DroppedItems"; + sqlCommand.Prepare(); + MySqlDataReader reader = sqlCommand.ExecuteReader(); + while(reader.Read()) + { + DroppedItems.DroppedItem droppedItem = new DroppedItems.DroppedItem(); + droppedItem.X = reader.GetInt32(0); + droppedItem.Y = reader.GetInt32(1); + droppedItem.DespawnTimer = reader.GetInt32(4); + ItemInstance instance = new ItemInstance(reader.GetInt32(3),reader.GetInt32(2)); + droppedItem.instance = instance; + itemList.Add(droppedItem); + } + sqlCommand.Dispose(); + + } + return itemList.ToArray(); + } + + public static void AddDroppedItem(DroppedItems.DroppedItem item) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + + + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "INSERT INTO DroppedItems VALUES(@x, @y, @randomId, @itemId, @despawnTimer)"; + sqlCommand.Parameters.AddWithValue("@x", item.X); + sqlCommand.Parameters.AddWithValue("@y", item.Y); + sqlCommand.Parameters.AddWithValue("@randomId", item.instance.RandomId); + sqlCommand.Parameters.AddWithValue("@itemId", item.instance.ItemId); + sqlCommand.Parameters.AddWithValue("@despawnTimer", item.DespawnTimer); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + + } + } + + public static void AddMail(int toId, string fromName, string subject, string message) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + int epoch = (int)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds; + + sqlCommand.CommandText = "INSERT INTO Mailbox VALUES(@toId,@from,@subject,@message,@time)"; + sqlCommand.Parameters.AddWithValue("@toId", toId); + sqlCommand.Parameters.AddWithValue("@from", fromName); + sqlCommand.Parameters.AddWithValue("@subject", subject); + sqlCommand.Parameters.AddWithValue("@mesasge", message); + sqlCommand.Parameters.AddWithValue("@time", epoch); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + + } + + public static bool CheckUserExist(int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT COUNT(1) FROM Users WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Prepare(); + + Int32 count = Convert.ToInt32(sqlCommand.ExecuteScalar()); + + sqlCommand.Dispose(); + return count >= 1; + } + } + public static bool CheckUserExist(string username) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT COUNT(1) FROM Users WHERE Username=@name"; + sqlCommand.Parameters.AddWithValue("@name", username); + sqlCommand.Prepare(); + + Int32 count = Convert.ToInt32(sqlCommand.ExecuteScalar()); + + sqlCommand.Dispose(); + return count >= 1; + } + } + public static bool CheckUserExtExists(int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT COUNT(1) FROM UserExt WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Prepare(); + + Int32 count = Convert.ToInt32(sqlCommand.ExecuteScalar()); + + sqlCommand.Dispose(); + return count >= 1; + } + } + + + public static bool CheckUserIsModerator(string username) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(username)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT Moderator FROM Users WHERE Username=@name"; + sqlCommand.Parameters.AddWithValue("@name", username); + sqlCommand.Prepare(); + string modStr = sqlCommand.ExecuteScalar().ToString(); + + sqlCommand.Dispose(); + return modStr == "YES"; + } + else + { + throw new KeyNotFoundException("Username " + username + " not found in database."); + } + } + } + + + public static bool CheckUserIsAdmin(string username) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(username)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT Admin FROM Users WHERE Username=@name"; + sqlCommand.Parameters.AddWithValue("@name", username); + sqlCommand.Prepare(); + string adminStr = sqlCommand.ExecuteScalar().ToString(); + + sqlCommand.Dispose(); + return adminStr == "YES"; + } + else + { + throw new KeyNotFoundException("Username " + username + " not found in database."); + } + } + } + + public static int GetBuddyCount(int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT COUNT(1) FROM BuddyList WHERE Id=@id OR IdFriend=@id AND Pending=false"; + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Prepare(); + + Int32 count = Convert.ToInt32(sqlCommand.ExecuteScalar()); + sqlCommand.Dispose(); + + return count; + } + } + + public static int[] GetBuddyList(int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (GetBuddyCount(id) <= 0) + return new int[0]; // user is forever alone. + + List buddyList = new List(); + + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT Id,IdFriend FROM BuddyList WHERE Id=@id OR IdFriend=@id AND Pending=false"; + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Prepare(); + MySqlDataReader dataReader = sqlCommand.ExecuteReader(); + + while (dataReader.Read()) + { + int adder = dataReader.GetInt32(0); + int friend = dataReader.GetInt32(1); + if (adder != id) + buddyList.Add(adder); + else if (friend != id) + buddyList.Add(adder); + } + + sqlCommand.Dispose(); + return buddyList.ToArray(); + } + } + + public static bool IsPendingBuddyRequestExist(int id, int friendId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT COUNT(1) FROM BuddyList WHERE (Id=@id AND IdFriend=@friendId) OR (Id=@friendid AND IdFriend=@Id) AND Pending=true"; + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Parameters.AddWithValue("@friendId", friendId); + sqlCommand.Prepare(); + + Int32 count = Convert.ToInt32(sqlCommand.ExecuteScalar()); + sqlCommand.Dispose(); + return count >= 1; + } + } + + public static void RemoveBuddy(int id, int friendId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "DELETE FROM BuddyList WHERE (Id=@id AND IdFriend=@friendId) OR (Id=@friendid AND IdFriend=@Id)"; + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Parameters.AddWithValue("@friendId", friendId); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + } + public static void AcceptBuddyRequest(int id, int friendId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "UPDATE BuddyList SET Pending=false WHERE (Id=@id AND IdFriend=@friendId) OR (Id=@friendid AND IdFriend=@Id)"; + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Parameters.AddWithValue("@friendId", friendId); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + sqlCommand.Dispose(); + } + } + public static void AddPendingBuddyRequest(int id, int friendId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "INSERT INTO BuddyList VALUES(@id,@friendId,true)"; + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Parameters.AddWithValue("@friendId", friendId); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + + sqlCommand.Dispose(); + } + } + public static void CreateUserExt(int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExtExists(id)) // user allready exists! + throw new Exception("Userid " + id + " Allready in userext."); + + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "INSERT INTO UserExt VALUES(@id,@x,@y,0,0,0,'',0,0)"; + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Parameters.AddWithValue("@x", Map.NewUserStartX); + sqlCommand.Parameters.AddWithValue("@y", Map.NewUserStartY); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + + sqlCommand.Dispose(); + } + } + + public static int GetUserid(string username) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(username)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT Id FROM Users WHERE Username=@name"; + sqlCommand.Parameters.AddWithValue("@name", username); + sqlCommand.Prepare(); + int userId = Convert.ToInt32(sqlCommand.ExecuteScalar()); + + sqlCommand.Dispose(); + return userId; + } + else + { + throw new KeyNotFoundException("Username " + username + " not found in database."); + } + } + } + + public static int GetPlayerCharId(int userId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExtExists(userId)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT CharId FROM UserExt WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@id", userId); + sqlCommand.Prepare(); + int CharId = Convert.ToInt32(sqlCommand.ExecuteScalar()); + + sqlCommand.Dispose(); + return CharId; + } + else + { + throw new KeyNotFoundException("Id " + userId + " not found in database."); + } + } + } + + public static void SetPlayerCharId(int charid, int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(id)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "UPDATE UserExt SET CharId=@charId WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@charId", charid); + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + + sqlCommand.Dispose(); + } + else + { + throw new KeyNotFoundException("Id " + id + " not found in database."); + } + } + } + + public static int GetPlayerX(int userId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExtExists(userId)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT X FROM UserExt WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@id", userId); + sqlCommand.Prepare(); + int X = Convert.ToInt32(sqlCommand.ExecuteScalar()); + + sqlCommand.Dispose(); + return X; + } + else + { + throw new KeyNotFoundException("Id " + userId + " not found in database."); + } + } + } + + public static void SetPlayerX(int x, int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(id)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "UPDATE UserExt SET X=@x WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@x", x); + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + + sqlCommand.Dispose(); + } + else + { + throw new KeyNotFoundException("Id " + id + " not found in database."); + } + } + } + + public static int GetPlayerY(int userId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExtExists(userId)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT Y FROM UserExt WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@id", userId); + sqlCommand.Prepare(); + int Y = Convert.ToInt32(sqlCommand.ExecuteScalar()); + + sqlCommand.Dispose(); + return Y; + } + else + { + throw new KeyNotFoundException("Id " + userId + " not found in database."); + } + } + } + + public static int GetChatViolations(int userId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExtExists(userId)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT ChatViolations FROM UserExt WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@id", userId); + sqlCommand.Prepare(); + int violations = Convert.ToInt32(sqlCommand.ExecuteScalar()); + + sqlCommand.Dispose(); + return violations; + } + else + { + throw new KeyNotFoundException("Id " + userId + " not found in database."); + } + } + } + + + public static void SetChatViolations(int violations, int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(id)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "UPDATE UserExt SET ChatViolations=@violations WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@violations", violations); + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + + sqlCommand.Dispose(); + } + else + { + throw new KeyNotFoundException("Id " + id + " not found in database."); + } + } + } + public static void SetPlayerY(int y, int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(id)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "UPDATE UserExt SET Y=@y WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@y", y); + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + + sqlCommand.Dispose(); + } + else + { + throw new KeyNotFoundException("Id " + id + " not found in database."); + } + } + } + + public static void SetPlayerQuestPoints(int qp, int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(id)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "UPDATE UserExt SET QuestPoints=@questPoints WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@questPoints", qp); + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + + sqlCommand.Dispose(); + } + else + { + throw new KeyNotFoundException("Id " + id + " not found in database."); + } + } + } + public static int GetPlayerQuestPoints(int userId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExtExists(userId)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT QuestPoints FROM UserExt WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@id", userId); + sqlCommand.Prepare(); + int QuestPoints = Convert.ToInt32(sqlCommand.ExecuteScalar()); + + sqlCommand.Dispose(); + return QuestPoints; + } + else + { + throw new KeyNotFoundException("Id " + userId + " not found in database."); + } + } + } + + public static void SetPlayerMoney(int money, int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(id)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "UPDATE UserExt SET Money=@money WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@money", money); + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + + sqlCommand.Dispose(); + } + else + { + throw new KeyNotFoundException("Id " + id + " not found in database."); + } + } + } + public static int GetPlayerMoney(int userId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExtExists(userId)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT Money FROM UserExt WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@id", userId); + sqlCommand.Prepare(); + int Money = Convert.ToInt32(sqlCommand.ExecuteScalar()); + + sqlCommand.Dispose(); + return Money; + } + else + { + throw new KeyNotFoundException("Id " + userId + " not found in database."); + } + } + } + + public static int GetPlayerBankMoney(int userId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExtExists(userId)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT BankBalance FROM UserExt WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@id", userId); + sqlCommand.Prepare(); + int BankMoney = Convert.ToInt32(sqlCommand.ExecuteScalar()); + + sqlCommand.Dispose(); + return BankMoney; + } + else + { + throw new KeyNotFoundException("Id " + userId + " not found in database."); + } + } + } + + public static void SetPlayerBankMoney(int bankMoney, int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(id)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "UPDATE UserExt SET BankBalance=@bankMoney WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@bankMoney", bankMoney); + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + + sqlCommand.Dispose(); + } + else + { + throw new KeyNotFoundException("Id " + id + " not found in database."); + } + } + } + + public static void SetPlayerProfile(string profilePage, int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(id)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "UPDATE UserExt SET ProfilePage=@profilePage WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@profilePage", profilePage); + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Prepare(); + sqlCommand.ExecuteNonQuery(); + + sqlCommand.Dispose(); + } + else + { + throw new KeyNotFoundException("Id " + id + " not found in database."); + } + } + } + + public static string GetPlayerProfile(int id) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(id)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT ProfilePage FROM UserExt WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@id", id); + sqlCommand.Prepare(); + string profilePage = sqlCommand.ExecuteScalar().ToString(); + + sqlCommand.Dispose(); + return profilePage; + } + else + { + throw new KeyNotFoundException("Id " + id + " not found in database."); + } + } + } + + + public static string GetUsername(int userId) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(userId)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT Username FROM Users WHERE Id=@id"; + sqlCommand.Parameters.AddWithValue("@id", userId); + sqlCommand.Prepare(); + string username = sqlCommand.ExecuteScalar().ToString(); + + sqlCommand.Dispose(); + return username; + } + else + { + throw new KeyNotFoundException("Id " + userId + " not found in database."); + } + } + } + public static byte[] GetPasswordHash(string username) + { + using (MySqlConnection db = new MySqlConnection(ConnectionString)) + { + db.Open(); + if (CheckUserExist(username)) + { + MySqlCommand sqlCommand = db.CreateCommand(); + sqlCommand.CommandText = "SELECT PassHash FROM Users WHERE Username=@name"; + sqlCommand.Parameters.AddWithValue("@name", username); + sqlCommand.Prepare(); + string expectedHash = sqlCommand.ExecuteScalar().ToString(); + + sqlCommand.Dispose(); + return Converters.StringToByteArray(expectedHash); + } + else + { + throw new KeyNotFoundException("Username " + username + " not found in database."); + } + } + } + } + } \ No newline at end of file diff --git a/Horse Isle Server/Horse Isle Server/Client.cs b/Horse Isle Server/Horse Isle Server/Server/GameClient.cs similarity index 84% rename from Horse Isle Server/Horse Isle Server/Client.cs rename to Horse Isle Server/Horse Isle Server/Server/GameClient.cs index 838bf34..b657ef5 100644 --- a/Horse Isle Server/Horse Isle Server/Client.cs +++ b/Horse Isle Server/Horse Isle Server/Server/GameClient.cs @@ -1,235 +1,238 @@ -using System; -using System.IO; -using System.Net.Sockets; -using System.Text; -using System.Threading; -namespace Horse_Isle_Server -{ - class Client - { - public Socket ClientSocket; - public string RemoteIp; - - public bool LoggedIn = false; - public User LoggedinUser; - - private Thread recvPackets; - - private Timer updateTimer; - private Timer inactivityTimer; - - private Timer warnTimer; - private Timer kickTimer; - - - private int keepAliveInterval = 60 * 1000; - private int updateInterval = 60 * 1000; - - private int warnInterval = Server.IdleWarning * 60 * 1000; - private int kickInterval = Server.IdleTimeout * 60 * 1000; - - - private void keepAliveTimerTick(object state) - { - Logger.DebugPrint("Sending keep-alive packet to "+ LoggedinUser.Username); - byte[] updatePacket = PacketBuilder.CreateKeepAlive(); - SendPacket(updatePacket); - } - - private void warnTimerTick(object state) - { - Logger.DebugPrint("Sending inactivity warning to: " + RemoteIp); - byte[] chatPacket = PacketBuilder.CreateChat(Messages.FormatIdleWarningMessage(), PacketBuilder.CHAT_BOTTOM_RIGHT); - SendPacket(chatPacket); - } - - private void kickTimerTick(object state) - { - Kick(Messages.FormatIdleKickMessage()); - } - private void updateTimerTick(object state) - { - Server.UpdateWorld(this); - Server.UpdatePlayer(this); - } - public void Login(int id) - { - LoggedinUser = new User(this,id); - LoggedIn = true; - - updateTimer = new Timer(new TimerCallback(updateTimerTick), null, updateInterval, updateInterval); - inactivityTimer = new Timer(new TimerCallback(keepAliveTimerTick), null, keepAliveInterval, keepAliveInterval); - } - private void receivePackets() - { - // HI1 Packets are terminates by 0x00 so we have to read until we receive that terminator - MemoryStream ms = new MemoryStream(); - - while(ClientSocket.Connected) - { - try - { - if (ClientSocket.Available >= 1) - { - byte[] buffer = new byte[ClientSocket.Available]; - ClientSocket.Receive(buffer); - - - foreach (Byte b in buffer) - { - ms.WriteByte(b); - if (b == 0x00) - { - ms.Seek(0x00, SeekOrigin.Begin); - byte[] fullPacket = ms.ToArray(); - parsePackets(fullPacket); - - ms.Close(); - ms = new MemoryStream(); - } - } - - } - } - catch(SocketException e) - { - Logger.ErrorPrint("Socket exception occured: " + e.Message); - Disconnect(); - break; - } - - } - - - } - - private void parsePackets(byte[] Packet) - { - if (Packet.Length < 1) - { - Logger.ErrorPrint("Received an invalid packet (size: "+Packet.Length+")"); - } - byte identifier = Packet[0]; - - // Reset timers - if (inactivityTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE) - inactivityTimer.Change(keepAliveInterval, keepAliveInterval); - - - if (kickTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE) - kickTimer.Change(kickInterval, kickInterval); - - if (warnTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE) - warnTimer.Change(warnInterval, warnInterval); - - if (!LoggedIn) // Must be either login or policy-file-request - { - if (Encoding.UTF8.GetString(Packet).StartsWith("")) // Policy File Request - { - Server.OnCrossdomainPolicyRequest(this); - } - switch (identifier) - { - case PacketBuilder.PACKET_LOGIN: - Server.OnLoginRequest(this, Packet); - break; - } - } - else - { - switch (identifier) - { - case PacketBuilder.PACKET_LOGIN: - Server.OnUserInfoRequest(this, Packet); - break; - case PacketBuilder.PACKET_MOVE: - Server.OnMovementPacket(this, Packet); - break; - case PacketBuilder.PACKET_PROFILE: - Server.OnProfilePacket(this, Packet); - break; - case PacketBuilder.PACKET_CHAT: - Server.OnChatPacket(this, Packet); - break; - case PacketBuilder.PACKET_KEEP_ALIVE: - Server.OnKeepAlive(this, Packet); - break; - case PacketBuilder.PACKET_TRANSPORT: - Server.OnTransportUsed(this, Packet); - break; - case PacketBuilder.PACKET_INVENTORY: - Server.OnInventoryRequested(this, Packet); - break; - case PacketBuilder.PACKET_ITEM_INTERACTION: - Server.OnItemInteraction(this,Packet); - break; - case PacketBuilder.PACKET_NPC: - Server.OnNpcInteraction(this, Packet); - break; - default: - Logger.ErrorPrint("Unimplemented Packet: " + BitConverter.ToString(Packet).Replace('-', ' ')); - break; - } - } - } - - public void Disconnect() - { - Logger.DebugPrint(ClientSocket.RemoteEndPoint + " has Disconnected."); - recvPackets.Abort(); - if(updateTimer != null) - updateTimer.Dispose(); - if(inactivityTimer != null) - inactivityTimer.Dispose(); - if(warnTimer != null) - warnTimer.Dispose(); - if(kickTimer != null) - kickTimer.Dispose(); - - Server.OnDisconnect(this); - LoggedIn = false; - LoggedinUser = null; - ClientSocket.Close(); - ClientSocket.Dispose(); - } - - public void Kick(string Reason) - { - byte[] kickPacket = PacketBuilder.CreateKickMessage(Reason); - SendPacket(kickPacket); - Disconnect(); - - Logger.InfoPrint("CLIENT: "+RemoteIp+" KICKED for: "+Reason); - } - - public void SendPacket(byte[] PacketData) - { - try - { - ClientSocket.Send(PacketData); - } - catch (Exception e) - { - Logger.ErrorPrint("Exception occured: " + e.Message); - Disconnect(); - } - } - - public Client(Socket clientSocket) - { - ClientSocket = clientSocket; - RemoteIp = clientSocket.RemoteEndPoint.ToString(); - - Logger.DebugPrint("Client connected @ " + RemoteIp); - - kickTimer = new Timer(new TimerCallback(kickTimerTick), null, kickInterval, kickInterval); - warnTimer = new Timer(new TimerCallback(warnTimerTick), null, warnInterval, warnInterval); - - recvPackets = new Thread(() => - { - receivePackets(); - }); - recvPackets.Start(); - } - } -} +using System; +using System.IO; +using System.Net.Sockets; +using System.Text; +using System.Threading; +using HISP.Player; +using HISP.Game; + +namespace HISP.Server +{ + class GameClient + { + public Socket ClientSocket; + public string RemoteIp; + + public bool LoggedIn = false; + public User LoggedinUser; + + private Thread recvPackets; + + private Timer updateTimer; + private Timer inactivityTimer; + + private Timer warnTimer; + private Timer kickTimer; + + + private int keepAliveInterval = 60 * 1000; + private int updateInterval = 60 * 1000; + + private int warnInterval = GameServer.IdleWarning * 60 * 1000; + private int kickInterval = GameServer.IdleTimeout * 60 * 1000; + + + private void keepAliveTimerTick(object state) + { + Logger.DebugPrint("Sending keep-alive packet to "+ LoggedinUser.Username); + byte[] updatePacket = PacketBuilder.CreateKeepAlive(); + SendPacket(updatePacket); + } + + private void warnTimerTick(object state) + { + Logger.DebugPrint("Sending inactivity warning to: " + RemoteIp); + byte[] chatPacket = PacketBuilder.CreateChat(Messages.FormatIdleWarningMessage(), PacketBuilder.CHAT_BOTTOM_RIGHT); + SendPacket(chatPacket); + } + + private void kickTimerTick(object state) + { + Kick(Messages.FormatIdleKickMessage()); + } + private void updateTimerTick(object state) + { + GameServer.UpdateWorld(this); + GameServer.UpdatePlayer(this); + } + public void Login(int id) + { + LoggedinUser = new User(this,id); + LoggedIn = true; + + updateTimer = new Timer(new TimerCallback(updateTimerTick), null, updateInterval, updateInterval); + inactivityTimer = new Timer(new TimerCallback(keepAliveTimerTick), null, keepAliveInterval, keepAliveInterval); + } + private void receivePackets() + { + // HI1 Packets are terminates by 0x00 so we have to read until we receive that terminator + MemoryStream ms = new MemoryStream(); + + while(ClientSocket.Connected) + { + try + { + if (ClientSocket.Available >= 1) + { + byte[] buffer = new byte[ClientSocket.Available]; + ClientSocket.Receive(buffer); + + + foreach (Byte b in buffer) + { + ms.WriteByte(b); + if (b == 0x00) + { + ms.Seek(0x00, SeekOrigin.Begin); + byte[] fullPacket = ms.ToArray(); + parsePackets(fullPacket); + + ms.Close(); + ms = new MemoryStream(); + } + } + + } + } + catch(SocketException e) + { + Logger.ErrorPrint("Socket exception occured: " + e.Message); + Disconnect(); + break; + } + + } + + + } + + private void parsePackets(byte[] Packet) + { + if (Packet.Length < 1) + { + Logger.ErrorPrint("Received an invalid packet (size: "+Packet.Length+")"); + } + byte identifier = Packet[0]; + + // Reset timers + if (inactivityTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE) + inactivityTimer.Change(keepAliveInterval, keepAliveInterval); + + + if (kickTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE) + kickTimer.Change(kickInterval, kickInterval); + + if (warnTimer != null && identifier != PacketBuilder.PACKET_KEEP_ALIVE) + warnTimer.Change(warnInterval, warnInterval); + + if (!LoggedIn) // Must be either login or policy-file-request + { + if (Encoding.UTF8.GetString(Packet).StartsWith("")) // Policy File Request + { + GameServer.OnCrossdomainPolicyRequest(this); + } + switch (identifier) + { + case PacketBuilder.PACKET_LOGIN: + GameServer.OnLoginRequest(this, Packet); + break; + } + } + else + { + switch (identifier) + { + case PacketBuilder.PACKET_LOGIN: + GameServer.OnUserInfoRequest(this, Packet); + break; + case PacketBuilder.PACKET_MOVE: + GameServer.OnMovementPacket(this, Packet); + break; + case PacketBuilder.PACKET_PROFILE: + GameServer.OnProfilePacket(this, Packet); + break; + case PacketBuilder.PACKET_CHAT: + GameServer.OnChatPacket(this, Packet); + break; + case PacketBuilder.PACKET_KEEP_ALIVE: + GameServer.OnKeepAlive(this, Packet); + break; + case PacketBuilder.PACKET_TRANSPORT: + GameServer.OnTransportUsed(this, Packet); + break; + case PacketBuilder.PACKET_INVENTORY: + GameServer.OnInventoryRequested(this, Packet); + break; + case PacketBuilder.PACKET_ITEM_INTERACTION: + GameServer.OnItemInteraction(this,Packet); + break; + case PacketBuilder.PACKET_NPC: + GameServer.OnNpcInteraction(this, Packet); + break; + default: + Logger.ErrorPrint("Unimplemented Packet: " + BitConverter.ToString(Packet).Replace('-', ' ')); + break; + } + } + } + + public void Disconnect() + { + Logger.DebugPrint(ClientSocket.RemoteEndPoint + " has Disconnected."); + recvPackets.Abort(); + if(updateTimer != null) + updateTimer.Dispose(); + if(inactivityTimer != null) + inactivityTimer.Dispose(); + if(warnTimer != null) + warnTimer.Dispose(); + if(kickTimer != null) + kickTimer.Dispose(); + + GameServer.OnDisconnect(this); + LoggedIn = false; + LoggedinUser = null; + ClientSocket.Close(); + ClientSocket.Dispose(); + } + + public void Kick(string Reason) + { + byte[] kickPacket = PacketBuilder.CreateKickMessage(Reason); + SendPacket(kickPacket); + Disconnect(); + + Logger.InfoPrint("CLIENT: "+RemoteIp+" KICKED for: "+Reason); + } + + public void SendPacket(byte[] PacketData) + { + try + { + ClientSocket.Send(PacketData); + } + catch (Exception e) + { + Logger.ErrorPrint("Exception occured: " + e.Message); + Disconnect(); + } + } + + public GameClient(Socket clientSocket) + { + ClientSocket = clientSocket; + RemoteIp = clientSocket.RemoteEndPoint.ToString(); + + Logger.DebugPrint("Client connected @ " + RemoteIp); + + kickTimer = new Timer(new TimerCallback(kickTimerTick), null, kickInterval, kickInterval); + warnTimer = new Timer(new TimerCallback(warnTimerTick), null, warnInterval, warnInterval); + + recvPackets = new Thread(() => + { + receivePackets(); + }); + recvPackets.Start(); + } + } +} diff --git a/Horse Isle Server/Horse Isle Server/Server.cs b/Horse Isle Server/Horse Isle Server/Server/GameServer.cs similarity index 86% rename from Horse Isle Server/Horse Isle Server/Server.cs rename to Horse Isle Server/Horse Isle Server/Server/GameServer.cs index f6a45b5..ff8fd03 100644 --- a/Horse Isle Server/Horse Isle Server/Server.cs +++ b/Horse Isle Server/Horse Isle Server/Server/GameServer.cs @@ -1,985 +1,1020 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Net; -using System.Net.Sockets; -using System.Text; -using System.Threading; -using System.Threading.Tasks; - -namespace Horse_Isle_Server -{ - class Server - { - - public static Socket ServerSocket; - private static Timer serverTimer; - - public static Client[] ConnectedClients // Done to prevent Enumerator Changed errors. - { - get { - return connectedClients.ToArray(); - } - } - - public static int IdleTimeout; - public static int IdleWarning; - - public static Random RandomNumberGenerator = new Random(); - - // used for world time, - private static int gameTickSpeed = 4320; // Changing this to ANYTHING else will cause desync with the client. - - private static List connectedClients = new List(); - public static void OnCrossdomainPolicyRequest(Client sender) // When a cross-domain-policy request is received. - { - Logger.DebugPrint("Cross-Domain-Policy request received from: " + sender.RemoteIp); - - byte[] crossDomainPolicyResponse = CrossDomainPolicy.GetPolicy(); // Generate response packet - - sender.SendPacket(crossDomainPolicyResponse); // Send to client. - } - - public static void OnUserInfoRequest(Client sender, byte[] packet) - { - if (!sender.LoggedIn) - { - Logger.ErrorPrint(sender.RemoteIp + " Requested user information when not logged in."); - return; - } - Logger.DebugPrint(sender.LoggedinUser.Username + " Requested user information."); - - User user = sender.LoggedinUser; - - byte[] MovementPacket = PacketBuilder.CreateMovementPacket(user.X, user.Y, user.CharacterId, user.Facing, PacketBuilder.DIRECTION_TELEPORT, true); - sender.SendPacket(MovementPacket); - - byte[] WelcomeMessage = PacketBuilder.CreateWelcomeMessage(user.Username); - sender.SendPacket(WelcomeMessage); - - byte[] WorldData = PacketBuilder.CreateWorldData(World.ServerTime.Minutes, World.ServerTime.Days, World.ServerTime.Years, World.GetWeather()); - sender.SendPacket(WorldData); - - byte[] SecCodePacket = PacketBuilder.CreateSecCode(user.SecCodeSeeds, user.SecCodeInc, user.Administrator, user.Moderator); - sender.SendPacket(SecCodePacket); - - byte[] BaseStatsPacketData = PacketBuilder.CreatePlayerData(user.Money, Server.GetNumberOfPlayers(), user.MailBox.MailCount); - sender.SendPacket(BaseStatsPacketData); - - UpdateArea(sender); - - foreach (Client client in ConnectedClients) - { - if (client.LoggedIn) - { - if (client.LoggedinUser.Id != user.Id) - { - byte[] PlayerInfo = PacketBuilder.CreatePlayerInfoUpdateOrCreate(client.LoggedinUser.X, client.LoggedinUser.Y, client.LoggedinUser.Facing, client.LoggedinUser.CharacterId, client.LoggedinUser.Username); - sender.SendPacket(PlayerInfo); - } - } - } - - foreach (User nearbyUser in Server.GetNearbyUsers(sender.LoggedinUser.X, sender.LoggedinUser.Y, false, false)) - if (nearbyUser.Id != sender.LoggedinUser.Id) - UpdateArea(nearbyUser.LoggedinClient); - - byte[] IsleData = PacketBuilder.CreatePlaceData(World.Isles.ToArray(), World.Towns.ToArray(), World.Areas.ToArray()); - sender.SendPacket(IsleData); - - byte[] TileFlags = PacketBuilder.CreateTileOverlayFlags(Map.OverlayTileDepth); - sender.SendPacket(TileFlags); - - byte[] MotdData = PacketBuilder.CreateMotd(); - sender.SendPacket(MotdData); - - - } - - public static void OnKeepAlive(Client sender, byte[] packet) - { - if (!sender.LoggedIn) - { - Logger.ErrorPrint(sender.RemoteIp + " Requested update when not logged in."); - return; - } - if (packet.Length < 2) - { - Logger.ErrorPrint(sender.LoggedinUser.Username + " Sent an invalid update Packet"); - return; - } - - if (packet[1] == PacketBuilder.PACKET_CLIENT_TERMINATOR) - { - Logger.DebugPrint("Sending " + sender.LoggedinUser.Username + " updated info..."); - UpdatePlayer(sender); - } - } - public static void OnProfilePacket(Client sender, byte[] packet) - { - if (!sender.LoggedIn) - { - Logger.ErrorPrint(sender.RemoteIp + " Requested to change profile page when not logged in."); - return; - } - if (packet.Length < 2) - { - Logger.ErrorPrint(sender.LoggedinUser.Username + " Sent an invalid Profile Packet"); - return; - } - - byte method = packet[1]; - if (method == PacketBuilder.VIEW_PROFILE) - { - byte[] profilePacket = PacketBuilder.CreateProfilePacket(sender.LoggedinUser.ProfilePage); - sender.SendPacket(profilePacket); - } - else if (method == PacketBuilder.SAVE_PROFILE) - { - - string packetStr = Encoding.UTF8.GetString(packet); - if (packet.Length < 3 || !packetStr.Contains('|')) - { - Logger.ErrorPrint(sender.LoggedinUser.Username + " Sent an invalid Profile SAVE Packet"); - return; - } - - int characterId = (packet[2] - 20) * 64 + (packet[3] - 20); - - string profilePage = packetStr.Split('|')[1]; - profilePage = profilePage.Substring(0, profilePage.Length - 2); - - sender.LoggedinUser.CharacterId = characterId; - sender.LoggedinUser.ProfilePage = profilePage; - - Logger.DebugPrint(sender.LoggedinUser.Username + " Changed to character id: " + characterId + " and set there Profile Description to '" + profilePage + "'"); - - byte[] chatPacket = PacketBuilder.CreateChat(Messages.ProfileSavedMessage, PacketBuilder.CHAT_BOTTOM_RIGHT); - sender.SendPacket(chatPacket); - - UpdateArea(sender); - UpdateUserInfo(sender.LoggedinUser); - } - - } - - public static void OnMovementPacket(Client sender, byte[] packet) - { - if (!sender.LoggedIn) - { - Logger.ErrorPrint(sender.RemoteIp + " Sent movement packet when not logged in."); - return; - } - - User loggedInUser = sender.LoggedinUser; - byte movementDirection = packet[1]; - - if (movementDirection == PacketBuilder.MOVE_ESCAPE) - { - - byte Direction; - if (World.InSpecialTile(loggedInUser.X, loggedInUser.Y)) - { - - int newX = loggedInUser.X; - int newY = loggedInUser.Y; - - World.SpecialTile tile = World.GetSpecialTile(loggedInUser.X, loggedInUser.Y); - if (tile.ExitX != 0) - newX = tile.ExitX; - if (tile.ExitY != 0) - newY = tile.ExitY; - else - if (Map.CheckPassable(loggedInUser.X, loggedInUser.Y + 1)) - newY += 1; - - - - if (loggedInUser.X + 1 == newX && loggedInUser.Y == newY) - Direction = PacketBuilder.DIRECTION_RIGHT; - else if (loggedInUser.X - 1 == newX && loggedInUser.Y == newY) - Direction = PacketBuilder.DIRECTION_LEFT; - else if (loggedInUser.Y + 1 == newY && loggedInUser.X == newX) - Direction = PacketBuilder.DIRECTION_DOWN; - else if (loggedInUser.Y - 1 == newY && loggedInUser.X == newX) - Direction = PacketBuilder.DIRECTION_UP; - else - Direction = PacketBuilder.DIRECTION_TELEPORT; - - loggedInUser.X = newX; - loggedInUser.Y = newY; - - - } - else - { - if (Map.CheckPassable(loggedInUser.X, loggedInUser.Y + 1)) - loggedInUser.Y += 1; - - Direction = PacketBuilder.DIRECTION_DOWN; - } - if (loggedInUser.X == 0 && loggedInUser.Y == 0) - Logger.ErrorPrint("Impossible bug occured."); - Logger.DebugPrint("Exiting player: " + loggedInUser.Username + " to: " + loggedInUser.X + "," + loggedInUser.Y); - byte[] moveResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, Direction, Direction, true); - sender.SendPacket(moveResponse); - } - - if (movementDirection == PacketBuilder.MOVE_UP) - { - loggedInUser.Facing = PacketBuilder.DIRECTION_UP; - if (Map.CheckPassable(loggedInUser.X, loggedInUser.Y - 1)) - { - loggedInUser.Y -= 1; - - byte[] moveUpResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, sender.LoggedinUser.Facing, PacketBuilder.DIRECTION_UP, true); - sender.SendPacket(moveUpResponse); - } - else - { - byte[] moveUpResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, sender.LoggedinUser.Facing, PacketBuilder.DIRECTION_NONE, false); - sender.SendPacket(moveUpResponse); - } - } - else if (movementDirection == PacketBuilder.MOVE_LEFT) - { - loggedInUser.Facing = PacketBuilder.DIRECTION_LEFT; - if (Map.CheckPassable(loggedInUser.X - 1, loggedInUser.Y)) - { - loggedInUser.X -= 1; - byte[] moveLeftResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, loggedInUser.Facing, PacketBuilder.DIRECTION_LEFT, true); - sender.SendPacket(moveLeftResponse); - } - else - { - byte[] moveLeftResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, loggedInUser.Facing, PacketBuilder.DIRECTION_NONE, false); - sender.SendPacket(moveLeftResponse); - } - } - else if (movementDirection == PacketBuilder.MOVE_RIGHT) - { - loggedInUser.Facing = PacketBuilder.DIRECTION_RIGHT; - if (Map.CheckPassable(loggedInUser.X + 1, loggedInUser.Y)) - { - loggedInUser.X += 1; - byte[] moveLeftResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, loggedInUser.Facing, PacketBuilder.DIRECTION_RIGHT, true); - sender.SendPacket(moveLeftResponse); - } - else - { - byte[] moveLeftResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, loggedInUser.Facing, PacketBuilder.DIRECTION_NONE, false); - sender.SendPacket(moveLeftResponse); - } - } - else if (movementDirection == PacketBuilder.MOVE_DOWN) - { - loggedInUser.Facing = PacketBuilder.DIRECTION_DOWN; - if (Map.CheckPassable(loggedInUser.X, loggedInUser.Y + 1)) - { - loggedInUser.Y += 1; - byte[] moveDownResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, loggedInUser.Facing, PacketBuilder.DIRECTION_DOWN, true); - sender.SendPacket(moveDownResponse); - } - else - { - byte[] moveDownResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, loggedInUser.Facing, PacketBuilder.DIRECTION_NONE, false); - sender.SendPacket(moveDownResponse); - } - - } - else if(movementDirection == PacketBuilder.MOVE_UPDATE) - { - Update(sender, true); - return; - } - - - Update(sender); - } - public static void OnNpcInteraction(Client sender, byte[] packet) - { - if (!sender.LoggedIn) - { - Logger.ErrorPrint(sender.RemoteIp + " Sent npc interaction packet when not logged in."); - return; - } - if (packet.Length < 3) - { - Logger.ErrorPrint(sender.RemoteIp + " Sent an invalid npc interaction packet."); - return; - } - byte action = packet[1]; - if (action == PacketBuilder.NPC_START_CHAT) - { - - string packetStr = Encoding.UTF8.GetString(packet); - string number = packetStr.Substring(2, packetStr.Length - 4); - int chatId = 0; - try - { - chatId = int.Parse(number); - } - catch (InvalidOperationException) - { - Logger.ErrorPrint(sender.LoggedinUser.Username + " Tried to start talking to an NPC with id that is NaN."); - return; - } - - Npc.NpcEntry entry = Npc.GetNpcById(chatId); - string metaInfo = Meta.BuildChatpoint(entry, entry.Chatpoints[0]); - byte[] metaPacket = PacketBuilder.CreateMetaPacket(metaInfo); - sender.SendPacket(metaPacket); - - sender.LoggedinUser.LastTalkedToNpc = entry; - } - else if (action == PacketBuilder.NPC_CONTINUE_CHAT) - { - string packetStr = Encoding.UTF8.GetString(packet); - string number = packetStr.Substring(2, packetStr.Length - 4); - int replyId = 0; - try - { - replyId = int.Parse(number); - } - catch (InvalidOperationException) - { - Logger.ErrorPrint(sender.LoggedinUser.Username + " Tried to reply to an NPC with replyid that is NaN."); - return; - } - - Npc.NpcEntry lastNpc = sender.LoggedinUser.LastTalkedToNpc; - Npc.NpcReply reply; - try - { - reply = Npc.GetNpcReply(lastNpc, replyId); - } - catch(KeyNotFoundException) - { - Logger.ErrorPrint(sender.LoggedinUser.Username + " Tried to reply with replyid that does not exist."); - return; - } - - if (reply.GotoChatpoint == -1) - { - UpdateArea(sender,true); - return; - } - - string metaInfo = Meta.BuildChatpoint(npc,Npc.GetNpcChatpoint(lastNpc, reply.GotoChatpoint)); - byte[] metaPacket = PacketBuilder.CreateMetaPacket(metaInfo); - sender.SendPacket(metaPacket); - return; - - - - } - } - public static void OnTransportUsed(Client sender, byte[] packet) - { - if (!sender.LoggedIn) - { - Logger.ErrorPrint(sender.RemoteIp + " Sent transport packet when not logged in."); - return; - } - if (packet.Length < 3) - { - Logger.ErrorPrint(sender.RemoteIp + " Sent an invalid transport packet."); - return; - } - - - string packetStr = Encoding.UTF8.GetString(packet); - string number = packetStr.Substring(1, packetStr.Length - 3); - - int transportid; - try - { - transportid = Int32.Parse(number); - } - catch(InvalidOperationException) - { - Logger.ErrorPrint(sender.LoggedinUser.Username + " Tried to use a transport with id that is NaN."); - return; - } - try - { - Transport.TransportPoint transportPoint = Transport.GetTransportPoint(sender.LoggedinUser.X, sender.LoggedinUser.Y); - if (transportPoint.X != sender.LoggedinUser.X && transportPoint.Y != sender.LoggedinUser.Y) - { - Logger.HackerPrint(sender.LoggedinUser.Username + " Tried to use transport id: " + transportid.ToString() + " while not the correct transport point!"); - return; - } - - Transport.TransportLocation transportLocation = Transport.GetTransportLocation(transportid); - - - if (sender.LoggedinUser.Money >= transportLocation.Cost) - { - - - string swfToLoad = Messages.BoatCutscene; - if (transportLocation.Type == "WAGON") - swfToLoad = Messages.WagonCutscene; - - if (transportLocation.Type != "ROWBOAT") - { - byte[] swfModulePacket = PacketBuilder.CreateSwfModulePacket(swfToLoad, PacketBuilder.PACKET_SWF_CUTSCENE); - sender.SendPacket(swfModulePacket); - } - - Teleport(sender, transportLocation.GotoX, transportLocation.GotoY); - - byte[] welcomeToIslePacket = PacketBuilder.CreateChat(Messages.FormatWelcomeToAreaMessage(transportLocation.LocationTitle), PacketBuilder.CHAT_BOTTOM_RIGHT); - sender.SendPacket(welcomeToIslePacket); - - sender.LoggedinUser.Money -= transportLocation.Cost; - } - else - { - byte[] cantAfford = PacketBuilder.CreateChat(Messages.FormatWelcomeToAreaMessage(transportLocation.LocationTitle), PacketBuilder.CHAT_BOTTOM_RIGHT); - sender.SendPacket(cantAfford); - } - } - catch (KeyNotFoundException) - { - Logger.HackerPrint(sender.LoggedinUser.Username + " Tried to use transport id: " + transportid.ToString() + " while not on a transport point!"); - } - - - } - public static void OnChatPacket(Client sender, byte[] packet) - { - if (!sender.LoggedIn) - { - Logger.ErrorPrint(sender.RemoteIp + " Sent chat packet when not logged in."); - return; - } - - if (packet.Length < 4) - { - Logger.ErrorPrint(sender.RemoteIp + " Sent an invalid chat packet."); - return; - } - - - string packetStr = Encoding.UTF8.GetString(packet); - - Chat.ChatChannel channel = (Chat.ChatChannel)packet[1]; - string message = packetStr.Substring(2, packetStr.Length - 4); - - - Logger.DebugPrint(sender.LoggedinUser.Username + " Attempting to say '" + message + "' in channel: " + channel.ToString()); - - string nameTo = null; - if (channel == Chat.ChatChannel.Dm) - { - nameTo = Chat.GetDmRecipiant(message); - message = Chat.GetDmMessage(message); - } - - if (message == "") - return; - - Object violationReason = Chat.FilterMessage(message); - if (violationReason != null) - { - sender.LoggedinUser.ChatViolations += 1; - string chatViolationMessage = Messages.FormatGlobalChatViolationMessage((Chat.Reason)violationReason); - byte[] chatViolationPacket = PacketBuilder.CreateChat(chatViolationMessage, PacketBuilder.CHAT_BOTTOM_RIGHT); - sender.SendPacket(chatViolationPacket); - return; - } - - byte chatSide = Chat.GetSide(channel); - message = Chat.DoCorrections(message); - message = Chat.EscapeMessage(message); - - - string failedReason = Chat.NonViolationChecks(sender.LoggedinUser, message); - if (failedReason != null) - { - byte[] failedMessage = PacketBuilder.CreateChat(failedReason, PacketBuilder.CHAT_BOTTOM_RIGHT); - sender.SendPacket(failedMessage); - return; - } - - Client[] recipiants = Chat.GetRecipiants(sender.LoggedinUser, channel, nameTo); - - // Finally send chat message. - string formattedMessage = Chat.FormatChatForOthers(sender.LoggedinUser, channel, message); - string formattedMessageSender = Chat.FormatChatForSender(sender.LoggedinUser, channel, message, nameTo); - byte[] chatPacketOthers = PacketBuilder.CreateChat(formattedMessage, chatSide); - byte[] chatPacketSender = PacketBuilder.CreateChat(formattedMessageSender, chatSide); - byte[] playDmSound = PacketBuilder.CreatePlaysoundPacket(Chat.PrivateMessageSound); - // Send to clients ... - foreach (Client recipiant in recipiants) - { - recipiant.SendPacket(chatPacketOthers); - if (channel == Chat.ChatChannel.Dm) - recipiant.SendPacket(playDmSound); - } - - // Send to sender - sender.SendPacket(chatPacketSender); - } - - public static void OnItemInteraction(Client sender, byte[] packet) - { - if (!sender.LoggedIn) - { - Logger.ErrorPrint(sender.RemoteIp + " Sent object interaction packet when not logged in."); - return; - } - if (packet.Length < 3) - { - Logger.ErrorPrint(sender.LoggedinUser.Username + " Sent an invalid object interaction packet."); - return; - } - - byte action = packet[1]; - switch(action) - { - case PacketBuilder.ITEM_PICKUP: - string packetStr = Encoding.UTF8.GetString(packet); - string randomIdStr = packetStr.Substring(2, packet.Length - 2); - int randomId = 0; - - try - { - randomId = Int32.Parse(randomIdStr); - } - catch(InvalidOperationException) - { - Logger.ErrorPrint(sender.LoggedinUser.Username + " Sent an invalid object interaction packet."); - return; - } - - try - { - DroppedItems.DroppedItem item = DroppedItems.GetDroppedItemById(randomId); - sender.LoggedinUser.Inventory.Add(item.instance); - DroppedItems.RemoveDroppedItem(item); - - UpdateAreaForAll(sender.LoggedinUser.X, sender.LoggedinUser.Y); - - byte[] chatMessage = PacketBuilder.CreateChat(Messages.GrabbedItemMessage, PacketBuilder.CHAT_BOTTOM_RIGHT); - sender.SendPacket(chatMessage); - } - catch(KeyNotFoundException) - { - Logger.HackerPrint(sender.LoggedinUser.Username + " Tried to grab a non existing object."); - return; - } - - break; - case PacketBuilder.ITEM_DROP: - packetStr = Encoding.UTF8.GetString(packet); - randomIdStr = packetStr.Substring(2, packet.Length - 2); - randomId = 0; - - try - { - randomId = Int32.Parse(randomIdStr); - } - catch (InvalidOperationException) - { - Logger.ErrorPrint(sender.LoggedinUser.Username + " Sent an invalid object interaction packet."); - return; - } - - if(sender.LoggedinUser.Inventory.HasItem(randomId)) - { - InventoryItem itm = sender.LoggedinUser.Inventory.GetItemByRandomid(randomId); - ItemInstance instance = itm.ItemInstances[0]; - DroppedItems.AddItem(instance, sender.LoggedinUser.X, sender.LoggedinUser.Y); - sender.LoggedinUser.Inventory.Remove(instance); - byte[] chatPacket = PacketBuilder.CreateChat(Messages.DroppedAnItemMessage, PacketBuilder.CHAT_BOTTOM_RIGHT); - sender.SendPacket(chatPacket); - UpdateInventory(sender); - } - else - { - Logger.HackerPrint(sender.LoggedinUser.Username + " Tried to drop an item they did not have."); - } - break; - - default: - Logger.WarnPrint(sender.LoggedinUser.Username + " Sent an unknown Item Interaction Packet type: " + action.ToString() + ", Packet Dump: " + BitConverter.ToString(packet).Replace('-', ' ')); - break; - } - - } - - public static void OnInventoryRequested(Client sender, byte[] packet) - { - if (!sender.LoggedIn) - { - Logger.ErrorPrint(sender.RemoteIp + " Sent chat packet when not logged in."); - return; - } - - if (packet.Length < 2) - { - Logger.ErrorPrint(sender.RemoteIp + " Sent an invalid inventory request packet."); - return; - } - - UpdateInventory(sender); - } - public static void OnLoginRequest(Client sender, byte[] packet) - { - Logger.DebugPrint("Login request received from: " + sender.RemoteIp); - - string loginRequestString = Encoding.UTF8.GetString(packet).Substring(1); - - if (!loginRequestString.Contains('|') || packet.Length < 3) - { - Logger.ErrorPrint(sender.RemoteIp + " Sent an invalid login request"); - return; - } - - if (packet[1] != PacketBuilder.PACKET_CLIENT_TERMINATOR) - { - string[] loginParts = loginRequestString.Split('|'); - if (loginParts.Length < 3) - { - Logger.ErrorPrint(sender.RemoteIp + " Sent a login request of invalid length. " + loginRequestString); - return; - } - - int version = int.Parse(loginParts[0]); - string encryptedUsername = loginParts[1]; - string encryptedPassword = loginParts[2]; - string username = Authentication.DecryptLogin(encryptedUsername); - string password = Authentication.DecryptLogin(encryptedPassword); - - if (Authentication.CheckPassword(username, password)) - { - // Obtain user information - int userId = Database.GetUserid(username); - sender.Login(userId); - sender.LoggedinUser.Password = password; - - byte[] ResponsePacket = PacketBuilder.CreateLoginPacket(true); - sender.SendPacket(ResponsePacket); - - Logger.DebugPrint(sender.RemoteIp + " Logged into : " + sender.LoggedinUser.Username + " (ADMIN: " + sender.LoggedinUser.Administrator + " MOD: " + sender.LoggedinUser.Moderator + ")"); - - // Send login message - byte[] loginMessageBytes = PacketBuilder.CreateChat(Messages.FormatLoginMessage(sender.LoggedinUser.Username), PacketBuilder.CHAT_BOTTOM_LEFT); - foreach (Client client in ConnectedClients) - if (client.LoggedIn) - if (!client.LoggedinUser.MuteLogins) - if (client.LoggedinUser.Id != userId) - client.SendPacket(loginMessageBytes); - - UpdateUserInfo(sender.LoggedinUser); - - } - else - { - Logger.WarnPrint(sender.RemoteIp + " Attempted to login to: " + username + " with incorrect password " + password); - byte[] ResponsePacket = PacketBuilder.CreateLoginPacket(false); - sender.SendPacket(ResponsePacket); - } - } - - } - - - - public static void OnDisconnect(Client sender) - { - connectedClients.Remove(sender); - - if (sender.LoggedIn) - { - // Send disconnect message - byte[] logoutMessageBytes = PacketBuilder.CreateChat(Messages.FormatLogoutMessage(sender.LoggedinUser.Username), PacketBuilder.CHAT_BOTTOM_LEFT); - foreach (Client client in ConnectedClients) - if (client.LoggedIn) - if (!client.LoggedinUser.MuteLogins) - if (client.LoggedinUser.Id != sender.LoggedinUser.Id) - client.SendPacket(logoutMessageBytes); - // Tell clients of diconnect (remove from chat) - byte[] playerRemovePacket = PacketBuilder.CreatePlayerLeavePacket(sender.LoggedinUser.Username); - foreach (Client client in ConnectedClients) - if (client.LoggedIn) - if (client.LoggedinUser.Id != sender.LoggedinUser.Id) - client.SendPacket(playerRemovePacket); - } - - } - - - public static User[] GetUsersUsersInIsle(World.Isle isle, bool includeStealth = false, bool includeMuted = false) - { - List usersInIsle = new List(); - foreach (Client client in ConnectedClients) - if (client.LoggedIn) - { - if (!includeStealth && client.LoggedinUser.Stealth) - continue; - if (!includeMuted && client.LoggedinUser.MuteIsland) - continue; - if (World.InIsle(client.LoggedinUser.X, client.LoggedinUser.Y)) - if (World.GetIsle(client.LoggedinUser.X, client.LoggedinUser.Y).Name == isle.Name) - usersInIsle.Add(client.LoggedinUser); - } - - return usersInIsle.ToArray(); - } - - public static User[] GetUsersAt(int x, int y, bool includeStealth = false, bool includeMuted = false) - { - List usersHere = new List(); - foreach(Client client in ConnectedClients) - { - if(client.LoggedIn) - { - if (!includeStealth && client.LoggedinUser.Stealth) - continue; - if (!includeMuted && client.LoggedinUser.MuteNear) - continue; - if (client.LoggedinUser.X == x && client.LoggedinUser.Y == y) - usersHere.Add(client.LoggedinUser); - } - } - return usersHere.ToArray(); - } - - public static User[] GetNearbyUsers(int x, int y, bool includeStealth=false, bool includeMuted=false) - { - int startX = x - 15; - int endX = x + 15; - int startY = y - 19; - int endY = y + 19; - List usersNearby = new List(); - - foreach (Client client in ConnectedClients) - if (client.LoggedIn) - { - if (!includeStealth && client.LoggedinUser.Stealth) - continue; - if (!includeMuted && client.LoggedinUser.MuteNear) - continue; - if (startX <= client.LoggedinUser.X && endX >= client.LoggedinUser.X && startY <= client.LoggedinUser.Y && endY >= client.LoggedinUser.Y) - usersNearby.Add(client.LoggedinUser); - } - - return usersNearby.ToArray(); - } - - public static int GetNumberOfPlayers(bool includeStealth=false) - { - int count = 0; - foreach(Client client in ConnectedClients) - if (client.LoggedIn) - { - if (!includeStealth && client.LoggedinUser.Stealth) - continue; - if (!client.LoggedinUser.Stealth) - count++; - } - - return count; - } - - public static int GetNumberOfModsOnline() - { - int count = 0; - foreach (Client client in ConnectedClients) - { - if (client.LoggedIn) - if(client.LoggedinUser.Moderator) - count++; - } - return count; - } - - public static void Teleport(Client client, int newX, int newY) - { - if (!client.LoggedIn) - return; - Logger.DebugPrint("Teleporting: " + client.LoggedinUser.Username + " to: " + newX.ToString() + "," + newY.ToString()); - - client.LoggedinUser.X = newX; - client.LoggedinUser.Y = newY; - - byte[] MovementPacket = PacketBuilder.CreateMovementPacket(client.LoggedinUser.X, client.LoggedinUser.Y, client.LoggedinUser.CharacterId, client.LoggedinUser.Facing, PacketBuilder.DIRECTION_TELEPORT, true); - client.SendPacket(MovementPacket); - Update(client); - - } - public static void Update(Client client, bool justArea = false) - { - UpdateArea(client, justArea); - foreach (User nearbyUser in Server.GetNearbyUsers(client.LoggedinUser.X, client.LoggedinUser.Y, false, false)) - if (nearbyUser.Id != client.LoggedinUser.Id) - UpdateArea(nearbyUser.LoggedinClient, justArea); - - UpdateUserInfo(client.LoggedinUser); - } - - public static void UpdateInventory(Client forClient) - { - if (!forClient.LoggedIn) - return; - byte[] metaPacket = PacketBuilder.CreateMetaPacket(Meta.BuildInventoryInfo(forClient.LoggedinUser.Inventory)); - forClient.SendPacket(metaPacket); - } - public static void UpdateWorld(Client forClient) - { - if (!forClient.LoggedIn) - { - Logger.ErrorPrint(forClient.RemoteIp + "tried to update world information when not logged in."); - return; - } - - byte[] WorldData = PacketBuilder.CreateWorldData(World.ServerTime.Minutes, World.ServerTime.Days, World.ServerTime.Years, World.GetWeather()); - forClient.SendPacket(WorldData); - } - - public static void UpdatePlayer(Client forClient) - { - if (!forClient.LoggedIn) - { - Logger.ErrorPrint(forClient.RemoteIp + "tried to update player information when not logged in."); - return; - } - byte[] PlayerData = PacketBuilder.CreatePlayerData(forClient.LoggedinUser.Money, Server.GetNumberOfPlayers(), forClient.LoggedinUser.MailBox.MailCount); - forClient.SendPacket(PlayerData); - } - - public static void UpdateUserInfo(User user) - { - byte[] playerInfoBytes = PacketBuilder.CreatePlayerInfoUpdateOrCreate(user.X, user.Y, user.Facing, user.CharacterId, user.Username); - - - - List users = new List(); - foreach (Client client in ConnectedClients) - if (client.LoggedIn) - { - if (client.LoggedinUser.Id != user.Id) - client.SendPacket(playerInfoBytes); - } - - - } - - public static void UpdateAreaForAll(int x, int y) - { - foreach(Client client in ConnectedClients) - { - if (client.LoggedIn) - if (client.LoggedinUser.X == x && client.LoggedinUser.Y == y) - UpdateArea(client, true); - } - } - public static void UpdateArea(Client forClient, bool justArea = false) - { - if (!forClient.LoggedIn) - { - Logger.ErrorPrint(forClient.RemoteIp + "tried to update tile information when not logged in."); - return; - } - - string LocationStr = ""; - if (!World.InSpecialTile(forClient.LoggedinUser.X, forClient.LoggedinUser.Y)) - { - LocationStr = Meta.BuildMetaInfo(forClient.LoggedinUser.X, forClient.LoggedinUser.Y); - } - else - { - World.SpecialTile specialTile = World.GetSpecialTile(forClient.LoggedinUser.X, forClient.LoggedinUser.Y); - if (specialTile.AutoplaySwf != null && specialTile.AutoplaySwf != "" && !justArea) - { - byte[] swfModulePacket = PacketBuilder.CreateSwfModulePacket(specialTile.AutoplaySwf,PacketBuilder.PACKET_SWF_MODULE_GENTLE); - forClient.SendPacket(swfModulePacket); - } - if (specialTile.Code != null && !justArea) - if (!ProcessMapCodeWithArg(forClient, specialTile.Code)) - return; - LocationStr = Meta.BuildSpecialTileInfo(specialTile); - } - byte[] AreaMessage = PacketBuilder.CreateMetaPacket(LocationStr); - forClient.SendPacket(AreaMessage); - - } - - public static bool ProcessMapCodeWithArg(Client forClient, string mapCode) - { - if(mapCode.Contains('-')) - { - string[] codeInfo = mapCode.Split('-'); - string command = codeInfo[0]; - string paramaters = codeInfo[1]; - - if(command == "JUMP") - { - if(paramaters.Contains(',')) - { - string[] args = paramaters.Split(','); - try - { - int newX = int.Parse(args[0]); - int newY = int.Parse(args[1]); - Teleport(forClient, newX, newY); - return false; - } - catch(Exception) - { - return true; - } - } - } - } - return true; - } - - - public static int GetNumberOfAdminsOnline() - { - int count = 0; - foreach (Client client in ConnectedClients) - { - if (client.LoggedIn) - if (client.LoggedinUser.Administrator) - count++; - } - return count; - } - - private static void onTick(object state) - { - World.TickWorldClock(); - - if(World.ServerTime.Minutes % 20 == 0) - { - DroppedItems.Update(); - } - } - public static void StartServer() - { - ServerSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); - IPAddress hostIP = IPAddress.Parse(ConfigReader.BindIP); - IPEndPoint ep = new IPEndPoint(hostIP, ConfigReader.Port); - ServerSocket.Bind(ep); - Logger.DebugPrint("Binding to ip: " + ConfigReader.BindIP + " On port: " + ConfigReader.Port.ToString()); - ServerSocket.Listen(10000); - - serverTimer = new Timer(new TimerCallback(onTick), null, gameTickSpeed, gameTickSpeed); - - while (true) - { - Logger.DebugPrint("Waiting for new connections..."); - - Socket cientSocket = ServerSocket.Accept(); - Client client = new Client(cientSocket); - connectedClients.Add(client); - } - } - } -} +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Net.Sockets; +using System.Text; +using System.Threading; +using HISP.Player; +using HISP.Game; +using HISP.Security; + +namespace HISP.Server +{ + class GameServer + { + + public static Socket ServerSocket; + private static Timer serverTimer; + + public static GameClient[] ConnectedClients // Done to prevent Enumerator Changed errors. + { + get { + return connectedClients.ToArray(); + } + } + + public static int IdleTimeout; + public static int IdleWarning; + + public static Random RandomNumberGenerator = new Random(); + + // used for world time, + private static int gameTickSpeed = 4320; // Changing this to ANYTHING else will cause desync with the client. + + private static List connectedClients = new List(); + public static void OnCrossdomainPolicyRequest(GameClient sender) // When a cross-domain-policy request is received. + { + Logger.DebugPrint("Cross-Domain-Policy request received from: " + sender.RemoteIp); + + byte[] crossDomainPolicyResponse = CrossDomainPolicy.GetPolicy(); // Generate response packet + + sender.SendPacket(crossDomainPolicyResponse); // Send to client. + } + + public static void OnUserInfoRequest(GameClient sender, byte[] packet) + { + if (!sender.LoggedIn) + { + Logger.ErrorPrint(sender.RemoteIp + " Requested user information when not logged in."); + return; + } + Logger.DebugPrint(sender.LoggedinUser.Username + " Requested user information."); + + User user = sender.LoggedinUser; + + byte[] MovementPacket = PacketBuilder.CreateMovementPacket(user.X, user.Y, user.CharacterId, user.Facing, PacketBuilder.DIRECTION_TELEPORT, true); + sender.SendPacket(MovementPacket); + + byte[] WelcomeMessage = PacketBuilder.CreateWelcomeMessage(user.Username); + sender.SendPacket(WelcomeMessage); + + byte[] WorldData = PacketBuilder.CreateWorldData(World.ServerTime.Minutes, World.ServerTime.Days, World.ServerTime.Years, World.GetWeather()); + sender.SendPacket(WorldData); + + byte[] SecCodePacket = PacketBuilder.CreateSecCode(user.SecCodeSeeds, user.SecCodeInc, user.Administrator, user.Moderator); + sender.SendPacket(SecCodePacket); + + byte[] BaseStatsPacketData = PacketBuilder.CreatePlayerData(user.Money, GameServer.GetNumberOfPlayers(), user.MailBox.MailCount); + sender.SendPacket(BaseStatsPacketData); + + UpdateArea(sender); + + foreach (GameClient client in ConnectedClients) + { + if (client.LoggedIn) + { + if (client.LoggedinUser.Id != user.Id) + { + byte[] PlayerInfo = PacketBuilder.CreatePlayerInfoUpdateOrCreate(client.LoggedinUser.X, client.LoggedinUser.Y, client.LoggedinUser.Facing, client.LoggedinUser.CharacterId, client.LoggedinUser.Username); + sender.SendPacket(PlayerInfo); + } + } + } + + foreach (User nearbyUser in GameServer.GetNearbyUsers(sender.LoggedinUser.X, sender.LoggedinUser.Y, false, false)) + if (nearbyUser.Id != sender.LoggedinUser.Id) + UpdateArea(nearbyUser.LoggedinClient); + + byte[] IsleData = PacketBuilder.CreatePlaceData(World.Isles.ToArray(), World.Towns.ToArray(), World.Areas.ToArray()); + sender.SendPacket(IsleData); + + byte[] TileFlags = PacketBuilder.CreateTileOverlayFlags(Map.OverlayTileDepth); + sender.SendPacket(TileFlags); + + byte[] MotdData = PacketBuilder.CreateMotd(); + sender.SendPacket(MotdData); + + + } + + public static void OnKeepAlive(GameClient sender, byte[] packet) + { + if (!sender.LoggedIn) + { + Logger.ErrorPrint(sender.RemoteIp + " Requested update when not logged in."); + return; + } + if (packet.Length < 2) + { + Logger.ErrorPrint(sender.LoggedinUser.Username + " Sent an invalid update Packet"); + return; + } + + if (packet[1] == PacketBuilder.PACKET_CLIENT_TERMINATOR) + { + Logger.DebugPrint("Sending " + sender.LoggedinUser.Username + " updated info..."); + UpdatePlayer(sender); + } + } + public static void OnProfilePacket(GameClient sender, byte[] packet) + { + if (!sender.LoggedIn) + { + Logger.ErrorPrint(sender.RemoteIp + " Requested to change profile page when not logged in."); + return; + } + if (packet.Length < 2) + { + Logger.ErrorPrint(sender.LoggedinUser.Username + " Sent an invalid Profile Packet"); + return; + } + + byte method = packet[1]; + if (method == PacketBuilder.VIEW_PROFILE) + { + byte[] profilePacket = PacketBuilder.CreateProfilePacket(sender.LoggedinUser.ProfilePage); + sender.SendPacket(profilePacket); + } + else if (method == PacketBuilder.SAVE_PROFILE) + { + + string packetStr = Encoding.UTF8.GetString(packet); + if (packet.Length < 3 || !packetStr.Contains('|')) + { + Logger.ErrorPrint(sender.LoggedinUser.Username + " Sent an invalid Profile SAVE Packet"); + return; + } + + int characterId = (packet[2] - 20) * 64 + (packet[3] - 20); + + string profilePage = packetStr.Split('|')[1]; + profilePage = profilePage.Substring(0, profilePage.Length - 2); + + sender.LoggedinUser.CharacterId = characterId; + sender.LoggedinUser.ProfilePage = profilePage; + + Logger.DebugPrint(sender.LoggedinUser.Username + " Changed to character id: " + characterId + " and set there Profile Description to '" + profilePage + "'"); + + byte[] chatPacket = PacketBuilder.CreateChat(Messages.ProfileSavedMessage, PacketBuilder.CHAT_BOTTOM_RIGHT); + sender.SendPacket(chatPacket); + + UpdateArea(sender); + UpdateUserInfo(sender.LoggedinUser); + } + + } + + public static void OnMovementPacket(GameClient sender, byte[] packet) + { + if (!sender.LoggedIn) + { + Logger.ErrorPrint(sender.RemoteIp + " Sent movement packet when not logged in."); + return; + } + + User loggedInUser = sender.LoggedinUser; + byte movementDirection = packet[1]; + + if (movementDirection == PacketBuilder.MOVE_ESCAPE) + { + + byte Direction; + if (World.InSpecialTile(loggedInUser.X, loggedInUser.Y)) + { + + int newX = loggedInUser.X; + int newY = loggedInUser.Y; + + World.SpecialTile tile = World.GetSpecialTile(loggedInUser.X, loggedInUser.Y); + if (tile.ExitX != 0) + newX = tile.ExitX; + if (tile.ExitY != 0) + newY = tile.ExitY; + else + if (Map.CheckPassable(loggedInUser.X, loggedInUser.Y + 1)) + newY += 1; + + + + if (loggedInUser.X + 1 == newX && loggedInUser.Y == newY) + Direction = PacketBuilder.DIRECTION_RIGHT; + else if (loggedInUser.X - 1 == newX && loggedInUser.Y == newY) + Direction = PacketBuilder.DIRECTION_LEFT; + else if (loggedInUser.Y + 1 == newY && loggedInUser.X == newX) + Direction = PacketBuilder.DIRECTION_DOWN; + else if (loggedInUser.Y - 1 == newY && loggedInUser.X == newX) + Direction = PacketBuilder.DIRECTION_UP; + else + Direction = PacketBuilder.DIRECTION_TELEPORT; + + loggedInUser.X = newX; + loggedInUser.Y = newY; + + + } + else + { + if (Map.CheckPassable(loggedInUser.X, loggedInUser.Y + 1)) + loggedInUser.Y += 1; + + Direction = PacketBuilder.DIRECTION_DOWN; + } + + Logger.DebugPrint("Exiting player: " + loggedInUser.Username + " to: " + loggedInUser.X + "," + loggedInUser.Y); + byte[] moveResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, Direction, Direction, true); + sender.SendPacket(moveResponse); + } + + if (movementDirection == PacketBuilder.MOVE_UP) + { + loggedInUser.Facing = PacketBuilder.DIRECTION_UP; + if (Map.CheckPassable(loggedInUser.X, loggedInUser.Y - 1)) + { + loggedInUser.Y -= 1; + + byte[] moveUpResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, sender.LoggedinUser.Facing, PacketBuilder.DIRECTION_UP, true); + sender.SendPacket(moveUpResponse); + } + else + { + byte[] moveUpResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, sender.LoggedinUser.Facing, PacketBuilder.DIRECTION_NONE, false); + sender.SendPacket(moveUpResponse); + } + } + else if (movementDirection == PacketBuilder.MOVE_LEFT) + { + loggedInUser.Facing = PacketBuilder.DIRECTION_LEFT; + if (Map.CheckPassable(loggedInUser.X - 1, loggedInUser.Y)) + { + loggedInUser.X -= 1; + byte[] moveLeftResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, loggedInUser.Facing, PacketBuilder.DIRECTION_LEFT, true); + sender.SendPacket(moveLeftResponse); + } + else + { + byte[] moveLeftResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, loggedInUser.Facing, PacketBuilder.DIRECTION_NONE, false); + sender.SendPacket(moveLeftResponse); + } + } + else if (movementDirection == PacketBuilder.MOVE_RIGHT) + { + loggedInUser.Facing = PacketBuilder.DIRECTION_RIGHT; + if (Map.CheckPassable(loggedInUser.X + 1, loggedInUser.Y)) + { + loggedInUser.X += 1; + byte[] moveLeftResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, loggedInUser.Facing, PacketBuilder.DIRECTION_RIGHT, true); + sender.SendPacket(moveLeftResponse); + } + else + { + byte[] moveLeftResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, loggedInUser.Facing, PacketBuilder.DIRECTION_NONE, false); + sender.SendPacket(moveLeftResponse); + } + } + else if (movementDirection == PacketBuilder.MOVE_DOWN) + { + loggedInUser.Facing = PacketBuilder.DIRECTION_DOWN; + if (Map.CheckPassable(loggedInUser.X, loggedInUser.Y + 1)) + { + loggedInUser.Y += 1; + byte[] moveDownResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, loggedInUser.Facing, PacketBuilder.DIRECTION_DOWN, true); + sender.SendPacket(moveDownResponse); + } + else + { + byte[] moveDownResponse = PacketBuilder.CreateMovementPacket(loggedInUser.X, loggedInUser.Y, loggedInUser.CharacterId, loggedInUser.Facing, PacketBuilder.DIRECTION_NONE, false); + sender.SendPacket(moveDownResponse); + } + + } + else if(movementDirection == PacketBuilder.MOVE_UPDATE) + { + Update(sender, true); + return; + } + + + Update(sender); + } + public static void OnNpcInteraction(GameClient sender, byte[] packet) + { + if (!sender.LoggedIn) + { + Logger.ErrorPrint(sender.RemoteIp + " Sent npc interaction packet when not logged in."); + return; + } + if (packet.Length < 3) + { + Logger.ErrorPrint(sender.RemoteIp + " Sent an invalid npc interaction packet."); + return; + } + byte action = packet[1]; + if (action == PacketBuilder.NPC_START_CHAT) + { + + string packetStr = Encoding.UTF8.GetString(packet); + string number = packetStr.Substring(2, packetStr.Length - 4); + int chatId = 0; + try + { + chatId = int.Parse(number); + } + catch (InvalidOperationException) + { + Logger.ErrorPrint(sender.LoggedinUser.Username + " Tried to start talking to an NPC with id that is NaN."); + return; + } + Npc.NpcEntry entry = Npc.GetNpcById(chatId); + string metaInfo = Meta.BuildChatpoint(sender.LoggedinUser, entry, entry.Chatpoints[0]); + byte[] metaPacket = PacketBuilder.CreateMetaPacket(metaInfo); + sender.SendPacket(metaPacket); + + sender.LoggedinUser.LastTalkedToNpc = entry; + } + else if (action == PacketBuilder.NPC_CONTINUE_CHAT) + { + string packetStr = Encoding.UTF8.GetString(packet); + string number = packetStr.Substring(2, packetStr.Length - 4); + int replyId = 0; + try + { + replyId = int.Parse(number); + } + catch (InvalidOperationException) + { + Logger.ErrorPrint(sender.LoggedinUser.Username + " Tried to reply to an NPC with replyid that is NaN."); + return; + } + + Npc.NpcEntry lastNpc = sender.LoggedinUser.LastTalkedToNpc; + Npc.NpcReply reply; + try + { + reply = Npc.GetNpcReply(lastNpc, replyId); + } + catch(KeyNotFoundException) + { + Logger.ErrorPrint(sender.LoggedinUser.Username + " Tried to reply with replyid that does not exist."); + return; + } + + if (reply.GotoChatpoint == -1) + { + UpdateArea(sender,true); + return; + } + string metaInfo = Meta.BuildChatpoint(sender.LoggedinUser, lastNpc, Npc.GetNpcChatpoint(lastNpc, reply.GotoChatpoint)); + byte[] metaPacket = PacketBuilder.CreateMetaPacket(metaInfo); + sender.SendPacket(metaPacket); + return; + + + + } + } + public static void OnTransportUsed(GameClient sender, byte[] packet) + { + if (!sender.LoggedIn) + { + Logger.ErrorPrint(sender.RemoteIp + " Sent transport packet when not logged in."); + return; + } + if (packet.Length < 3) + { + Logger.ErrorPrint(sender.RemoteIp + " Sent an invalid transport packet."); + return; + } + + + string packetStr = Encoding.UTF8.GetString(packet); + string number = packetStr.Substring(1, packetStr.Length - 3); + + int transportid; + try + { + transportid = Int32.Parse(number); + } + catch(InvalidOperationException) + { + Logger.ErrorPrint(sender.LoggedinUser.Username + " Tried to use a transport with id that is NaN."); + return; + } + try + { + Transport.TransportPoint transportPoint = Transport.GetTransportPoint(sender.LoggedinUser.X, sender.LoggedinUser.Y); + if (transportPoint.X != sender.LoggedinUser.X && transportPoint.Y != sender.LoggedinUser.Y) + { + Logger.HackerPrint(sender.LoggedinUser.Username + " Tried to use transport id: " + transportid.ToString() + " while not the correct transport point!"); + return; + } + + Transport.TransportLocation transportLocation = Transport.GetTransportLocation(transportid); + + + if (sender.LoggedinUser.Money >= transportLocation.Cost) + { + + + string swfToLoad = Messages.BoatCutscene; + if (transportLocation.Type == "WAGON") + swfToLoad = Messages.WagonCutscene; + + if (transportLocation.Type != "ROWBOAT") + { + byte[] swfModulePacket = PacketBuilder.CreateSwfModulePacket(swfToLoad, PacketBuilder.PACKET_SWF_CUTSCENE); + sender.SendPacket(swfModulePacket); + } + + Teleport(sender, transportLocation.GotoX, transportLocation.GotoY); + + byte[] welcomeToIslePacket = PacketBuilder.CreateChat(Messages.FormatWelcomeToAreaMessage(transportLocation.LocationTitle), PacketBuilder.CHAT_BOTTOM_RIGHT); + sender.SendPacket(welcomeToIslePacket); + + sender.LoggedinUser.Money -= transportLocation.Cost; + } + else + { + byte[] cantAfford = PacketBuilder.CreateChat(Messages.FormatWelcomeToAreaMessage(transportLocation.LocationTitle), PacketBuilder.CHAT_BOTTOM_RIGHT); + sender.SendPacket(cantAfford); + } + } + catch (KeyNotFoundException) + { + Logger.HackerPrint(sender.LoggedinUser.Username + " Tried to use transport id: " + transportid.ToString() + " while not on a transport point!"); + } + + + } + public static void OnChatPacket(GameClient sender, byte[] packet) + { + if (!sender.LoggedIn) + { + Logger.ErrorPrint(sender.RemoteIp + " Sent chat packet when not logged in."); + return; + } + + if (packet.Length < 4) + { + Logger.ErrorPrint(sender.RemoteIp + " Sent an invalid chat packet."); + return; + } + + + string packetStr = Encoding.UTF8.GetString(packet); + + Chat.ChatChannel channel = (Chat.ChatChannel)packet[1]; + string message = packetStr.Substring(2, packetStr.Length - 4); + + + Logger.DebugPrint(sender.LoggedinUser.Username + " Attempting to say '" + message + "' in channel: " + channel.ToString()); + + string nameTo = null; + if (channel == Chat.ChatChannel.Dm) + { + nameTo = Chat.GetDmRecipiant(message); + message = Chat.GetDmMessage(message); + } + + if (message == "") + return; + + Object violationReason = Chat.FilterMessage(message); + if (violationReason != null) + { + sender.LoggedinUser.ChatViolations += 1; + string chatViolationMessage = Messages.FormatGlobalChatViolationMessage((Chat.Reason)violationReason); + byte[] chatViolationPacket = PacketBuilder.CreateChat(chatViolationMessage, PacketBuilder.CHAT_BOTTOM_RIGHT); + sender.SendPacket(chatViolationPacket); + return; + } + + byte chatSide = Chat.GetSide(channel); + message = Chat.DoCorrections(message); + message = Chat.EscapeMessage(message); + + + string failedReason = Chat.NonViolationChecks(sender.LoggedinUser, message); + if (failedReason != null) + { + byte[] failedMessage = PacketBuilder.CreateChat(failedReason, PacketBuilder.CHAT_BOTTOM_RIGHT); + sender.SendPacket(failedMessage); + return; + } + + GameClient[] recipiants = Chat.GetRecipiants(sender.LoggedinUser, channel, nameTo); + + // Finally send chat message. + string formattedMessage = Chat.FormatChatForOthers(sender.LoggedinUser, channel, message); + string formattedMessageSender = Chat.FormatChatForSender(sender.LoggedinUser, channel, message, nameTo); + byte[] chatPacketOthers = PacketBuilder.CreateChat(formattedMessage, chatSide); + byte[] chatPacketSender = PacketBuilder.CreateChat(formattedMessageSender, chatSide); + byte[] playDmSound = PacketBuilder.CreatePlaysoundPacket(Chat.PrivateMessageSound); + // Send to clients ... + foreach (GameClient recipiant in recipiants) + { + recipiant.SendPacket(chatPacketOthers); + if (channel == Chat.ChatChannel.Dm) + recipiant.SendPacket(playDmSound); + } + + // Send to sender + sender.SendPacket(chatPacketSender); + } + + public static void OnItemInteraction(GameClient sender, byte[] packet) + { + if (!sender.LoggedIn) + { + Logger.ErrorPrint(sender.RemoteIp + " Sent object interaction packet when not logged in."); + return; + } + if (packet.Length < 3) + { + Logger.ErrorPrint(sender.LoggedinUser.Username + " Sent an invalid object interaction packet."); + return; + } + + byte action = packet[1]; + switch(action) + { + case PacketBuilder.ITEM_PICKUP: + string packetStr = Encoding.UTF8.GetString(packet); + string randomIdStr = packetStr.Substring(2, packet.Length - 2); + int randomId = 0; + + try + { + randomId = Int32.Parse(randomIdStr); + } + catch(InvalidOperationException) + { + Logger.ErrorPrint(sender.LoggedinUser.Username + " Sent an invalid object interaction packet."); + return; + } + + try + { + DroppedItems.DroppedItem item = DroppedItems.GetDroppedItemById(randomId); + sender.LoggedinUser.Inventory.Add(item.instance); + DroppedItems.RemoveDroppedItem(item); + + UpdateAreaForAll(sender.LoggedinUser.X, sender.LoggedinUser.Y); + + byte[] chatMessage = PacketBuilder.CreateChat(Messages.GrabbedItemMessage, PacketBuilder.CHAT_BOTTOM_RIGHT); + sender.SendPacket(chatMessage); + } + catch(KeyNotFoundException) + { + Logger.HackerPrint(sender.LoggedinUser.Username + " Tried to grab a non existing object."); + return; + } + + break; + case PacketBuilder.ITEM_DROP: + packetStr = Encoding.UTF8.GetString(packet); + randomIdStr = packetStr.Substring(2, packet.Length - 2); + randomId = 0; + + try + { + randomId = Int32.Parse(randomIdStr); + } + catch (InvalidOperationException) + { + Logger.ErrorPrint(sender.LoggedinUser.Username + " Sent an invalid object interaction packet."); + return; + } + + if(sender.LoggedinUser.Inventory.HasItem(randomId)) + { + InventoryItem itm = sender.LoggedinUser.Inventory.GetItemByRandomid(randomId); + ItemInstance instance = itm.ItemInstances[0]; + DroppedItems.AddItem(instance, sender.LoggedinUser.X, sender.LoggedinUser.Y); + sender.LoggedinUser.Inventory.Remove(instance); + byte[] chatPacket = PacketBuilder.CreateChat(Messages.DroppedAnItemMessage, PacketBuilder.CHAT_BOTTOM_RIGHT); + sender.SendPacket(chatPacket); + UpdateInventory(sender); + } + else + { + Logger.HackerPrint(sender.LoggedinUser.Username + " Tried to drop an item they did not have."); + } + break; + case PacketBuilder.ITEM_SHOVEL: + if (packet[2] != 0x14) + Logger.HackerPrint(sender.LoggedinUser.Username + " Used ITEM_SHOVEL with 3rd byte not 0x14."); + if (!Quest.UseTool(sender.LoggedinUser, Quest.Shovel, sender.LoggedinUser.X, sender.LoggedinUser.Y)) + { + byte[] ChatPacket = PacketBuilder.CreateChat(Messages.ShovelNothing, PacketBuilder.CHAT_BOTTOM_RIGHT); + sender.SendPacket(ChatPacket); + } + break; + case PacketBuilder.ITEM_RAKE: + if (packet[2] != 0x14) + Logger.HackerPrint(sender.LoggedinUser.Username + " Used ITEM_RAKE with 3rd byte not 0x14."); + if (!Quest.UseTool(sender.LoggedinUser, Quest.Rake, sender.LoggedinUser.X, sender.LoggedinUser.Y)) + { + byte[] ChatPacket = PacketBuilder.CreateChat(Messages.RakeNothing, PacketBuilder.CHAT_BOTTOM_RIGHT); + sender.SendPacket(ChatPacket); + } + break; + case PacketBuilder.ITEM_MAGNIFYING: + if (packet[2] != 0x14) + Logger.HackerPrint(sender.LoggedinUser.Username + " Used ITEM_MAGNIFYING with 3rd byte not 0x14."); + if (!Quest.UseTool(sender.LoggedinUser, Quest.MagnifyingGlass, sender.LoggedinUser.X, sender.LoggedinUser.Y)) + { + byte[] ChatPacket = PacketBuilder.CreateChat(Messages.MagnifyNothing, PacketBuilder.CHAT_BOTTOM_RIGHT); + sender.SendPacket(ChatPacket); + } + break; + case PacketBuilder.ITEM_BINOCULARS: + if (packet[2] != 0x14) + Logger.HackerPrint(sender.LoggedinUser.Username + " Used ITEM_BINOCULARS with 3rd byte not 0x14."); + if(!Quest.UseTool(sender.LoggedinUser, Quest.Binoculars, sender.LoggedinUser.X, sender.LoggedinUser.Y)) + { + byte[] ChatPacket = PacketBuilder.CreateChat(Messages.BinocularsNothing, PacketBuilder.CHAT_BOTTOM_RIGHT); + sender.SendPacket(ChatPacket); + } + break; + default: + Logger.WarnPrint(sender.LoggedinUser.Username + " Sent an unknown Item Interaction Packet type: " + action.ToString() + ", Packet Dump: " + BitConverter.ToString(packet).Replace('-', ' ')); + break; + } + + } + + public static void OnInventoryRequested(GameClient sender, byte[] packet) + { + if (!sender.LoggedIn) + { + Logger.ErrorPrint(sender.RemoteIp + " Sent chat packet when not logged in."); + return; + } + + if (packet.Length < 2) + { + Logger.ErrorPrint(sender.RemoteIp + " Sent an invalid inventory request packet."); + return; + } + + UpdateInventory(sender); + } + public static void OnLoginRequest(GameClient sender, byte[] packet) + { + Logger.DebugPrint("Login request received from: " + sender.RemoteIp); + + string loginRequestString = Encoding.UTF8.GetString(packet).Substring(1); + + if (!loginRequestString.Contains('|') || packet.Length < 3) + { + Logger.ErrorPrint(sender.RemoteIp + " Sent an invalid login request"); + return; + } + + if (packet[1] != PacketBuilder.PACKET_CLIENT_TERMINATOR) + { + string[] loginParts = loginRequestString.Split('|'); + if (loginParts.Length < 3) + { + Logger.ErrorPrint(sender.RemoteIp + " Sent a login request of invalid length. " + loginRequestString); + return; + } + + int version = int.Parse(loginParts[0]); + string encryptedUsername = loginParts[1]; + string encryptedPassword = loginParts[2]; + string username = Authentication.DecryptLogin(encryptedUsername); + string password = Authentication.DecryptLogin(encryptedPassword); + + if (Authentication.CheckPassword(username, password)) + { + // Obtain user information + int userId = Database.GetUserid(username); + sender.Login(userId); + sender.LoggedinUser.Password = password; + + byte[] ResponsePacket = PacketBuilder.CreateLoginPacket(true); + sender.SendPacket(ResponsePacket); + + Logger.DebugPrint(sender.RemoteIp + " Logged into : " + sender.LoggedinUser.Username + " (ADMIN: " + sender.LoggedinUser.Administrator + " MOD: " + sender.LoggedinUser.Moderator + ")"); + + // Send login message + byte[] loginMessageBytes = PacketBuilder.CreateChat(Messages.FormatLoginMessage(sender.LoggedinUser.Username), PacketBuilder.CHAT_BOTTOM_LEFT); + foreach (GameClient client in ConnectedClients) + if (client.LoggedIn) + if (!client.LoggedinUser.MuteLogins) + if (client.LoggedinUser.Id != userId) + client.SendPacket(loginMessageBytes); + + UpdateUserInfo(sender.LoggedinUser); + + } + else + { + Logger.WarnPrint(sender.RemoteIp + " Attempted to login to: " + username + " with incorrect password " + password); + byte[] ResponsePacket = PacketBuilder.CreateLoginPacket(false); + sender.SendPacket(ResponsePacket); + } + } + + } + + + + public static void OnDisconnect(GameClient sender) + { + connectedClients.Remove(sender); + + if (sender.LoggedIn) + { + // Send disconnect message + byte[] logoutMessageBytes = PacketBuilder.CreateChat(Messages.FormatLogoutMessage(sender.LoggedinUser.Username), PacketBuilder.CHAT_BOTTOM_LEFT); + foreach (GameClient client in ConnectedClients) + if (client.LoggedIn) + if (!client.LoggedinUser.MuteLogins) + if (client.LoggedinUser.Id != sender.LoggedinUser.Id) + client.SendPacket(logoutMessageBytes); + // Tell clients of diconnect (remove from chat) + byte[] playerRemovePacket = PacketBuilder.CreatePlayerLeavePacket(sender.LoggedinUser.Username); + foreach (GameClient client in ConnectedClients) + if (client.LoggedIn) + if (client.LoggedinUser.Id != sender.LoggedinUser.Id) + client.SendPacket(playerRemovePacket); + } + + } + + + public static User[] GetUsersUsersInIsle(World.Isle isle, bool includeStealth = false, bool includeMuted = false) + { + List usersInIsle = new List(); + foreach (GameClient client in ConnectedClients) + if (client.LoggedIn) + { + if (!includeStealth && client.LoggedinUser.Stealth) + continue; + if (!includeMuted && client.LoggedinUser.MuteIsland) + continue; + if (World.InIsle(client.LoggedinUser.X, client.LoggedinUser.Y)) + if (World.GetIsle(client.LoggedinUser.X, client.LoggedinUser.Y).Name == isle.Name) + usersInIsle.Add(client.LoggedinUser); + } + + return usersInIsle.ToArray(); + } + + public static User[] GetUsersAt(int x, int y, bool includeStealth = false, bool includeMuted = false) + { + List usersHere = new List(); + foreach(GameClient client in ConnectedClients) + { + if(client.LoggedIn) + { + if (!includeStealth && client.LoggedinUser.Stealth) + continue; + if (!includeMuted && client.LoggedinUser.MuteNear) + continue; + if (client.LoggedinUser.X == x && client.LoggedinUser.Y == y) + usersHere.Add(client.LoggedinUser); + } + } + return usersHere.ToArray(); + } + + public static User[] GetNearbyUsers(int x, int y, bool includeStealth=false, bool includeMuted=false) + { + int startX = x - 15; + int endX = x + 15; + int startY = y - 19; + int endY = y + 19; + List usersNearby = new List(); + + foreach (GameClient client in ConnectedClients) + if (client.LoggedIn) + { + if (!includeStealth && client.LoggedinUser.Stealth) + continue; + if (!includeMuted && client.LoggedinUser.MuteNear) + continue; + if (startX <= client.LoggedinUser.X && endX >= client.LoggedinUser.X && startY <= client.LoggedinUser.Y && endY >= client.LoggedinUser.Y) + usersNearby.Add(client.LoggedinUser); + } + + return usersNearby.ToArray(); + } + + public static int GetNumberOfPlayers(bool includeStealth=false) + { + int count = 0; + foreach(GameClient client in ConnectedClients) + if (client.LoggedIn) + { + if (!includeStealth && client.LoggedinUser.Stealth) + continue; + if (!client.LoggedinUser.Stealth) + count++; + } + + return count; + } + + public static int GetNumberOfModsOnline() + { + int count = 0; + foreach (GameClient client in ConnectedClients) + { + if (client.LoggedIn) + if(client.LoggedinUser.Moderator) + count++; + } + return count; + } + + public static void Teleport(GameClient client, int newX, int newY) + { + if (!client.LoggedIn) + return; + Logger.DebugPrint("Teleporting: " + client.LoggedinUser.Username + " to: " + newX.ToString() + "," + newY.ToString()); + + client.LoggedinUser.X = newX; + client.LoggedinUser.Y = newY; + + byte[] MovementPacket = PacketBuilder.CreateMovementPacket(client.LoggedinUser.X, client.LoggedinUser.Y, client.LoggedinUser.CharacterId, client.LoggedinUser.Facing, PacketBuilder.DIRECTION_TELEPORT, true); + client.SendPacket(MovementPacket); + Update(client); + + } + public static void Update(GameClient client, bool justArea = false) + { + UpdateArea(client, justArea); + foreach (User nearbyUser in GameServer.GetNearbyUsers(client.LoggedinUser.X, client.LoggedinUser.Y, false, false)) + if (nearbyUser.Id != client.LoggedinUser.Id) + UpdateArea(nearbyUser.LoggedinClient, justArea); + + UpdateUserInfo(client.LoggedinUser); + } + + public static void UpdateInventory(GameClient forClient) + { + if (!forClient.LoggedIn) + return; + byte[] metaPacket = PacketBuilder.CreateMetaPacket(Meta.BuildInventoryInfo(forClient.LoggedinUser.Inventory)); + forClient.SendPacket(metaPacket); + } + public static void UpdateWorld(GameClient forClient) + { + if (!forClient.LoggedIn) + { + Logger.ErrorPrint(forClient.RemoteIp + "tried to update world information when not logged in."); + return; + } + + byte[] WorldData = PacketBuilder.CreateWorldData(World.ServerTime.Minutes, World.ServerTime.Days, World.ServerTime.Years, World.GetWeather()); + forClient.SendPacket(WorldData); + } + + public static void UpdatePlayer(GameClient forClient) + { + if (!forClient.LoggedIn) + { + Logger.ErrorPrint(forClient.RemoteIp + "tried to update player information when not logged in."); + return; + } + byte[] PlayerData = PacketBuilder.CreatePlayerData(forClient.LoggedinUser.Money, GameServer.GetNumberOfPlayers(), forClient.LoggedinUser.MailBox.MailCount); + forClient.SendPacket(PlayerData); + } + + public static void UpdateUserInfo(User user) + { + byte[] playerInfoBytes = PacketBuilder.CreatePlayerInfoUpdateOrCreate(user.X, user.Y, user.Facing, user.CharacterId, user.Username); + + + + List users = new List(); + foreach (GameClient client in ConnectedClients) + if (client.LoggedIn) + { + if (client.LoggedinUser.Id != user.Id) + client.SendPacket(playerInfoBytes); + } + + + } + + public static void UpdateAreaForAll(int x, int y) + { + foreach(GameClient client in ConnectedClients) + { + if (client.LoggedIn) + if (client.LoggedinUser.X == x && client.LoggedinUser.Y == y) + UpdateArea(client, true); + } + } + public static void UpdateArea(GameClient forClient, bool justArea = false) + { + if (!forClient.LoggedIn) + { + Logger.ErrorPrint(forClient.RemoteIp + "tried to update tile information when not logged in."); + return; + } + + string LocationStr = ""; + if (!World.InSpecialTile(forClient.LoggedinUser.X, forClient.LoggedinUser.Y)) + { + LocationStr = Meta.BuildMetaInfo(forClient.LoggedinUser, forClient.LoggedinUser.X, forClient.LoggedinUser.Y); + } + else + { + World.SpecialTile specialTile = World.GetSpecialTile(forClient.LoggedinUser.X, forClient.LoggedinUser.Y); + if (specialTile.AutoplaySwf != null && specialTile.AutoplaySwf != "" && !justArea) + { + byte[] swfModulePacket = PacketBuilder.CreateSwfModulePacket(specialTile.AutoplaySwf,PacketBuilder.PACKET_SWF_MODULE_GENTLE); + forClient.SendPacket(swfModulePacket); + } + if (specialTile.Code != null && !justArea) + if (!ProcessMapCodeWithArg(forClient, specialTile.Code)) + return; + LocationStr = Meta.BuildSpecialTileInfo(forClient.LoggedinUser, specialTile); + } + byte[] AreaMessage = PacketBuilder.CreateMetaPacket(LocationStr); + forClient.SendPacket(AreaMessage); + + } + + public static bool ProcessMapCodeWithArg(GameClient forClient, string mapCode) + { + if(mapCode.Contains('-')) + { + string[] codeInfo = mapCode.Split('-'); + string command = codeInfo[0]; + string paramaters = codeInfo[1]; + + if(command == "JUMP") + { + if(paramaters.Contains(',')) + { + string[] args = paramaters.Split(','); + try + { + int newX = int.Parse(args[0]); + int newY = int.Parse(args[1]); + Teleport(forClient, newX, newY); + return false; + } + catch(Exception) + { + return true; + } + } + } + } + return true; + } + + + public static int GetNumberOfAdminsOnline() + { + int count = 0; + foreach (GameClient client in ConnectedClients) + { + if (client.LoggedIn) + if (client.LoggedinUser.Administrator) + count++; + } + return count; + } + + private static void onTick(object state) + { + World.TickWorldClock(); + + if(World.ServerTime.Minutes % 20 == 0) + { + DroppedItems.Update(); + } + } + + + public static void StartServer() + { + ServerSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); + IPAddress hostIP = IPAddress.Parse(ConfigReader.BindIP); + IPEndPoint ep = new IPEndPoint(hostIP, ConfigReader.Port); + ServerSocket.Bind(ep); + Logger.InfoPrint("Binding to ip: " + ConfigReader.BindIP + " On port: " + ConfigReader.Port.ToString()); + ServerSocket.Listen(10000); + + serverTimer = new Timer(new TimerCallback(onTick), null, gameTickSpeed, gameTickSpeed); + + while (true) + { + Logger.InfoPrint("Waiting for new connections..."); + + Socket cientSocket = ServerSocket.Accept(); + GameClient client = new GameClient(cientSocket); + connectedClients.Add(client); + } + } + } +} diff --git a/Horse Isle Server/Horse Isle Server/Gamedata.cs b/Horse Isle Server/Horse Isle Server/Server/Gamedata.cs similarity index 80% rename from Horse Isle Server/Horse Isle Server/Gamedata.cs rename to Horse Isle Server/Horse Isle Server/Server/Gamedata.cs index 66ff4a3..9cd7691 100644 --- a/Horse Isle Server/Horse Isle Server/Gamedata.cs +++ b/Horse Isle Server/Horse Isle Server/Server/Gamedata.cs @@ -1,416 +1,499 @@ -using System.Collections.Generic; -using System.IO; -using Newtonsoft.Json; - -namespace Horse_Isle_Server -{ - class Gamedata - { - - public static void ReadGamedata() - { - if(!File.Exists(ConfigReader.GameDataFile)) - { - Logger.ErrorPrint("Game Data JSON File: " + ConfigReader.GameDataFile + " Does not exist!"); - return; - } - string jsonData = File.ReadAllText(ConfigReader.GameDataFile); - dynamic gameData = JsonConvert.DeserializeObject(jsonData); - - // Register Towns - int totalTowns = gameData.places.towns.Count; - for (int i = 0; i < totalTowns; i++) - { - - World.Town town = new World.Town(); - town.StartX = gameData.places.towns[i].start_x; - town.StartY = gameData.places.towns[i].start_y; - town.EndX = gameData.places.towns[i].end_x; - town.EndY = gameData.places.towns[i].end_y; - town.Name = gameData.places.towns[i].name; - - Logger.DebugPrint("Registered Town: " + town.Name + " X " + town.StartX + "-" + town.EndX + " Y " + town.StartY + "-" + town.EndY); - World.Towns.Add(town); - } - - // Register Areas - int totalAreas = gameData.places.towns.Count; - for (int i = 0; i < totalAreas; i++) - { - - World.Area area = new World.Area(); - area.StartX = gameData.places.areas[i].start_x; - area.StartY = gameData.places.areas[i].start_y; - area.EndX = gameData.places.areas[i].end_x; - area.EndY = gameData.places.areas[i].end_y; - area.Name = gameData.places.areas[i].name; - - Logger.DebugPrint("Registered Area: " + area.Name + " X " + area.StartX + "-" + area.EndX + " Y " + area.StartY + "-" + area.EndY); - World.Areas.Add(area); - } - - // Register Isles - int totalIsles = gameData.places.isles.Count; - for(int i = 0; i < totalIsles; i++) - { - - World.Isle isle = new World.Isle(); - isle.StartX = gameData.places.isles[i].start_x; - isle.StartY = gameData.places.isles[i].start_y; - isle.EndX = gameData.places.isles[i].end_x; - isle.EndY = gameData.places.isles[i].end_y; - isle.Tileset = gameData.places.isles[i].tileset; - isle.Name = gameData.places.isles[i].name; - - Logger.DebugPrint("Registered Isle: " + isle.Name + " X " + isle.StartX + "-" + isle.EndX + " Y " + isle.StartY + "-" + isle.EndY + " tileset: " + isle.Tileset); - World.Isles.Add(isle); - } - - // Register Special Tiles - int totalSpecialTiles = gameData.places.special_tiles.Count; - for (int i = 0; i < totalSpecialTiles; i++) - { - - World.SpecialTile specialTile = new World.SpecialTile(); - specialTile.X = gameData.places.special_tiles[i].x; - specialTile.Y = gameData.places.special_tiles[i].y; - specialTile.Title = gameData.places.special_tiles[i].title; - specialTile.Description = gameData.places.special_tiles[i].description; - specialTile.Code = gameData.places.special_tiles[i].code; - if(gameData.places.special_tiles[i].exit_x != null) - specialTile.ExitX = gameData.places.special_tiles[i].exit_x; - if(gameData.places.special_tiles[i].exit_x != null) - specialTile.ExitY = gameData.places.special_tiles[i].exit_y; - specialTile.AutoplaySwf = gameData.places.special_tiles[i].autoplay_swf; - specialTile.TypeFlag = gameData.places.special_tiles[i].type_flag; - - Logger.DebugPrint("Registered Special Tile: " + specialTile.Title + " X " + specialTile.X + " Y: " + specialTile.Y); - World.SpecialTiles.Add(specialTile); - } - - // Register Filter Reasons - int totalReasons = gameData.messages.chat.reason_messages.Count; - for(int i = 0; i < totalReasons; i++) - { - Chat.Reason reason = new Chat.Reason(); - reason.Name = gameData.messages.chat.reason_messages[i].name; - reason.Message = gameData.messages.chat.reason_messages[i].message; - Chat.Reasons.Add(reason); - - Logger.DebugPrint("Registered Chat Warning Reason: " + reason.Name + " (Message: " + reason.Message + ")"); - } - // Register Filters - - int totalFilters = gameData.messages.chat.filter.Count; - for(int i = 0; i < totalFilters; i++) - { - Chat.Filter filter = new Chat.Filter(); - filter.FilteredWord = gameData.messages.chat.filter[i].word; - filter.MatchAll = gameData.messages.chat.filter[i].match_all; - filter.Reason = Chat.GetReason((string)gameData.messages.chat.filter[i].reason_type); - Chat.FilteredWords.Add(filter); - - Logger.DebugPrint("Registered Filtered Word: " + filter.FilteredWord + " With reason: "+filter.Reason.Name+" (Matching all: " + filter.MatchAll + ")"); - } - - // Register Corrections - int totalCorrections = gameData.messages.chat.correct.Count; - for (int i = 0; i < totalCorrections; i++) - { - Chat.Correction correction = new Chat.Correction(); - correction.FilteredWord = gameData.messages.chat.correct[i].word; - correction.ReplacedWord = gameData.messages.chat.correct[i].new_word; - Chat.CorrectedWords.Add(correction); - - Logger.DebugPrint("Registered Word Correction: " + correction.FilteredWord + " to "+correction.ReplacedWord); - } - - // Register Transports - - int totalTransportPoints = gameData.transport.transport_points.Count; - for (int i = 0; i < totalTransportPoints; i++) - { - Transport.TransportPoint transportPoint = new Transport.TransportPoint(); - transportPoint.X = gameData.transport.transport_points[i].x; - transportPoint.Y = gameData.transport.transport_points[i].y; - transportPoint.Locations = gameData.transport.transport_points[i].places.ToObject(); - Transport.TransportPoints.Add(transportPoint); - - Logger.DebugPrint("Registered Transport Point: At X: " + transportPoint.X + " Y: " + transportPoint.Y); - } - - int totalTransportPlaces = gameData.transport.transport_places.Count; - for (int i = 0; i < totalTransportPlaces; i++) - { - Transport.TransportLocation transportPlace = new Transport.TransportLocation(); - transportPlace.Id = gameData.transport.transport_places[i].id; - transportPlace.Cost = gameData.transport.transport_places[i].cost; - transportPlace.GotoX = gameData.transport.transport_places[i].goto_x; - transportPlace.GotoY = gameData.transport.transport_places[i].goto_y; - transportPlace.Type = gameData.transport.transport_places[i].type; - transportPlace.LocationTitle = gameData.transport.transport_places[i].place_title; - Transport.TransportLocations.Add(transportPlace); - - Logger.DebugPrint("Registered Transport Location: "+ transportPlace.LocationTitle+" To Goto X: " + transportPlace.GotoX + " Y: " + transportPlace.GotoY); - } - - // Register Items - int totalItems = gameData.item.item_list.Count; - for (int i = 0; i < totalItems; i++) - { - Item.ItemInformation item = new Item.ItemInformation(); - item.Id = gameData.item.item_list[i].id; - item.Name = gameData.item.item_list[i].name; - item.PluralName = gameData.item.item_list[i].plural_name; - item.Description = gameData.item.item_list[i].description; - item.IconId = gameData.item.item_list[i].icon_id; - item.SortBy = gameData.item.item_list[i].sort_by; - item.SellPrice = gameData.item.item_list[i].sell_price; - item.EmbedSwf = gameData.item.item_list[i].embed_swf; - item.WishingWell = gameData.item.item_list[i].wishing_well; - item.Type = gameData.item.item_list[i].type; - item.MiscFlags = gameData.item.item_list[i].misc_flags.ToObject(); - int effectsCount = gameData.item.item_list[i].effects.Count; - - Item.Effects[] effectsList = new Item.Effects[effectsCount]; - for(int ii = 0; ii < effectsCount; ii++) - { - effectsList[ii] = new Item.Effects(); - effectsList[ii].EffectsWhat = gameData.item.item_list[i].effects[ii].effect_what; - effectsList[ii].EffectsWhat = gameData.item.item_list[i].effects[ii].effect_amount; - } - - item.Effects = effectsList; - item.SpawnParamaters = new Item.SpawnRules(); - item.SpawnParamaters.SpawnCap = gameData.item.item_list[i].spawn_parameters.spawn_cap; - item.SpawnParamaters.SpawnInArea = gameData.item.item_list[i].spawn_parameters.spawn_in_area; - item.SpawnParamaters.SpawnOnTileType = gameData.item.item_list[i].spawn_parameters.spawn_on_tile_type; - item.SpawnParamaters.SpawnOnSpecialTile = gameData.item.item_list[i].spawn_parameters.spawn_on_special_tile; - item.SpawnParamaters.SpawnNearSpecialTile = gameData.item.item_list[i].spawn_parameters.spawn_near_special_tile; - - Logger.DebugPrint("Registered Item ID: " + item.Id + " Name: " + item.Name + " spawns on: "+item.SpawnParamaters.SpawnOnTileType); - Item.Items.Add(item); - } - - int totalThrowable = gameData.item.throwable.Count; - for(int i = 0; i < totalThrowable; i++) - { - Item.ThrowableItem throwableItem = new Item.ThrowableItem(); - throwableItem.Id = gameData.item.throwable[i].id; - throwableItem.Message = gameData.item.throwable[i].message; - Item.ThrowableItems.Add(throwableItem); - } - - // Register NPCs - Logger.DebugPrint("Registering NPCS: "); - int totalNpcs = gameData.npc_list.Count; - for(int i = 0; i < totalNpcs; i++) - { - Npc.NpcEntry npcEntry = new Npc.NpcEntry(); - npcEntry.Id = gameData.npc_list[i].id; - npcEntry.Name = gameData.npc_list[i].name; - npcEntry.AdminDescription = gameData.npc_list[i].admin_description; - npcEntry.ShortDescription = gameData.npc_list[i].short_description; - npcEntry.LongDescription = gameData.npc_list[i].long_description; - npcEntry.Moves = gameData.npc_list[i].moves; - npcEntry.X = gameData.npc_list[i].x; - npcEntry.Y = gameData.npc_list[i].y; - if (gameData.npc_list[i].stay_on != null) - npcEntry.StayOn = gameData.npc_list[i].stay_on; - if (gameData.npc_list[i].requires_questid_completed != null) - npcEntry.RequiresQuestIdCompleted = gameData.npc_list[i].requires_questid_completed; - if (gameData.npc_list[i].requires_questid_not_completed != null) - npcEntry.RequiresQuestIdNotCompleted = gameData.npc_list[i].requires_questid_not_completed; - if (gameData.npc_list[i].udlr_script != null) - npcEntry.UDLRScript = gameData.npc_list[i].udlr_script; - if (gameData.npc_list[i].udlr_start_x != null) - npcEntry.UDLRStartX = gameData.npc_list[i].udlr_start_x; - if (gameData.npc_list[i].udlr_start_y != null) - npcEntry.UDLRStartY = gameData.npc_list[i].udlr_start_y; - npcEntry.AdminOnly = gameData.npc_list[i].admin_only; - npcEntry.LibarySearchable = gameData.npc_list[i].libary_searchable; - npcEntry.IconId = gameData.npc_list[i].icon_id; - - Logger.DebugPrint("\tNPC ID:" + npcEntry.Id.ToString() + " NAME: " + npcEntry.Name); - List chats = new List(); - int totalNpcChat = gameData.npc_list[i].chatpoints.Count; - for (int ii = 0; ii < totalNpcChat; ii++) - { - Npc.NpcChat npcChat = new Npc.NpcChat(); - npcChat.Id = gameData.npc_list[i].chatpoints[ii].chatpoint_id; - npcChat.ChatText = gameData.npc_list[i].chatpoints[ii].chat_text; - npcChat.ActivateQuestId = gameData.npc_list[i].chatpoints[ii].activate_questid; - - Logger.DebugPrint("\t\tCHATPOINT ID: " + npcChat.Id.ToString() + " TEXT: " + npcChat.ChatText); - int totalNpcReply = gameData.npc_list[i].chatpoints[ii].replies.Count; - List replys = new List(); - for (int iii = 0; iii < totalNpcReply; iii++) - { - Npc.NpcReply npcReply = new Npc.NpcReply(); - npcReply.Id = gameData.npc_list[i].chatpoints[ii].replies[iii].reply_id; - npcReply.ReplyText = gameData.npc_list[i].chatpoints[ii].replies[iii].reply_text; - npcReply.GotoChatpoint = gameData.npc_list[i].chatpoints[ii].replies[iii].goto_chatpoint; - - if (gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_completed != null) - npcReply.RequiresQuestIdCompleted = gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_completed; - - if (gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_not_completed != null) - npcReply.RequiresQuestIdNotCompleted = gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_not_completed; - - Logger.DebugPrint("\t\t\tREPLY ID: " + npcReply.Id.ToString() + " TEXT: " + npcReply.ReplyText); - replys.Add(npcReply); - - } - npcChat.Replies = replys.ToArray(); - chats.Add(npcChat); - } - npcEntry.Chatpoints = chats.ToArray(); - Npc.NpcList.Add(npcEntry); - } - - Item.Present = gameData.item.special.present; - Item.MailMessage = gameData.item.special.mail_message; - Item.DorothyShoes = gameData.item.special.dorothy_shoes; - Item.PawneerOrder = gameData.item.special.pawneer_order; - Item.Telescope = gameData.item.special.telescope; - Item.Pitchfork = gameData.item.special.pitchfork; - - // New Users - Messages.NewUserMessage = gameData.new_user.starting_message; - Map.NewUserStartX = gameData.new_user.starting_x; - Map.NewUserStartY = gameData.new_user.starting_y; - - // Announcements - - Messages.WelcomeFormat = gameData.messages.welcome_format; - Messages.MotdFormat = gameData.messages.motd_format; - Messages.ProfileSavedMessage = gameData.messages.profile_save; - Messages.LoginMessageForamt = gameData.messages.login_format; - Messages.LogoutMessageFormat = gameData.messages.logout_format; - - // Transport - - Messages.CantAffordTransport = gameData.messages.transport.not_enough_money; - Messages.WelcomeToAreaFormat = gameData.messages.transport.welcome_to_format; - - // Chat - - Messages.ChatViolationMessageFormat = gameData.messages.chat.violation_format; - Messages.RequiredChatViolations = gameData.messages.chat.violation_points_required; - - Messages.GlobalChatFormatForModerators = gameData.messages.chat.for_others.global_format_moderator; - Messages.DirectChatFormatForModerators = gameData.messages.chat.for_others.dm_format_moderator; - - - Messages.HereChatFormat = gameData.messages.chat.for_others.here_format; - Messages.IsleChatFormat = gameData.messages.chat.for_others.isle_format; - Messages.NearChatFormat = gameData.messages.chat.for_others.near_format; - Messages.GlobalChatFormat = gameData.messages.chat.for_others.global_format; - Messages.AdsChatFormat = gameData.messages.chat.for_others.ads_format; - Messages.DirectChatFormat = gameData.messages.chat.for_others.dm_format; - Messages.BuddyChatFormat = gameData.messages.chat.for_others.friend_format; - Messages.ModChatFormat = gameData.messages.chat.for_others.mod_format; - Messages.AdminChatFormat = gameData.messages.chat.for_others.admin_format; - - Messages.HereChatFormatForSender = gameData.messages.chat.for_sender.here_format; - Messages.IsleChatFormatForSender = gameData.messages.chat.for_sender.isle_format; - Messages.NearChatFormatForSender = gameData.messages.chat.for_sender.near_format; - Messages.BuddyChatFormatForSender = gameData.messages.chat.for_sender.friend_format; - Messages.DirectChatFormatForSender = gameData.messages.chat.for_sender.dm_format; - Messages.ModChatFormatForSender = gameData.messages.chat.for_sender.mod_format; - Messages.AdminChatFormatForSender = gameData.messages.chat.for_sender.admin_format; - - - Messages.PasswordNotice = gameData.messages.chat.password_included; - Messages.CapsNotice = gameData.messages.chat.caps_notice; - - // Hardcoded messages - - Messages.NothingMessage = gameData.messages.meta.dropped_items.nothing_message; - Messages.ItemsOnGroundMessage = gameData.messages.meta.dropped_items.items_message; - Messages.GrabItemFormat = gameData.messages.meta.dropped_items.item_format; - Messages.GrabAllItemsButton = gameData.messages.meta.dropped_items.grab_all; - Messages.DroppedAnItemMessage = gameData.messages.dropped_item_message; - - // Meta Format - - Messages.LocationFormat = gameData.messages.meta.location_format; - Messages.IsleFormat = gameData.messages.meta.isle_format; - Messages.TownFormat = gameData.messages.meta.town_format; - Messages.AreaFormat = gameData.messages.meta.area_format; - Messages.Seperator = gameData.messages.meta.seperator; - Messages.TileFormat = gameData.messages.meta.tile_format; - Messages.TransportFormat = gameData.messages.meta.transport_format; - Messages.ExitThisPlace = gameData.messages.meta.exit_this_place; - Messages.BackToMap = gameData.messages.meta.back_to_map; - Messages.LongFullLine = gameData.messages.meta.long_full_line; - Messages.MetaTerminator = gameData.messages.meta.end_of_meta; - - Messages.GrabbedItemMessage = gameData.messages.grab_message; - Messages.GrabAllItemsMessage = gameData.messages.grab_all_message; - - Messages.NearbyPlayers = gameData.messages.meta.nearby.players_nearby; - Messages.North = gameData.messages.meta.nearby.north; - Messages.East = gameData.messages.meta.nearby.east; - Messages.South = gameData.messages.meta.nearby.south; - Messages.West = gameData.messages.meta.nearby.west; - - // Inventory - - Messages.InventoryHeaderFormat = gameData.messages.meta.inventory.header_format; - Messages.InventoryItemFormat = gameData.messages.meta.inventory.item_entry; - - Messages.ItemInformationButton = gameData.messages.meta.inventory.item_info_button; - Messages.ItemDropButton = gameData.messages.meta.inventory.item_drop_button; - Messages.ItemThrowButton = gameData.messages.meta.inventory.item_throw_button; - Messages.ItemConsumeButton = gameData.messages.meta.inventory.item_consume_button; - Messages.ItemUseButton = gameData.messages.meta.inventory.item_use_button; - Messages.ItemReadButton = gameData.messages.meta.inventory.item_read_button; - - // Npc - - Messages.NpcStartChatFormat = gameData.messages.npc.start_chat_format; - Messages.NpcChatpointFormat = gameData.messages.npc.chatpoint_format; - Messages.NpcReplyFormat = gameData.messages.npc.reply_format; - - // Map Data - - Map.OverlayTileDepth = gameData.tile_paramaters.overlay_tiles.tile_depth.ToObject(); - - List terrainTiles = new List(); - int totalTerrainTiles = gameData.tile_paramaters.terrain_tiles.Count; - for(int i = 0; i < totalTerrainTiles; i++) - { - Map.TerrainTile tile = new Map.TerrainTile(); - tile.Passable = gameData.tile_paramaters.terrain_tiles[i].passable; - tile.Type = gameData.tile_paramaters.terrain_tiles[i].tile_type; - Logger.DebugPrint("Registered Tile: " + i + " Passable: " + tile.Passable + " Type: " + tile.Type); - terrainTiles.Add(tile); - } - Map.TerrainTiles = terrainTiles.ToArray(); - - // Disconnect Reasons - - Messages.BanMessage = gameData.messages.disconnect.banned; - Messages.IdleKickMessageFormat = gameData.messages.disconnect.client_timeout.kick_message; - Messages.IdleWarningFormat = gameData.messages.disconnect.client_timeout.warn_message; - - Chat.PrivateMessageSound = gameData.messages.chat.pm_sound; - - Server.IdleWarning = gameData.messages.disconnect.client_timeout.warn_after; - Server.IdleTimeout = gameData.messages.disconnect.client_timeout.kick_after; - - // Inventory - - Messages.DefaultInventoryMax = gameData.item.max_carryable; - - - // Swf - Messages.WagonCutscene = gameData.transport.wagon_cutscene; - Messages.BoatCutscene = gameData.transport.boat_cutscene; - Messages.BallonCutscene = gameData.transport.ballon_cutscene; - - } - - } -} +using System.Collections.Generic; +using System.IO; +using Newtonsoft.Json; +using HISP.Game; + +namespace HISP.Server +{ + class Gamedata + { + + public static void ReadGamedata() + { + if(!File.Exists(ConfigReader.GameDataFile)) + { + Logger.ErrorPrint("Game Data JSON File: " + ConfigReader.GameDataFile + " Does not exist!"); + return; + } + string jsonData = File.ReadAllText(ConfigReader.GameDataFile); + dynamic gameData = JsonConvert.DeserializeObject(jsonData); + + // Register Towns + int totalTowns = gameData.places.towns.Count; + for (int i = 0; i < totalTowns; i++) + { + + World.Town town = new World.Town(); + town.StartX = gameData.places.towns[i].start_x; + town.StartY = gameData.places.towns[i].start_y; + town.EndX = gameData.places.towns[i].end_x; + town.EndY = gameData.places.towns[i].end_y; + town.Name = gameData.places.towns[i].name; + + Logger.DebugPrint("Registered Town: " + town.Name + " X " + town.StartX + "-" + town.EndX + " Y " + town.StartY + "-" + town.EndY); + World.Towns.Add(town); + } + + // Register Areas + int totalAreas = gameData.places.towns.Count; + for (int i = 0; i < totalAreas; i++) + { + + World.Area area = new World.Area(); + area.StartX = gameData.places.areas[i].start_x; + area.StartY = gameData.places.areas[i].start_y; + area.EndX = gameData.places.areas[i].end_x; + area.EndY = gameData.places.areas[i].end_y; + area.Name = gameData.places.areas[i].name; + + Logger.DebugPrint("Registered Area: " + area.Name + " X " + area.StartX + "-" + area.EndX + " Y " + area.StartY + "-" + area.EndY); + World.Areas.Add(area); + } + + // Register Isles + int totalIsles = gameData.places.isles.Count; + for(int i = 0; i < totalIsles; i++) + { + + World.Isle isle = new World.Isle(); + isle.StartX = gameData.places.isles[i].start_x; + isle.StartY = gameData.places.isles[i].start_y; + isle.EndX = gameData.places.isles[i].end_x; + isle.EndY = gameData.places.isles[i].end_y; + isle.Tileset = gameData.places.isles[i].tileset; + isle.Name = gameData.places.isles[i].name; + + Logger.DebugPrint("Registered Isle: " + isle.Name + " X " + isle.StartX + "-" + isle.EndX + " Y " + isle.StartY + "-" + isle.EndY + " tileset: " + isle.Tileset); + World.Isles.Add(isle); + } + + // Register Special Tiles + int totalSpecialTiles = gameData.places.special_tiles.Count; + for (int i = 0; i < totalSpecialTiles; i++) + { + + World.SpecialTile specialTile = new World.SpecialTile(); + specialTile.X = gameData.places.special_tiles[i].x; + specialTile.Y = gameData.places.special_tiles[i].y; + specialTile.Title = gameData.places.special_tiles[i].title; + specialTile.Description = gameData.places.special_tiles[i].description; + specialTile.Code = gameData.places.special_tiles[i].code; + if(gameData.places.special_tiles[i].exit_x != null) + specialTile.ExitX = gameData.places.special_tiles[i].exit_x; + if(gameData.places.special_tiles[i].exit_x != null) + specialTile.ExitY = gameData.places.special_tiles[i].exit_y; + specialTile.AutoplaySwf = gameData.places.special_tiles[i].autoplay_swf; + specialTile.TypeFlag = gameData.places.special_tiles[i].type_flag; + + Logger.DebugPrint("Registered Special Tile: " + specialTile.Title + " X " + specialTile.X + " Y: " + specialTile.Y); + World.SpecialTiles.Add(specialTile); + } + + // Register Filter Reasons + int totalReasons = gameData.messages.chat.reason_messages.Count; + for(int i = 0; i < totalReasons; i++) + { + Chat.Reason reason = new Chat.Reason(); + reason.Name = gameData.messages.chat.reason_messages[i].name; + reason.Message = gameData.messages.chat.reason_messages[i].message; + Chat.Reasons.Add(reason); + + Logger.DebugPrint("Registered Chat Warning Reason: " + reason.Name + " (Message: " + reason.Message + ")"); + } + // Register Filters + + int totalFilters = gameData.messages.chat.filter.Count; + for(int i = 0; i < totalFilters; i++) + { + Chat.Filter filter = new Chat.Filter(); + filter.FilteredWord = gameData.messages.chat.filter[i].word; + filter.MatchAll = gameData.messages.chat.filter[i].match_all; + filter.Reason = Chat.GetReason((string)gameData.messages.chat.filter[i].reason_type); + Chat.FilteredWords.Add(filter); + + Logger.DebugPrint("Registered Filtered Word: " + filter.FilteredWord + " With reason: "+filter.Reason.Name+" (Matching all: " + filter.MatchAll + ")"); + } + + // Register Corrections + int totalCorrections = gameData.messages.chat.correct.Count; + for (int i = 0; i < totalCorrections; i++) + { + Chat.Correction correction = new Chat.Correction(); + correction.FilteredWord = gameData.messages.chat.correct[i].word; + correction.ReplacedWord = gameData.messages.chat.correct[i].new_word; + Chat.CorrectedWords.Add(correction); + + Logger.DebugPrint("Registered Word Correction: " + correction.FilteredWord + " to "+correction.ReplacedWord); + } + + // Register Transports + + int totalTransportPoints = gameData.transport.transport_points.Count; + for (int i = 0; i < totalTransportPoints; i++) + { + Transport.TransportPoint transportPoint = new Transport.TransportPoint(); + transportPoint.X = gameData.transport.transport_points[i].x; + transportPoint.Y = gameData.transport.transport_points[i].y; + transportPoint.Locations = gameData.transport.transport_points[i].places.ToObject(); + Transport.TransportPoints.Add(transportPoint); + + Logger.DebugPrint("Registered Transport Point: At X: " + transportPoint.X + " Y: " + transportPoint.Y); + } + + int totalTransportPlaces = gameData.transport.transport_places.Count; + for (int i = 0; i < totalTransportPlaces; i++) + { + Transport.TransportLocation transportPlace = new Transport.TransportLocation(); + transportPlace.Id = gameData.transport.transport_places[i].id; + transportPlace.Cost = gameData.transport.transport_places[i].cost; + transportPlace.GotoX = gameData.transport.transport_places[i].goto_x; + transportPlace.GotoY = gameData.transport.transport_places[i].goto_y; + transportPlace.Type = gameData.transport.transport_places[i].type; + transportPlace.LocationTitle = gameData.transport.transport_places[i].place_title; + Transport.TransportLocations.Add(transportPlace); + + Logger.DebugPrint("Registered Transport Location: "+ transportPlace.LocationTitle+" To Goto X: " + transportPlace.GotoX + " Y: " + transportPlace.GotoY); + } + + // Register Items + int totalItems = gameData.item.item_list.Count; + for (int i = 0; i < totalItems; i++) + { + Item.ItemInformation item = new Item.ItemInformation(); + item.Id = gameData.item.item_list[i].id; + item.Name = gameData.item.item_list[i].name; + item.PluralName = gameData.item.item_list[i].plural_name; + item.Description = gameData.item.item_list[i].description; + item.IconId = gameData.item.item_list[i].icon_id; + item.SortBy = gameData.item.item_list[i].sort_by; + item.SellPrice = gameData.item.item_list[i].sell_price; + item.EmbedSwf = gameData.item.item_list[i].embed_swf; + item.WishingWell = gameData.item.item_list[i].wishing_well; + item.Type = gameData.item.item_list[i].type; + item.MiscFlags = gameData.item.item_list[i].misc_flags.ToObject(); + int effectsCount = gameData.item.item_list[i].effects.Count; + + Item.Effects[] effectsList = new Item.Effects[effectsCount]; + for(int ii = 0; ii < effectsCount; ii++) + { + effectsList[ii] = new Item.Effects(); + effectsList[ii].EffectsWhat = gameData.item.item_list[i].effects[ii].effect_what; + effectsList[ii].EffectAmount = gameData.item.item_list[i].effects[ii].effect_amount; + } + + item.Effects = effectsList; + item.SpawnParamaters = new Item.SpawnRules(); + item.SpawnParamaters.SpawnCap = gameData.item.item_list[i].spawn_parameters.spawn_cap; + item.SpawnParamaters.SpawnInArea = gameData.item.item_list[i].spawn_parameters.spawn_in_area; + item.SpawnParamaters.SpawnOnTileType = gameData.item.item_list[i].spawn_parameters.spawn_on_tile_type; + item.SpawnParamaters.SpawnOnSpecialTile = gameData.item.item_list[i].spawn_parameters.spawn_on_special_tile; + item.SpawnParamaters.SpawnNearSpecialTile = gameData.item.item_list[i].spawn_parameters.spawn_near_special_tile; + + Logger.DebugPrint("Registered Item ID: " + item.Id + " Name: " + item.Name + " spawns on: "+item.SpawnParamaters.SpawnOnTileType); + Item.Items.Add(item); + } + + int totalThrowable = gameData.item.throwable.Count; + for(int i = 0; i < totalThrowable; i++) + { + Item.ThrowableItem throwableItem = new Item.ThrowableItem(); + throwableItem.Id = gameData.item.throwable[i].id; + throwableItem.Message = gameData.item.throwable[i].message; + Item.ThrowableItems.Add(throwableItem); + } + + // Register NPCs + Logger.DebugPrint("Registering NPCS: "); + int totalNpcs = gameData.npc_list.Count; + for(int i = 0; i < totalNpcs; i++) + { + Npc.NpcEntry npcEntry = new Npc.NpcEntry(); + npcEntry.Id = gameData.npc_list[i].id; + npcEntry.Name = gameData.npc_list[i].name; + npcEntry.AdminDescription = gameData.npc_list[i].admin_description; + npcEntry.ShortDescription = gameData.npc_list[i].short_description; + npcEntry.LongDescription = gameData.npc_list[i].long_description; + npcEntry.Moves = gameData.npc_list[i].moves; + npcEntry.X = gameData.npc_list[i].x; + npcEntry.Y = gameData.npc_list[i].y; + if (gameData.npc_list[i].stay_on != null) + npcEntry.StayOn = gameData.npc_list[i].stay_on; + if (gameData.npc_list[i].requires_questid_completed != null) + npcEntry.RequiresQuestIdCompleted = gameData.npc_list[i].requires_questid_completed; + if (gameData.npc_list[i].requires_questid_not_completed != null) + npcEntry.RequiresQuestIdNotCompleted = gameData.npc_list[i].requires_questid_not_completed; + if (gameData.npc_list[i].udlr_script != null) + npcEntry.UDLRScript = gameData.npc_list[i].udlr_script; + if (gameData.npc_list[i].udlr_start_x != null) + npcEntry.UDLRStartX = gameData.npc_list[i].udlr_start_x; + if (gameData.npc_list[i].udlr_start_y != null) + npcEntry.UDLRStartY = gameData.npc_list[i].udlr_start_y; + npcEntry.AdminOnly = gameData.npc_list[i].admin_only; + npcEntry.LibarySearchable = gameData.npc_list[i].libary_searchable; + npcEntry.IconId = gameData.npc_list[i].icon_id; + + Logger.DebugPrint("\tNPC ID:" + npcEntry.Id.ToString() + " NAME: " + npcEntry.Name); + List chats = new List(); + int totalNpcChat = gameData.npc_list[i].chatpoints.Count; + for (int ii = 0; ii < totalNpcChat; ii++) + { + Npc.NpcChat npcChat = new Npc.NpcChat(); + npcChat.Id = gameData.npc_list[i].chatpoints[ii].chatpoint_id; + npcChat.ChatText = gameData.npc_list[i].chatpoints[ii].chat_text; + npcChat.ActivateQuestId = gameData.npc_list[i].chatpoints[ii].activate_questid; + + Logger.DebugPrint("\t\tCHATPOINT ID: " + npcChat.Id.ToString() + " TEXT: " + npcChat.ChatText); + int totalNpcReply = gameData.npc_list[i].chatpoints[ii].replies.Count; + List replys = new List(); + for (int iii = 0; iii < totalNpcReply; iii++) + { + Npc.NpcReply npcReply = new Npc.NpcReply(); + npcReply.Id = gameData.npc_list[i].chatpoints[ii].replies[iii].reply_id; + npcReply.ReplyText = gameData.npc_list[i].chatpoints[ii].replies[iii].reply_text; + npcReply.GotoChatpoint = gameData.npc_list[i].chatpoints[ii].replies[iii].goto_chatpoint; + + if (gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_completed != null) + npcReply.RequiresQuestIdCompleted = gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_completed; + + if (gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_not_completed != null) + npcReply.RequiresQuestIdNotCompleted = gameData.npc_list[i].chatpoints[ii].replies[iii].requires_questid_not_completed; + + Logger.DebugPrint("\t\t\tREPLY ID: " + npcReply.Id.ToString() + " TEXT: " + npcReply.ReplyText); + replys.Add(npcReply); + + } + npcChat.Replies = replys.ToArray(); + chats.Add(npcChat); + } + npcEntry.Chatpoints = chats.ToArray(); + Npc.NpcList.Add(npcEntry); + } + + // Register Quests + + Logger.DebugPrint("Registering Quests: "); + int totalQuests = gameData.quest_list.Count; + for(int i = 0; i < totalQuests; i++) + { + Quest.QuestEntry quest = new Quest.QuestEntry(); + quest.Id = gameData.quest_list[i].id; + quest.Notes = gameData.quest_list[i].notes; + if(gameData.quest_list[i].title != null) + quest.Title = gameData.quest_list[i].title; + quest.RequiresQuestIdComplete = gameData.quest_list[i].requires_questid_npc.ToObject(); + if (gameData.quest_list[i].alt_activation != null) + { + quest.AltActivation = new Quest.QuestAltActivation(); + quest.AltActivation.Type = gameData.quest_list[i].alt_activation.type; + quest.AltActivation.ActivateX = gameData.quest_list[i].alt_activation.x; + quest.AltActivation.ActivateY = gameData.quest_list[i].alt_activation.y; + } + quest.Tracked = gameData.quest_list[i].tracked; + quest.MaxRepeats = gameData.quest_list[i].max_repeats; + quest.MoneyCost = gameData.quest_list[i].money_cost; + int itemsRequiredCount = gameData.quest_list[i].items_required.Count; + + List itmInfo = new List(); + for(int ii = 0; ii < itemsRequiredCount; ii++) + { + Quest.QuestItemInfo itemInfo = new Quest.QuestItemInfo(); + itemInfo.ItemId = gameData.quest_list[i].items_required[ii].item_id; + itemInfo.Quantity = gameData.quest_list[i].items_required[ii].quantity; + itmInfo.Add(itemInfo); + } + quest.ItemsRequired = itmInfo.ToArray(); + if(gameData.quest_list[i].fail_npc_chat != null) + quest.FailNpcChat = gameData.quest_list[i].fail_npc_chat; + quest.MoneyEarned = gameData.quest_list[i].money_gained; + + int itemsGainedCount = gameData.quest_list[i].items_gained.Count; + itmInfo = new List(); + for (int ii = 0; ii < itemsGainedCount; ii++) + { + Quest.QuestItemInfo itemInfo = new Quest.QuestItemInfo(); + itemInfo.ItemId = gameData.quest_list[i].items_gained[ii].item_id; + itemInfo.Quantity = gameData.quest_list[i].items_gained[ii].quantity; + itmInfo.Add(itemInfo); + } + quest.ItemsEarned = itmInfo.ToArray(); + + quest.QuestPointsEarned = gameData.quest_list[i].quest_points; + quest.GotoNpcChatpoint = gameData.quest_list[i].goto_npc_chatpoint; + if(gameData.quest_list[i].warp_x != null) + quest.WarpX = gameData.quest_list[i].warp_x; + if(gameData.quest_list[i].warp_y != null) + quest.WarpY = gameData.quest_list[i].warp_y; + if(gameData.quest_list[i].success_message != null) + quest.SuccessMessage = gameData.quest_list[i].success_message; + if(gameData.quest_list[i].success_npc_chat != null) + quest.SuccessNpcChat = gameData.quest_list[i].success_npc_chat; + if (gameData.quest_list[i].requires_awardid != null) + quest.AwardRequired = gameData.quest_list[i].requires_awardid; + quest.RequiresQuestIdCompleted = gameData.quest_list[i].requires_questid_completed.ToObject(); + quest.RequiresQuestIdNotCompleted = gameData.quest_list[i].requires_questid_not_completed.ToObject(); + quest.HideReplyOnFail = gameData.quest_list[i].hide_reply_on_fail; + if (gameData.quest_list[i].difficulty != null) + quest.Difficulty = gameData.quest_list[i].difficulty; + if (gameData.quest_list[i].author != null) + quest.Author = gameData.quest_list[i].author; + if (gameData.quest_list[i].chained_questid != null) + quest.ChainedQuestId = gameData.quest_list[i].chained_questid; + quest.Minigame = gameData.quest_list[i].minigame; + Logger.DebugPrint("Registered Quest: " + quest.Id); + Quest.QuestList.Add(quest); + } + Item.Present = gameData.item.special.present; + Item.MailMessage = gameData.item.special.mail_message; + Item.DorothyShoes = gameData.item.special.dorothy_shoes; + Item.PawneerOrder = gameData.item.special.pawneer_order; + Item.Telescope = gameData.item.special.telescope; + Item.Pitchfork = gameData.item.special.pitchfork; + + // New Users + Messages.NewUserMessage = gameData.new_user.starting_message; + Map.NewUserStartX = gameData.new_user.starting_x; + Map.NewUserStartY = gameData.new_user.starting_y; + + // Announcements + + Messages.WelcomeFormat = gameData.messages.welcome_format; + Messages.MotdFormat = gameData.messages.motd_format; + Messages.ProfileSavedMessage = gameData.messages.profile_save; + Messages.LoginMessageForamt = gameData.messages.login_format; + Messages.LogoutMessageFormat = gameData.messages.logout_format; + + // Transport + + Messages.CantAffordTransport = gameData.messages.transport.not_enough_money; + Messages.WelcomeToAreaFormat = gameData.messages.transport.welcome_to_format; + + // Chat + + Messages.ChatViolationMessageFormat = gameData.messages.chat.violation_format; + Messages.RequiredChatViolations = gameData.messages.chat.violation_points_required; + + Messages.GlobalChatFormatForModerators = gameData.messages.chat.for_others.global_format_moderator; + Messages.DirectChatFormatForModerators = gameData.messages.chat.for_others.dm_format_moderator; + + + Messages.HereChatFormat = gameData.messages.chat.for_others.here_format; + Messages.IsleChatFormat = gameData.messages.chat.for_others.isle_format; + Messages.NearChatFormat = gameData.messages.chat.for_others.near_format; + Messages.GlobalChatFormat = gameData.messages.chat.for_others.global_format; + Messages.AdsChatFormat = gameData.messages.chat.for_others.ads_format; + Messages.DirectChatFormat = gameData.messages.chat.for_others.dm_format; + Messages.BuddyChatFormat = gameData.messages.chat.for_others.friend_format; + Messages.ModChatFormat = gameData.messages.chat.for_others.mod_format; + Messages.AdminChatFormat = gameData.messages.chat.for_others.admin_format; + + Messages.HereChatFormatForSender = gameData.messages.chat.for_sender.here_format; + Messages.IsleChatFormatForSender = gameData.messages.chat.for_sender.isle_format; + Messages.NearChatFormatForSender = gameData.messages.chat.for_sender.near_format; + Messages.BuddyChatFormatForSender = gameData.messages.chat.for_sender.friend_format; + Messages.DirectChatFormatForSender = gameData.messages.chat.for_sender.dm_format; + Messages.ModChatFormatForSender = gameData.messages.chat.for_sender.mod_format; + Messages.AdminChatFormatForSender = gameData.messages.chat.for_sender.admin_format; + + + Messages.PasswordNotice = gameData.messages.chat.password_included; + Messages.CapsNotice = gameData.messages.chat.caps_notice; + + // Hardcoded messages + + Messages.NothingMessage = gameData.messages.meta.dropped_items.nothing_message; + Messages.ItemsOnGroundMessage = gameData.messages.meta.dropped_items.items_message; + Messages.GrabItemFormat = gameData.messages.meta.dropped_items.item_format; + Messages.GrabAllItemsButton = gameData.messages.meta.dropped_items.grab_all; + Messages.DroppedAnItemMessage = gameData.messages.dropped_item_message; + Messages.GrabbedAllObjectsMessage = gameData.messages.grab_all_message; + + // Tools + Messages.BinocularsNothing = gameData.messages.tools.binoculars; + Messages.MagnifyNothing = gameData.messages.tools.magnify; + Messages.RakeNothing = gameData.messages.tools.rake; + Messages.ShovelNothing = gameData.messages.tools.shovel; + + // Meta Format + + Messages.LocationFormat = gameData.messages.meta.location_format; + Messages.IsleFormat = gameData.messages.meta.isle_format; + Messages.TownFormat = gameData.messages.meta.town_format; + Messages.AreaFormat = gameData.messages.meta.area_format; + Messages.Seperator = gameData.messages.meta.seperator; + Messages.TileFormat = gameData.messages.meta.tile_format; + Messages.TransportFormat = gameData.messages.meta.transport_format; + Messages.ExitThisPlace = gameData.messages.meta.exit_this_place; + Messages.BackToMap = gameData.messages.meta.back_to_map; + Messages.LongFullLine = gameData.messages.meta.long_full_line; + Messages.MetaTerminator = gameData.messages.meta.end_of_meta; + + Messages.GrabbedItemMessage = gameData.messages.grab_message; + Messages.GrabAllItemsMessage = gameData.messages.grab_all_message; + + Messages.NearbyPlayers = gameData.messages.meta.nearby.players_nearby; + Messages.North = gameData.messages.meta.nearby.north; + Messages.East = gameData.messages.meta.nearby.east; + Messages.South = gameData.messages.meta.nearby.south; + Messages.West = gameData.messages.meta.nearby.west; + + // Inventory + + Messages.InventoryHeaderFormat = gameData.messages.meta.inventory.header_format; + Messages.InventoryItemFormat = gameData.messages.meta.inventory.item_entry; + + Messages.ItemInformationButton = gameData.messages.meta.inventory.item_info_button; + Messages.ItemDropButton = gameData.messages.meta.inventory.item_drop_button; + Messages.ItemThrowButton = gameData.messages.meta.inventory.item_throw_button; + Messages.ItemConsumeButton = gameData.messages.meta.inventory.item_consume_button; + Messages.ItemUseButton = gameData.messages.meta.inventory.item_use_button; + Messages.ItemReadButton = gameData.messages.meta.inventory.item_read_button; + + // Npc + + Messages.NpcStartChatFormat = gameData.messages.npc.start_chat_format; + Messages.NpcChatpointFormat = gameData.messages.npc.chatpoint_format; + Messages.NpcReplyFormat = gameData.messages.npc.reply_format; + Messages.NpcTalkButton = gameData.messages.npc.npc_talk_button; + Messages.NpcInformationButton = gameData.messages.npc.npc_information_button; + + // Map Data + + Map.OverlayTileDepth = gameData.tile_paramaters.overlay_tiles.tile_depth.ToObject(); + + List terrainTiles = new List(); + int totalTerrainTiles = gameData.tile_paramaters.terrain_tiles.Count; + for(int i = 0; i < totalTerrainTiles; i++) + { + Map.TerrainTile tile = new Map.TerrainTile(); + tile.Passable = gameData.tile_paramaters.terrain_tiles[i].passable; + tile.Type = gameData.tile_paramaters.terrain_tiles[i].tile_type; + Logger.DebugPrint("Registered Tile: " + i + " Passable: " + tile.Passable + " Type: " + tile.Type); + terrainTiles.Add(tile); + } + Map.TerrainTiles = terrainTiles.ToArray(); + + // Disconnect Reasons + + Messages.BanMessage = gameData.messages.disconnect.banned; + Messages.IdleKickMessageFormat = gameData.messages.disconnect.client_timeout.kick_message; + Messages.IdleWarningFormat = gameData.messages.disconnect.client_timeout.warn_message; + + Chat.PrivateMessageSound = gameData.messages.chat.pm_sound; + + GameServer.IdleWarning = gameData.messages.disconnect.client_timeout.warn_after; + GameServer.IdleTimeout = gameData.messages.disconnect.client_timeout.kick_after; + + // Inventory + + Messages.DefaultInventoryMax = gameData.item.max_carryable; + + + // Swf + Messages.WagonCutscene = gameData.transport.wagon_cutscene; + Messages.BoatCutscene = gameData.transport.boat_cutscene; + Messages.BallonCutscene = gameData.transport.ballon_cutscene; + + } + + } +} diff --git a/Horse Isle Server/Horse Isle Server/Logger.cs b/Horse Isle Server/Horse Isle Server/Server/Logger.cs similarity index 81% rename from Horse Isle Server/Horse Isle Server/Logger.cs rename to Horse Isle Server/Horse Isle Server/Server/Logger.cs index 7354450..61d83fb 100644 --- a/Horse Isle Server/Horse Isle Server/Logger.cs +++ b/Horse Isle Server/Horse Isle Server/Server/Logger.cs @@ -1,33 +1,29 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Horse_Isle_Server -{ - class Logger - { - public static void HackerPrint(string text) // When someone is obviously cheating. - { - Console.WriteLine("[HACK] " + text); - } - public static void DebugPrint(string text) - { - if (ConfigReader.Debug) - Console.WriteLine("[DEBUG] " + text); - } - public static void WarnPrint(string text) - { - Console.WriteLine("[WARN] " + text); - } - public static void ErrorPrint(string text) - { - Console.WriteLine("[ERROR] " + text); - } - public static void InfoPrint(string text) - { - Console.WriteLine("[INFO] " + text); - } - } -} +using System; + +namespace HISP.Server +{ + class Logger + { + public static void HackerPrint(string text) // When someone is obviously cheating. + { + Console.WriteLine("[HACK] " + text); + } + public static void DebugPrint(string text) + { + if (ConfigReader.Debug) + Console.WriteLine("[DEBUG] " + text); + } + public static void WarnPrint(string text) + { + Console.WriteLine("[WARN] " + text); + } + public static void ErrorPrint(string text) + { + Console.WriteLine("[ERROR] " + text); + } + public static void InfoPrint(string text) + { + Console.WriteLine("[INFO] " + text); + } + } +} diff --git a/Horse Isle Server/Horse Isle Server/PacketBuilder.cs b/Horse Isle Server/Horse Isle Server/Server/PacketBuilder.cs similarity index 96% rename from Horse Isle Server/Horse Isle Server/PacketBuilder.cs rename to Horse Isle Server/Horse Isle Server/Server/PacketBuilder.cs index 879a07d..39577b3 100644 --- a/Horse Isle Server/Horse Isle Server/PacketBuilder.cs +++ b/Horse Isle Server/Horse Isle Server/Server/PacketBuilder.cs @@ -1,629 +1,633 @@ -using System; -using System.IO; -using System.Text; - -namespace Horse_Isle_Server -{ - class PacketBuilder - { - - public const byte PACKET_TERMINATOR = 0x00; - public const byte PACKET_CLIENT_TERMINATOR = 0x0A; - - - public const byte PACKET_LOGIN = 0x7F; - public const byte PACKET_CHAT = 0x14; - public const byte PACKET_MOVE = 0x15; - public const byte PACKET_USERINFO = 0x81; - public const byte PACKET_WORLD = 0x7A; - public const byte PACKET_BASE_STATS = 0x7B; - public const byte PACKET_SWF_CUTSCENE = 0x29; - public const byte PACKET_SWF_MODULE_GENTLE = 0x2A; - public const byte PACKET_PLACE_INFO = 0x1E; - public const byte PACKET_AREA_DEFS = 0x79; - public const byte PACKET_ITEM_INTERACTION = 0x1E; - public const byte PACKET_ANNOUNCEMENT = 0x7E; - public const byte PACKET_TILE_FLAGS = 0x75; - public const byte PACKET_PLAYSOUND = 0x23; - public const byte PACKET_KEEP_ALIVE = 0x7C; - public const byte PACKET_PROFILE = 0x18; - public const byte PACKET_INVENTORY = 0x17; - public const byte PACKET_TRANSPORT = 0x29; - public const byte PACKET_KICK = 0x80; - public const byte PACKET_LEAVE = 0x7D; - public const byte PACKET_NPC = 0x28; - public const byte PACKET_PLAYERINFO = 0x16; - - public const byte NPC_START_CHAT = 0x14; - public const byte NPC_CONTINUE_CHAT = 0x15; - - public const byte PLAYERINFO_LEAVE = 0x16; - public const byte PLAYERINFO_UPDATE_OR_CREATE = 0x15; - - public const byte VIEW_PROFILE = 0x14; - public const byte SAVE_PROFILE = 0x15; - - public const byte AREA_SEPERATOR = 0x5E; - public const byte AREA_TOWN = 0x54; - public const byte AREA_AREA = 0x41; - public const byte AREA_ISLE = 0x49; - - public const byte MOVE_UP = 0x14; - public const byte MOVE_DOWN = 0x15; - public const byte MOVE_RIGHT = 0x16; - public const byte MOVE_LEFT = 0x17; - public const byte MOVE_ESCAPE = 0x18; - public const byte MOVE_UPDATE = 0x0A; - - public const byte CHAT_BOTTOM_LEFT = 0x14; - public const byte CHAT_BOTTOM_RIGHT = 0x15; - public const byte CHAT_DM_RIGHT = 0x16; - - public const byte ITEM_DROP = 0x1E; - public const byte ITEM_PICKUP = 0x14; - - public const byte LOGIN_INVALID_USER_PASS = 0x15; - public const byte LOGIN_SUCCESS = 0x14; - - public const byte DIRECTION_UP = 0; - public const byte DIRECTION_RIGHT = 1; - public const byte DIRECTION_DOWN = 2; - public const byte DIRECTION_LEFT = 3; - public const byte DIRECTION_TELEPORT = 4; - public const byte DIRECTION_NONE = 10; - - - public static byte[] CreatePlaysoundPacket(string sound) - { - MemoryStream ms = new MemoryStream(); - ms.WriteByte(PACKET_PLAYSOUND); - - byte[] strBytes = Encoding.UTF8.GetBytes(sound); - ms.Write(strBytes, 0x00, strBytes.Length); - - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - public static byte[] CreatePlayerLeavePacket(string username) - { - MemoryStream ms = new MemoryStream(); - - ms.WriteByte(PACKET_PLAYERINFO); - ms.WriteByte(PLAYERINFO_LEAVE); - - byte[] strBytes = Encoding.UTF8.GetBytes(username); - ms.Write(strBytes, 0x00, strBytes.Length); - - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - public static byte[] CreatePlayerInfoUpdateOrCreate(int x, int y, int facing, int charId, string username) - { - MemoryStream ms = new MemoryStream(); - - ms.WriteByte(PACKET_PLAYERINFO); - ms.WriteByte(PLAYERINFO_UPDATE_OR_CREATE); - - ms.WriteByte((byte)(((x - 4) / 64) + 20)); - ms.WriteByte((byte)(((x - 4) % 64) + 20)); - - ms.WriteByte((byte)(((y - 1) / 64) + 20)); - ms.WriteByte((byte)(((y - 1) % 64) + 20)); - - ms.WriteByte((byte)(facing + 20)); - - ms.WriteByte((byte)((charId / 64) + 20)); //6 - ms.WriteByte((byte)((charId % 64) + 20)); //7 - - - byte[] strBytes = Encoding.UTF8.GetBytes(username); - ms.Write(strBytes, 0x00, strBytes.Length); - - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - - public static byte[] CreateLoginPacket(bool Success) - { - MemoryStream ms = new MemoryStream(); - ms.WriteByte(PACKET_LOGIN); - if (Success) - ms.WriteByte(LOGIN_SUCCESS); - else - ms.WriteByte(LOGIN_INVALID_USER_PASS); - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - - public static byte[] CreateProfilePacket(string userProfile) - { - MemoryStream ms = new MemoryStream(); - - ms.WriteByte(PACKET_PROFILE); - - byte[] strBytes = Encoding.UTF8.GetBytes(userProfile); - ms.Write(strBytes, 0x00, strBytes.Length); - - ms.WriteByte(PACKET_TERMINATOR); - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - - public static byte[] CreateMovementPacket(int x, int y,int charId,int facing, int direction, bool walk) - { - // Header information - MemoryStream ms = new MemoryStream(); - ms.WriteByte(PACKET_MOVE); - - ms.WriteByte((byte)(((x-4) / 64) + 20)); //1 - ms.WriteByte((byte)(((x-4) % 64) + 20)); //2 - - ms.WriteByte((byte)(((y-1) / 64) + 20)); //3 - ms.WriteByte((byte)(((y-1) % 64) + 20)); //4 - - ms.WriteByte((byte)(facing + 20)); //5 - - ms.WriteByte((byte)((charId / 64) + 20)); //6 - ms.WriteByte((byte)((charId % 64) + 20)); //7 - - ms.WriteByte((byte)(direction + 20)); //8 - - ms.WriteByte((byte)(Convert.ToInt32(walk) + 20)); //9 - - // Map Data - - if (direction >= 20) - { - direction -= 20; - } - - int ystart = y - 4; - int xstart = x - 6; - - if (direction == DIRECTION_UP) - { - for (int relx = 0; relx <= 12; relx++) - { - int tileId = Map.GetTileId(xstart + relx, ystart, false); - int otileId = Map.GetTileId(xstart + relx, ystart, true); - - if (tileId >= 190) - { - ms.WriteByte((byte)190); - tileId -= 100; - } - ms.WriteByte((byte)tileId); - - if (otileId >= 190) - { - ms.WriteByte((byte)190); - otileId -= 100; - } - ms.WriteByte((byte)otileId); - } - } - - if (direction == DIRECTION_LEFT) - { - for (int rely = 0; rely <= 9; rely++) - { - int tileId = Map.GetTileId(xstart, ystart + rely, false); - int otileId = Map.GetTileId(xstart, ystart + rely, true); - - - - if (tileId >= 190) - { - ms.WriteByte((byte)190); - tileId -= 100; - } - ms.WriteByte((byte)tileId); - - if (otileId >= 190) - { - ms.WriteByte((byte)190); - otileId -= 100; - } - ms.WriteByte((byte)otileId); - } - } - - - if (direction == DIRECTION_RIGHT) - { - for (int rely = 0; rely <= 9; rely++) - { - int tileId = Map.GetTileId(xstart + 12, ystart + rely, false); - int otileId = Map.GetTileId(xstart + 12, ystart + rely, true); - - - if (tileId >= 190) - { - ms.WriteByte((byte)190); - tileId -= 100; - } - ms.WriteByte((byte)tileId); - - if (otileId >= 190) - { - ms.WriteByte((byte)190); - otileId -= 100; - } - ms.WriteByte((byte)otileId); - } - } - - if (direction == DIRECTION_DOWN) - { - for (int relx = 0; relx <= 12; relx++) - { - int tileId = Map.GetTileId(xstart + relx, ystart + 9, false); - int otileId = Map.GetTileId(xstart + relx, ystart + 9, true); - - - if (tileId >= 190) - { - ms.WriteByte((byte)190); - tileId -= 100; - } - ms.WriteByte((byte)tileId); - - if (otileId >= 190) - { - ms.WriteByte((byte)190); - otileId -= 100; - } - ms.WriteByte((byte)otileId); - } - } - if (direction == DIRECTION_TELEPORT) - { - for(int rely = 0; rely <= 9; rely++) - { - for (int relx = 0; relx <= 12; relx++) - { - int tileId = Map.GetTileId(xstart + relx, ystart + rely, false); - int otileId = Map.GetTileId(xstart + relx, ystart + rely, true); - - if(tileId >= 190) - { - ms.WriteByte((byte)190); - tileId -= 100; - } - ms.WriteByte((byte)tileId); - - if (otileId >= 190) - { - ms.WriteByte((byte)190); - otileId -= 100; - } - ms.WriteByte((byte)otileId); - - } - } - - } - - - ms.WriteByte(PACKET_TERMINATOR); - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - //Logger.DebugPrint(BitConverter.ToString(Packet).Replace("-", " ")); - return Packet; - } - - public static byte[] CreateMetaPacket(string formattedText) - { - byte[] strBytes = Encoding.UTF8.GetBytes(formattedText); - - MemoryStream ms = new MemoryStream(); - - ms.WriteByte(PACKET_PLACE_INFO); - - ms.Write(strBytes, 0x00, strBytes.Length); - - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - public static byte[] CreateChat(string formattedText, byte chatWindow) - { - byte[] strBytes = Encoding.UTF8.GetBytes(formattedText); - - MemoryStream ms = new MemoryStream(); - - ms.WriteByte(PACKET_CHAT); - ms.WriteByte(chatWindow); - - ms.Write(strBytes, 0x00, strBytes.Length); - - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - - public static byte[] CreateWorldData(int gameTime, int gameDay, int gameYear, string weather) - { - byte[] strBytes = Encoding.UTF8.GetBytes(weather); - - MemoryStream ms = new MemoryStream(); - ms.WriteByte(PACKET_WORLD); - - ms.WriteByte((byte)((gameTime / 64) + 20)); - ms.WriteByte((byte)((gameTime % 64) + 20)); - - ms.WriteByte((byte)((gameDay / 64) + 20)); - ms.WriteByte((byte)((gameDay % 64) + 20)); - - ms.WriteByte((byte)((gameYear / 64) + 20)); - ms.WriteByte((byte)((gameYear % 64) + 20)); - - ms.Write(strBytes,0x00, strBytes.Length); - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - - public static byte[] CreateKeepAlive() - { - MemoryStream ms = new MemoryStream(); - - ms.WriteByte(PACKET_KEEP_ALIVE); - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - public static byte[] CreatePlaceData(World.Isle[] isles, World.Town[] towns, World.Area[] areas) - { - MemoryStream ms = new MemoryStream(); - ms.WriteByte(PACKET_AREA_DEFS); - - // Write Towns - - foreach (World.Town town in towns) - { - byte[] strBytes = Encoding.UTF8.GetBytes(town.Name); - - ms.WriteByte(AREA_SEPERATOR); - ms.WriteByte(AREA_TOWN); - - ms.WriteByte((byte)(((town.StartX - 4) / 64) + 20)); - ms.WriteByte((byte)(((town.StartX - 4) % 64) + 20)); - - ms.WriteByte((byte)(((town.EndX - 4) / 64) + 20)); - ms.WriteByte((byte)(((town.EndX - 4) % 64) + 20)); - - ms.WriteByte((byte)(((town.StartY - 1) / 64) + 20)); - ms.WriteByte((byte)(((town.StartY - 1) % 64) + 20)); - - ms.WriteByte((byte)(((town.EndY - 1) / 64) + 20)); - ms.WriteByte((byte)(((town.EndY - 1) % 64) + 20)); - - - ms.Write(strBytes, 0x00, strBytes.Length); - } - - // Write Areas - - foreach (World.Area area in areas) - { - byte[] strBytes = Encoding.UTF8.GetBytes(area.Name); - - ms.WriteByte(AREA_SEPERATOR); - ms.WriteByte(AREA_AREA); - - ms.WriteByte((byte)(((area.StartX - 4) / 64) + 20)); - ms.WriteByte((byte)(((area.StartX - 4) % 64) + 20)); - - ms.WriteByte((byte)(((area.EndX - 4) / 64) + 20)); - ms.WriteByte((byte)(((area.EndX - 4) % 64) + 20)); - - ms.WriteByte((byte)(((area.StartY - 1) / 64) + 20)); - ms.WriteByte((byte)(((area.StartY - 1) % 64) + 20)); - - ms.WriteByte((byte)(((area.EndY - 1) / 64) + 20)); - ms.WriteByte((byte)(((area.EndY - 1) % 64) + 20)); - - - ms.Write(strBytes, 0x00, strBytes.Length); - } - - // Write Isles - - foreach (World.Isle isle in isles) - { - byte[] strBytes = Encoding.UTF8.GetBytes(isle.Name); - - ms.WriteByte(AREA_SEPERATOR); - ms.WriteByte(AREA_ISLE); - - ms.WriteByte((byte)(((isle.StartX - 4) / 64) + 20)); - ms.WriteByte((byte)(((isle.StartX - 4) % 64) + 20)); - - ms.WriteByte((byte)(((isle.EndX - 4) / 64) + 20)); - ms.WriteByte((byte)(((isle.EndX - 4) % 64) + 20)); - - ms.WriteByte((byte)(((isle.StartY - 1) / 64) + 20)); - ms.WriteByte((byte)(((isle.StartY - 1) % 64) + 20)); - - ms.WriteByte((byte)(((isle.EndY - 1) / 64) + 20)); - ms.WriteByte((byte)(((isle.EndY - 1) % 64) + 20)); - - ms.WriteByte((byte)isle.Tileset.ToString()[0]); - - ms.Write(strBytes, 0x00, strBytes.Length); - } - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - - public static byte[] CreatePlayerData(int money, int playerCount, int mail) - { - byte[] moneyStrBytes = Encoding.UTF8.GetBytes(money.ToString()); - byte[] playerStrBytes = Encoding.UTF8.GetBytes(playerCount.ToString()); - byte[] mailStrBytes = Encoding.UTF8.GetBytes(mail.ToString()); - - MemoryStream ms = new MemoryStream(); - ms.WriteByte(PACKET_BASE_STATS); - ms.Write(moneyStrBytes, 0x00, moneyStrBytes.Length); - ms.WriteByte((byte)'|'); - ms.Write(playerStrBytes, 0x00, playerStrBytes.Length); - ms.WriteByte((byte)'|'); - ms.Write(mailStrBytes, 0x00, mailStrBytes.Length); - ms.WriteByte((byte)'|'); - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - - public static byte[] CreateTileOverlayFlags(int[] tileDepthFlags) - { - MemoryStream ms = new MemoryStream(); - ms.WriteByte(PACKET_TILE_FLAGS); - - foreach(int tileDepthFlag in tileDepthFlags) - { - ms.WriteByte((byte)tileDepthFlag.ToString()[0]); - } - - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - - public static byte[] CreateSecCode(byte[] SecCodeSeed, int SecCodeInc, bool Admin, bool Moderator) - { - MemoryStream ms = new MemoryStream(); - ms.WriteByte(PACKET_USERINFO); - - ms.WriteByte((byte)(SecCodeSeed[0] + 33)); - ms.WriteByte((byte)(SecCodeSeed[1] + 33)); - ms.WriteByte((byte)(SecCodeSeed[2] + 33)); - ms.WriteByte((byte)(SecCodeInc + 33)); - - char userType = 'N'; // Normal? - if (Moderator) - userType = 'M'; - if (Admin) - userType = 'A'; - - ms.WriteByte((byte)userType); - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - public static byte[] CreateSwfModulePacket(string swf,byte type) - { - MemoryStream ms = new MemoryStream(); - ms.WriteByte(type); - byte[] strBytes = Encoding.UTF8.GetBytes(swf); - ms.Write(strBytes, 0x00, strBytes.Length); - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - public static byte[] CreateAnnouncement(string announcement) - { - MemoryStream ms = new MemoryStream(); - ms.WriteByte(PACKET_ANNOUNCEMENT); - byte[] strBytes = Encoding.UTF8.GetBytes(announcement); - ms.Write(strBytes, 0x00, strBytes.Length); - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - - public static byte[] CreateKickMessage(string reason) - { - MemoryStream ms = new MemoryStream(); - ms.WriteByte(PACKET_KICK); - byte[] strBytes = Encoding.UTF8.GetBytes(reason); - ms.Write(strBytes, 0x00, strBytes.Length); - ms.WriteByte(PACKET_TERMINATOR); - - ms.Seek(0x00, SeekOrigin.Begin); - byte[] Packet = ms.ToArray(); - ms.Dispose(); - - return Packet; - } - - public static byte[] CreateMotd() - { - string formattedMotd = Messages.FormatMOTD(); - return CreateAnnouncement(formattedMotd); - } - public static byte[] CreateWelcomeMessage(string username) - { - string formattedStr = Messages.FormatLoginMessage(username); - return CreateChat(formattedStr, CHAT_BOTTOM_RIGHT); - } - - } -} +using System; +using System.IO; +using System.Text; +using HISP.Game; +namespace HISP.Server +{ + class PacketBuilder + { + + public const byte PACKET_TERMINATOR = 0x00; + public const byte PACKET_CLIENT_TERMINATOR = 0x0A; + + + public const byte PACKET_LOGIN = 0x7F; + public const byte PACKET_CHAT = 0x14; + public const byte PACKET_MOVE = 0x15; + public const byte PACKET_USERINFO = 0x81; + public const byte PACKET_WORLD = 0x7A; + public const byte PACKET_BASE_STATS = 0x7B; + public const byte PACKET_SWF_CUTSCENE = 0x29; + public const byte PACKET_SWF_MODULE_GENTLE = 0x2A; + public const byte PACKET_PLACE_INFO = 0x1E; + public const byte PACKET_AREA_DEFS = 0x79; + public const byte PACKET_ITEM_INTERACTION = 0x1E; + public const byte PACKET_ANNOUNCEMENT = 0x7E; + public const byte PACKET_TILE_FLAGS = 0x75; + public const byte PACKET_PLAYSOUND = 0x23; + public const byte PACKET_KEEP_ALIVE = 0x7C; + public const byte PACKET_PROFILE = 0x18; + public const byte PACKET_INVENTORY = 0x17; + public const byte PACKET_TRANSPORT = 0x29; + public const byte PACKET_KICK = 0x80; + public const byte PACKET_LEAVE = 0x7D; + public const byte PACKET_NPC = 0x28; + public const byte PACKET_PLAYERINFO = 0x16; + + public const byte NPC_START_CHAT = 0x14; + public const byte NPC_CONTINUE_CHAT = 0x15; + + public const byte PLAYERINFO_LEAVE = 0x16; + public const byte PLAYERINFO_UPDATE_OR_CREATE = 0x15; + + public const byte VIEW_PROFILE = 0x14; + public const byte SAVE_PROFILE = 0x15; + + public const byte AREA_SEPERATOR = 0x5E; + public const byte AREA_TOWN = 0x54; + public const byte AREA_AREA = 0x41; + public const byte AREA_ISLE = 0x49; + + public const byte MOVE_UP = 0x14; + public const byte MOVE_DOWN = 0x15; + public const byte MOVE_RIGHT = 0x16; + public const byte MOVE_LEFT = 0x17; + public const byte MOVE_ESCAPE = 0x18; + public const byte MOVE_UPDATE = 0x0A; + + public const byte CHAT_BOTTOM_LEFT = 0x14; + public const byte CHAT_BOTTOM_RIGHT = 0x15; + public const byte CHAT_DM_RIGHT = 0x16; + + public const byte ITEM_DROP = 0x1E; + public const byte ITEM_PICKUP = 0x14; + public const byte ITEM_BINOCULARS = 0x5C; + public const byte ITEM_MAGNIFYING = 0x5D; + public const byte ITEM_RAKE = 0x5B; + public const byte ITEM_SHOVEL = 0x5A; + + public const byte LOGIN_INVALID_USER_PASS = 0x15; + public const byte LOGIN_SUCCESS = 0x14; + + public const byte DIRECTION_UP = 0; + public const byte DIRECTION_RIGHT = 1; + public const byte DIRECTION_DOWN = 2; + public const byte DIRECTION_LEFT = 3; + public const byte DIRECTION_TELEPORT = 4; + public const byte DIRECTION_NONE = 10; + + + public static byte[] CreatePlaysoundPacket(string sound) + { + MemoryStream ms = new MemoryStream(); + ms.WriteByte(PACKET_PLAYSOUND); + + byte[] strBytes = Encoding.UTF8.GetBytes(sound); + ms.Write(strBytes, 0x00, strBytes.Length); + + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + public static byte[] CreatePlayerLeavePacket(string username) + { + MemoryStream ms = new MemoryStream(); + + ms.WriteByte(PACKET_PLAYERINFO); + ms.WriteByte(PLAYERINFO_LEAVE); + + byte[] strBytes = Encoding.UTF8.GetBytes(username); + ms.Write(strBytes, 0x00, strBytes.Length); + + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + public static byte[] CreatePlayerInfoUpdateOrCreate(int x, int y, int facing, int charId, string username) + { + MemoryStream ms = new MemoryStream(); + + ms.WriteByte(PACKET_PLAYERINFO); + ms.WriteByte(PLAYERINFO_UPDATE_OR_CREATE); + + ms.WriteByte((byte)(((x - 4) / 64) + 20)); + ms.WriteByte((byte)(((x - 4) % 64) + 20)); + + ms.WriteByte((byte)(((y - 1) / 64) + 20)); + ms.WriteByte((byte)(((y - 1) % 64) + 20)); + + ms.WriteByte((byte)(facing + 20)); + + ms.WriteByte((byte)((charId / 64) + 20)); //6 + ms.WriteByte((byte)((charId % 64) + 20)); //7 + + + byte[] strBytes = Encoding.UTF8.GetBytes(username); + ms.Write(strBytes, 0x00, strBytes.Length); + + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + + public static byte[] CreateLoginPacket(bool Success) + { + MemoryStream ms = new MemoryStream(); + ms.WriteByte(PACKET_LOGIN); + if (Success) + ms.WriteByte(LOGIN_SUCCESS); + else + ms.WriteByte(LOGIN_INVALID_USER_PASS); + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + + public static byte[] CreateProfilePacket(string userProfile) + { + MemoryStream ms = new MemoryStream(); + + ms.WriteByte(PACKET_PROFILE); + + byte[] strBytes = Encoding.UTF8.GetBytes(userProfile); + ms.Write(strBytes, 0x00, strBytes.Length); + + ms.WriteByte(PACKET_TERMINATOR); + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + + public static byte[] CreateMovementPacket(int x, int y,int charId,int facing, int direction, bool walk) + { + // Header information + MemoryStream ms = new MemoryStream(); + ms.WriteByte(PACKET_MOVE); + + ms.WriteByte((byte)(((x-4) / 64) + 20)); //1 + ms.WriteByte((byte)(((x-4) % 64) + 20)); //2 + + ms.WriteByte((byte)(((y-1) / 64) + 20)); //3 + ms.WriteByte((byte)(((y-1) % 64) + 20)); //4 + + ms.WriteByte((byte)(facing + 20)); //5 + + ms.WriteByte((byte)((charId / 64) + 20)); //6 + ms.WriteByte((byte)((charId % 64) + 20)); //7 + + ms.WriteByte((byte)(direction + 20)); //8 + + ms.WriteByte((byte)(Convert.ToInt32(walk) + 20)); //9 + + // Map Data + + if (direction >= 20) + { + direction -= 20; + } + + int ystart = y - 4; + int xstart = x - 6; + + if (direction == DIRECTION_UP) + { + for (int relx = 0; relx <= 12; relx++) + { + int tileId = Map.GetTileId(xstart + relx, ystart, false); + int otileId = Map.GetTileId(xstart + relx, ystart, true); + + if (tileId >= 190) + { + ms.WriteByte((byte)190); + tileId -= 100; + } + ms.WriteByte((byte)tileId); + + if (otileId >= 190) + { + ms.WriteByte((byte)190); + otileId -= 100; + } + ms.WriteByte((byte)otileId); + } + } + + if (direction == DIRECTION_LEFT) + { + for (int rely = 0; rely <= 9; rely++) + { + int tileId = Map.GetTileId(xstart, ystart + rely, false); + int otileId = Map.GetTileId(xstart, ystart + rely, true); + + + + if (tileId >= 190) + { + ms.WriteByte((byte)190); + tileId -= 100; + } + ms.WriteByte((byte)tileId); + + if (otileId >= 190) + { + ms.WriteByte((byte)190); + otileId -= 100; + } + ms.WriteByte((byte)otileId); + } + } + + + if (direction == DIRECTION_RIGHT) + { + for (int rely = 0; rely <= 9; rely++) + { + int tileId = Map.GetTileId(xstart + 12, ystart + rely, false); + int otileId = Map.GetTileId(xstart + 12, ystart + rely, true); + + + if (tileId >= 190) + { + ms.WriteByte((byte)190); + tileId -= 100; + } + ms.WriteByte((byte)tileId); + + if (otileId >= 190) + { + ms.WriteByte((byte)190); + otileId -= 100; + } + ms.WriteByte((byte)otileId); + } + } + + if (direction == DIRECTION_DOWN) + { + for (int relx = 0; relx <= 12; relx++) + { + int tileId = Map.GetTileId(xstart + relx, ystart + 9, false); + int otileId = Map.GetTileId(xstart + relx, ystart + 9, true); + + + if (tileId >= 190) + { + ms.WriteByte((byte)190); + tileId -= 100; + } + ms.WriteByte((byte)tileId); + + if (otileId >= 190) + { + ms.WriteByte((byte)190); + otileId -= 100; + } + ms.WriteByte((byte)otileId); + } + } + if (direction == DIRECTION_TELEPORT) + { + for(int rely = 0; rely <= 9; rely++) + { + for (int relx = 0; relx <= 12; relx++) + { + int tileId = Map.GetTileId(xstart + relx, ystart + rely, false); + int otileId = Map.GetTileId(xstart + relx, ystart + rely, true); + + if(tileId >= 190) + { + ms.WriteByte((byte)190); + tileId -= 100; + } + ms.WriteByte((byte)tileId); + + if (otileId >= 190) + { + ms.WriteByte((byte)190); + otileId -= 100; + } + ms.WriteByte((byte)otileId); + + } + } + + } + + + ms.WriteByte(PACKET_TERMINATOR); + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + //Logger.DebugPrint(BitConverter.ToString(Packet).Replace("-", " ")); + return Packet; + } + + public static byte[] CreateMetaPacket(string formattedText) + { + byte[] strBytes = Encoding.UTF8.GetBytes(formattedText); + + MemoryStream ms = new MemoryStream(); + + ms.WriteByte(PACKET_PLACE_INFO); + + ms.Write(strBytes, 0x00, strBytes.Length); + + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + public static byte[] CreateChat(string formattedText, byte chatWindow) + { + byte[] strBytes = Encoding.UTF8.GetBytes(formattedText); + + MemoryStream ms = new MemoryStream(); + + ms.WriteByte(PACKET_CHAT); + ms.WriteByte(chatWindow); + + ms.Write(strBytes, 0x00, strBytes.Length); + + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + + public static byte[] CreateWorldData(int gameTime, int gameDay, int gameYear, string weather) + { + byte[] strBytes = Encoding.UTF8.GetBytes(weather); + + MemoryStream ms = new MemoryStream(); + ms.WriteByte(PACKET_WORLD); + + ms.WriteByte((byte)((gameTime / 64) + 20)); + ms.WriteByte((byte)((gameTime % 64) + 20)); + + ms.WriteByte((byte)((gameDay / 64) + 20)); + ms.WriteByte((byte)((gameDay % 64) + 20)); + + ms.WriteByte((byte)((gameYear / 64) + 20)); + ms.WriteByte((byte)((gameYear % 64) + 20)); + + ms.Write(strBytes,0x00, strBytes.Length); + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + + public static byte[] CreateKeepAlive() + { + MemoryStream ms = new MemoryStream(); + + ms.WriteByte(PACKET_KEEP_ALIVE); + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + public static byte[] CreatePlaceData(World.Isle[] isles, World.Town[] towns, World.Area[] areas) + { + MemoryStream ms = new MemoryStream(); + ms.WriteByte(PACKET_AREA_DEFS); + + // Write Towns + + foreach (World.Town town in towns) + { + byte[] strBytes = Encoding.UTF8.GetBytes(town.Name); + + ms.WriteByte(AREA_SEPERATOR); + ms.WriteByte(AREA_TOWN); + + ms.WriteByte((byte)(((town.StartX - 4) / 64) + 20)); + ms.WriteByte((byte)(((town.StartX - 4) % 64) + 20)); + + ms.WriteByte((byte)(((town.EndX - 4) / 64) + 20)); + ms.WriteByte((byte)(((town.EndX - 4) % 64) + 20)); + + ms.WriteByte((byte)(((town.StartY - 1) / 64) + 20)); + ms.WriteByte((byte)(((town.StartY - 1) % 64) + 20)); + + ms.WriteByte((byte)(((town.EndY - 1) / 64) + 20)); + ms.WriteByte((byte)(((town.EndY - 1) % 64) + 20)); + + + ms.Write(strBytes, 0x00, strBytes.Length); + } + + // Write Areas + + foreach (World.Area area in areas) + { + byte[] strBytes = Encoding.UTF8.GetBytes(area.Name); + + ms.WriteByte(AREA_SEPERATOR); + ms.WriteByte(AREA_AREA); + + ms.WriteByte((byte)(((area.StartX - 4) / 64) + 20)); + ms.WriteByte((byte)(((area.StartX - 4) % 64) + 20)); + + ms.WriteByte((byte)(((area.EndX - 4) / 64) + 20)); + ms.WriteByte((byte)(((area.EndX - 4) % 64) + 20)); + + ms.WriteByte((byte)(((area.StartY - 1) / 64) + 20)); + ms.WriteByte((byte)(((area.StartY - 1) % 64) + 20)); + + ms.WriteByte((byte)(((area.EndY - 1) / 64) + 20)); + ms.WriteByte((byte)(((area.EndY - 1) % 64) + 20)); + + + ms.Write(strBytes, 0x00, strBytes.Length); + } + + // Write Isles + + foreach (World.Isle isle in isles) + { + byte[] strBytes = Encoding.UTF8.GetBytes(isle.Name); + + ms.WriteByte(AREA_SEPERATOR); + ms.WriteByte(AREA_ISLE); + + ms.WriteByte((byte)(((isle.StartX - 4) / 64) + 20)); + ms.WriteByte((byte)(((isle.StartX - 4) % 64) + 20)); + + ms.WriteByte((byte)(((isle.EndX - 4) / 64) + 20)); + ms.WriteByte((byte)(((isle.EndX - 4) % 64) + 20)); + + ms.WriteByte((byte)(((isle.StartY - 1) / 64) + 20)); + ms.WriteByte((byte)(((isle.StartY - 1) % 64) + 20)); + + ms.WriteByte((byte)(((isle.EndY - 1) / 64) + 20)); + ms.WriteByte((byte)(((isle.EndY - 1) % 64) + 20)); + + ms.WriteByte((byte)isle.Tileset.ToString()[0]); + + ms.Write(strBytes, 0x00, strBytes.Length); + } + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + + public static byte[] CreatePlayerData(int money, int playerCount, int mail) + { + byte[] moneyStrBytes = Encoding.UTF8.GetBytes(money.ToString()); + byte[] playerStrBytes = Encoding.UTF8.GetBytes(playerCount.ToString()); + byte[] mailStrBytes = Encoding.UTF8.GetBytes(mail.ToString()); + + MemoryStream ms = new MemoryStream(); + ms.WriteByte(PACKET_BASE_STATS); + ms.Write(moneyStrBytes, 0x00, moneyStrBytes.Length); + ms.WriteByte((byte)'|'); + ms.Write(playerStrBytes, 0x00, playerStrBytes.Length); + ms.WriteByte((byte)'|'); + ms.Write(mailStrBytes, 0x00, mailStrBytes.Length); + ms.WriteByte((byte)'|'); + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + + public static byte[] CreateTileOverlayFlags(int[] tileDepthFlags) + { + MemoryStream ms = new MemoryStream(); + ms.WriteByte(PACKET_TILE_FLAGS); + + foreach(int tileDepthFlag in tileDepthFlags) + { + ms.WriteByte((byte)tileDepthFlag.ToString()[0]); + } + + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + + public static byte[] CreateSecCode(byte[] SecCodeSeed, int SecCodeInc, bool Admin, bool Moderator) + { + MemoryStream ms = new MemoryStream(); + ms.WriteByte(PACKET_USERINFO); + + ms.WriteByte((byte)(SecCodeSeed[0] + 33)); + ms.WriteByte((byte)(SecCodeSeed[1] + 33)); + ms.WriteByte((byte)(SecCodeSeed[2] + 33)); + ms.WriteByte((byte)(SecCodeInc + 33)); + + char userType = 'N'; // Normal? + if (Moderator) + userType = 'M'; + if (Admin) + userType = 'A'; + + ms.WriteByte((byte)userType); + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + public static byte[] CreateSwfModulePacket(string swf,byte type) + { + MemoryStream ms = new MemoryStream(); + ms.WriteByte(type); + byte[] strBytes = Encoding.UTF8.GetBytes(swf); + ms.Write(strBytes, 0x00, strBytes.Length); + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + public static byte[] CreateAnnouncement(string announcement) + { + MemoryStream ms = new MemoryStream(); + ms.WriteByte(PACKET_ANNOUNCEMENT); + byte[] strBytes = Encoding.UTF8.GetBytes(announcement); + ms.Write(strBytes, 0x00, strBytes.Length); + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + + public static byte[] CreateKickMessage(string reason) + { + MemoryStream ms = new MemoryStream(); + ms.WriteByte(PACKET_KICK); + byte[] strBytes = Encoding.UTF8.GetBytes(reason); + ms.Write(strBytes, 0x00, strBytes.Length); + ms.WriteByte(PACKET_TERMINATOR); + + ms.Seek(0x00, SeekOrigin.Begin); + byte[] Packet = ms.ToArray(); + ms.Dispose(); + + return Packet; + } + + public static byte[] CreateMotd() + { + string formattedMotd = Messages.FormatMOTD(); + return CreateAnnouncement(formattedMotd); + } + public static byte[] CreateWelcomeMessage(string username) + { + string formattedStr = Messages.FormatLoginMessage(username); + return CreateChat(formattedStr, CHAT_BOTTOM_RIGHT); + } + + } +}