diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-08-18 01:46:29 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-08-18 01:46:29 -0300 |
commit | 7d5c94196fb91bdcfcb9a7fbb9683b4ad08d7557 (patch) | |
tree | ed593d4d49f199721cf47e374c529412067f8854 /npc/003-2/lua.txt | |
parent | d9404a1bda689819f1020f6016a46a03b7c65f26 (diff) | |
download | serverdata-7d5c94196fb91bdcfcb9a7fbb9683b4ad08d7557.tar.gz serverdata-7d5c94196fb91bdcfcb9a7fbb9683b4ad08d7557.tar.bz2 serverdata-7d5c94196fb91bdcfcb9a7fbb9683b4ad08d7557.tar.xz serverdata-7d5c94196fb91bdcfcb9a7fbb9683b4ad08d7557.zip |
Lua will now give you also a Treasure Key. Have fun exploring!
Diffstat (limited to 'npc/003-2/lua.txt')
-rw-r--r-- | npc/003-2/lua.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt index dabe7e25c..5cd30f0c4 100644 --- a/npc/003-2/lua.txt +++ b/npc/003-2/lua.txt @@ -237,10 +237,11 @@ L_Task: close; L_Finish: - inventoryplace MercBoxAA, 1; + inventoryplace MercBoxAA, 1, TreasureKey, 1; getexp BaseLevel*60, JobLevel*10; // Reference Levels: (20, 6) setq General_Narrator, 3, 0; getitem MercBoxAA, 1; + getitem TreasureKey, 1; mesn; mesq l("Great job! You can keep these items, they will be crucial to your journey."); next; @@ -253,6 +254,9 @@ L_Finish: mesn; mesq l("Still, they can be useful when you're trying to solo a boss and need help. The number of stars on the card is the strength and rarity. Use them wisely."); next; + mesn; + mesq l("Ah, you might have seen a treasure chest on the mines. There are several of these chests to loot, and loot again! Here is a @@. Try it!", getitemlink(TreasureKey)); + next; L_Complete: mesn; mesq l("You see the docks on the other side of the town? There should be a ship docked there."); |