From 745cba4bb29f42752160aeeed2df509c6907dfe5 Mon Sep 17 00:00:00 2001 From: ErikasKontenis Date: Tue, 31 Dec 2019 12:19:07 +0200 Subject: [PATCH 1/2] implement dusting and skinning tools. still quests are todo --- data/actions/actions.xml | 2 + .../actions/scripts/misc/skinning_dusting.lua | 80 +++++++++++++++++++ data/items/items.srv | 12 +-- 3 files changed, 88 insertions(+), 6 deletions(-) create mode 100644 data/actions/scripts/misc/skinning_dusting.lua diff --git a/data/actions/actions.xml b/data/actions/actions.xml index a249405..8202fe6 100644 --- a/data/actions/actions.xml +++ b/data/actions/actions.xml @@ -188,6 +188,8 @@ + + diff --git a/data/actions/scripts/misc/skinning_dusting.lua b/data/actions/scripts/misc/skinning_dusting.lua new file mode 100644 index 0000000..e21dd38 --- /dev/null +++ b/data/actions/scripts/misc/skinning_dusting.lua @@ -0,0 +1,80 @@ +local config = { + [5908] = { + -- Minotaurs + [4011] = {value = 25000, newItem = 5878}, + [4047] = {value = 25000, newItem = 5878}, + [4057] = {value = 25000, newItem = 5878}, + [4052] = {value = 25000, newItem = 5878}, + + -- Low Class Lizards + [4321] = {value = 25000, newItem = 5876}, + [4327] = {value = 25000, newItem = 5876}, + [4324] = {value = 25000, newItem = 5876}, + + -- Dragons + [4025] = {value = 25000, newItem = 5877}, + + -- Dragon Lords + [4062] = {value = 25000, newItem = 5948}, + + -- Behemoths + [4112] = {value = 35000, newItem = 5893}, + + -- Bone Beasts + [4212] = {value = 25000, newItem = 5925}, + }, + [5942] = { + -- Demon + [4097] = {value = 25000, newItem = 5906}, + + -- Vampires + [4137] = {value = 25000, newItem = 5905} + } +} + +function onUse(player, item, fromPosition, target, toPosition, isHotkey) + local skin = config[item.itemid][target.itemid] + if not skin then + return false + end + + local random, effect, transform = math.random(1, 100000), CONST_ME_MAGIC_GREEN, true + if type(skin[1]) == 'table' then + local _skin + for i = 1, #skin do + _skin = skin[i] + if random <= _skin.value then + if isInArray({7441, 7442, 7444, 7445}, target.itemid) then + player:addItem(_skin.newItem, _skin.amount or 1) + effect = CONST_ME_HITAREA + else + player:addItem(_skin.newItem, _skin.amount or 1) + end + break + end + end + + elseif random <= skin.value then + if isInArray({7441, 7442, 7444, 7445}, target.itemid) then + player:addItem(skin.newItem, skin.amount or 1) + effect = CONST_ME_HITAREA + else + player:addItem(skin.newItem, skin.amount or 1) + end + else + if isInArray({7441, 7442, 7444, 7445}, target.itemid) then + player:say('The attempt of sculpting failed miserably.', TALKTYPE_MONSTER_SAY) + effect = CONST_ME_HITAREA + else + effect = CONST_ME_POFF + end + end + + toPosition:sendMagicEffect(effect) + if transform then + target:transform(skin.after or target.itemid + 1) + target:decay() + end + + return true +end \ No newline at end of file diff --git a/data/items/items.srv b/data/items/items.srv index 5b7233d..d5d5a01 100644 --- a/data/items/items.srv +++ b/data/items/items.srv @@ -19675,8 +19675,8 @@ Attributes = {Capacity=7,FluidSource=BLOOD,ExpireTarget=4322,TotalExpireTime=12 TypeID = 4322 Name = "a dead lizard templar" -Flags = {Corpse,Expire} -Attributes = {ExpireTarget=4323,TotalExpireTime=1200} +Flags = {Container,Corpse,Expire} +Attributes = {Capacity=7,ExpireTarget=4323,TotalExpireTime=1200} TypeID = 4323 Name = "a dead lizard templar" @@ -19690,8 +19690,8 @@ Attributes = {Capacity=7,FluidSource=BLOOD,ExpireTarget=4325,TotalExpireTime=12 TypeID = 4325 Name = "a dead lizard sentinel" -Flags = {Corpse,Expire} -Attributes = {ExpireTarget=4326,TotalExpireTime=1200} +Flags = {Container,Corpse,Expire} +Attributes = {Capacity=7,ExpireTarget=4326,TotalExpireTime=1200} TypeID = 4326 Name = "a dead lizard sentinel" @@ -19705,8 +19705,8 @@ Attributes = {Capacity=7,FluidSource=BLOOD,ExpireTarget=4328,TotalExpireTime=12 TypeID = 4328 Name = "a dead lizard snakecharmer" -Flags = {Corpse,Expire} -Attributes = {ExpireTarget=4329,TotalExpireTime=1200} +Flags = {Container,Corpse,Expire} +Attributes = {Capacity=7,ExpireTarget=4329,TotalExpireTime=1200} TypeID = 4329 Name = "a dead lizard snakecharmer" From 296d4294da180fc6a141b324077416d0598b672b Mon Sep 17 00:00:00 2001 From: ErikasKontenis Date: Wed, 1 Jan 2020 20:58:39 +0200 Subject: [PATCH 2/2] finish blessed wooden stake & obsidian knife quests --- New Text Document.txt | 2 +- data/npc/amanda.npc | 9 +++++++++ data/npc/brewster.npc | 9 +++++++++ data/npc/chondur.npc | 8 ++++++++ data/npc/gamon.npc | 5 +++++ data/npc/isimov.npc | 9 +++++++++ data/npc/kasmir.npc | 9 +++++++++ data/npc/maealil.npc | 8 ++++++++ data/npc/quentin.npc | 16 ++++++++++++++++ data/npc/rahkem.npc | 9 +++++++++ data/npc/tibra.npc | 10 ++++++++++ data/npc/tyrias.npc | 8 ++++++++ data/npc/uzgod.npc | 9 +++++++++ data/npc/yberius.npc | 9 +++++++++ 14 files changed, 119 insertions(+), 1 deletion(-) diff --git a/New Text Document.txt b/New Text Document.txt index c4e32a0..78fcfa8 100644 --- a/New Text Document.txt +++ b/New Text Document.txt @@ -1 +1 @@ -next: 17574 \ No newline at end of file +next: 17578 \ No newline at end of file diff --git a/data/npc/amanda.npc b/data/npc/amanda.npc index 4f60e5f..89075f0 100644 --- a/data/npc/amanda.npc +++ b/data/npc/amanda.npc @@ -85,4 +85,13 @@ VANISH,! -> "If you are heavily wounded or poisoned, feel free to "wisdom" -> "Talk to the hermit Eremo on the isle of Cormaya about this blessing." "solitude" -> * +"stake",QuestValue(17576)=6,Count(5941)<=0 -> "I think you have forgotten to bring your stake, my child." +"stake",QuestValue(17576)=6 -> Type=5941, Amount=1, "Yes, I was informed what to do. Are you prepared to receive my line of the prayer?", Topic=10 +Topic=10,"yes",Count(Type)>=Amount -> "So receive my prayer: 'Wicked curses shall be broken'. Now, bring your stake to Kasmir in Darashia for the next line of the prayer. I will inform him what to do.", SetQuestValue(17576,7) +Topic=10,"yes" -> "I think you have forgotten to bring your stake, my child." +Topic=10 -> "I will wait for you." +"stake",QuestValue(17576)=7 -> "You should visit Kasmir in Darashia now, my child." +"stake",QuestValue(17576)>7 -> "You already received my line of the prayer." +"stake" -> "A blessed stake? That's a strange request. Maybe Quentin knows more, he is one of the oldest monks after all." + } diff --git a/data/npc/brewster.npc b/data/npc/brewster.npc index 4e25b03..b5ec2f6 100644 --- a/data/npc/brewster.npc +++ b/data/npc/brewster.npc @@ -107,4 +107,13 @@ VANISH,! -> "Bye ... and now I'll have a quick drink." "solitude", QuestValue(101) > 0 -> * "wisdom" -> "Talk to the hermit Eremo on the isle of Cormaya about this blessing." "solitude" -> * + +"stake",QuestValue(17576)=9,Count(5941)<=0 -> "I think you have forgotten to bring your stake, pilgrim." +"stake",QuestValue(17576)=9 -> Type=5941, Amount=1, "Yes, I was informed what to do. Are you prepared to receive my line of the prayer?", Topic=10 +Topic=10,"yes",Count(Type)>=Amount -> "So receive my prayer: 'Your hand shall be guided - your feet shall walk in harmony'. Now, bring your stake to Tyrias in Liberty Bay for the next line of the prayer. I will inform him what to do.", SetQuestValue(17576,10) +Topic=10,"yes" -> "I think you have forgotten to bring your stake, pilgrim." +Topic=10 -> "I will wait for you." +"stake",QuestValue(17576)=10 -> "You should visit Tyrias in Liberty Bay now." +"stake",QuestValue(17576)>10 -> "You have already received my line of the prayer. Don't make me do more work than necessary!" +"stake" -> "A blessed stake? That's a strange request. Maybe Quentin knows more, he is one of the oldest monks after all." } diff --git a/data/npc/chondur.npc b/data/npc/chondur.npc index 7fe4324..4e6cdcc 100644 --- a/data/npc/chondur.npc +++ b/data/npc/chondur.npc @@ -148,4 +148,12 @@ Topic=11 -> "Maybe another time." "mission" -> "Sorry, I don't have any missions for you." "task" -> "Sorry, I don't have any missions for you." + +# Wooden_Stake_Quest +"stake",ExpiringQuestValue(17577)>0 -> "Sorry, but I'm still exhausted from the last ritual. Please come back later." +"stake",QuestValue(17576)=11 -> "Ten prayers for a blessed stake? Don't tell me they made you travel whole Tibia for it! Listen, child, if you bring me a wooden stake, I'll bless it for you. ", SetQuestValue(17576,12) +"stake",QuestValue(17576)=12,ExpiringQuestValue(17577)<0 -> Type=5941, Amount=1, "Would you like to receive a spiritual prayer to bless your stake?", Topic=12 +Topic=12,"yes",Count(Type)>=Amount -> " Sha Kesh Mar!", Delete(Type), Create(5942), SetExpiringQuestValue(17577, 604800000) +Topic=12,"yes" -> "You don't have a wooden stake." +Topic=12 -> "Maybe another time." } diff --git a/data/npc/gamon.npc b/data/npc/gamon.npc index 8161ffe..a9d2cdf 100644 --- a/data/npc/gamon.npc +++ b/data/npc/gamon.npc @@ -66,6 +66,11 @@ VANISH,! -> "Lady? Lady?? Hm. How strange..." "equipment" -> * "special" -> "My offers are permanently extraordinarily cheap." +"stake" -> Type=5941, Amount=1, Price=5000, "Making a stake from a chair? Are you insane??! I won't waste my chairs on you for free! You will have to pay for it, but since I consider your plan a blasphemy, it will cost 5000 gold pieces. Okay?", Topic=142 +Topic=142,"yes",CountMoney>=Price -> "Argh... my heart aches! Alright... a promise is a promise. Here - take this wooden stake, and now get lost.", DeleteMoney, Create(Type), Idle +Topic=142,"yes" -> "You can't even pay for that." +Topic=142,"no" -> "Phew. No chair-killing." + @"gen-t-furniture-statues-s.ndb" @"gen-t-furniture-tables-s.ndb" @"gen-t-furniture-chairs-s.ndb" diff --git a/data/npc/isimov.npc b/data/npc/isimov.npc index 9921030..cf55c11 100644 --- a/data/npc/isimov.npc +++ b/data/npc/isimov.npc @@ -71,4 +71,13 @@ VANISH,! -> "No patience, no manners." "heal$",HP<40 -> "Let me see what I can do, kid.", HP=40, EffectOpp(13) "heal$" -> "Stop the whining, kid, that are only some scratches. Dwarfenheart knows no pain." "time" -> "I think it's the fourth age of the yellow flame, isn't it?" + +"stake",QuestValue(17576)=5,Count(5941)<=0 -> "I think you have forgotten to bring your stake, kid." +"stake",QuestValue(17576)=5 -> Type=5941, Amount=1, "Yes, I was informed what to do. Are you prepared to receive my line of the prayer?", Topic=10 +Topic=10,"yes",Count(Type)>=Amount -> "So receive my prayer: 'Unclean spirits shall be repelled'. Now, bring your stake to Amanda in Edron for the next line of the prayer. I will inform her what to do.", SetQuestValue(17576,6) +Topic=10,"yes" -> "I think you have forgotten to bring your stake, kid." +Topic=10 -> "I will wait for you." +"stake",QuestValue(17576)=6 -> "You should visit Amanda in Edron now, kid." +"stake",QuestValue(17576)>6 -> "You already received my line of the prayer." +"stake" -> "A blessed stake? That's a strange request. Maybe Quentin knows more, he is one of the oldest monks after all." } diff --git a/data/npc/kasmir.npc b/data/npc/kasmir.npc index c857a88..9425b80 100644 --- a/data/npc/kasmir.npc +++ b/data/npc/kasmir.npc @@ -135,4 +135,13 @@ Topic=8,"i$","will$" -> * Topic=9,"yes" -> "So by the powers of the gods your souls are now bound together for eternity. May the gods watch with grace over your further live as a married couple. Go now and celebrate your marriage!", EffectOpp(14), EffectMe(13), Idle Topic=9,"i$","will$" -> * Topic=9,"no" -> "Your neglection of love hurts my heart. Leave now!", Idle + +"stake",QuestValue(17576)=7,Count(5941)<=0 -> "I think you have forgotten to bring your stake, pilgrim." +"stake",QuestValue(17576)=7 -> Type=5941, Amount=1, "Yes, I was informed what to do. Are you prepared to receive my line of the prayer?", Topic=10 +Topic=10,"yes",Count(Type)>=Amount -> "So receive my prayer: 'Let there be honour and humility'. Now, bring your stake to Rahkem in Ankrahmun for the next line of the prayer. I will inform him what to do.", SetQuestValue(17576,8) +Topic=10,"yes" -> "I think you have forgotten to bring your stake, pilgrim." +Topic=10 -> "I will wait for you." +"stake",QuestValue(17576)=8 -> "You should visit Rahkem in Ankrahmun now, pilgrim." +"stake",QuestValue(17576)>8 -> "You already received my line of the prayer." +"stake" -> "A blessed stake? That is a strange request. Maybe Quentin knows more, he is one of the oldest monks after all." } diff --git a/data/npc/maealil.npc b/data/npc/maealil.npc index 67ef8e2..641e43c 100644 --- a/data/npc/maealil.npc +++ b/data/npc/maealil.npc @@ -130,5 +130,13 @@ Topic=3 -> "As you wish." "wisdom" -> "Talk to the hermit Eremo on the isle of Cormaya about this blessing." "solitude" -> * +"stake",QuestValue(17576)=3,Count(5941)<=0 -> "I think you have forgotten to bring your stake." +"stake",QuestValue(17576)=3 -> Type=5941, Amount=1, "Yes, I was informed what to do. Are you prepared to receive my line of the prayer?", Topic=10 +Topic=10,"yes",Count(Type)>=Amount -> "So receive my prayer: 'Peace may fill your soul - evil shall be cleansed'. Now, bring your stake to Yberius in the Venore temple for the next line of the prayer. I will inform him what to do.", SetQuestValue(17576,4) +Topic=10,"yes" -> "I think you have forgotten to bring your stake." +Topic=10 -> "I will wait for you." +"stake",QuestValue(17576)=4 -> "You should visit Yberius in the Venore temple now." +"stake",QuestValue(17576)>4 -> "You already received my line of the prayer." +"stake" -> "A blessed stake? That is a strange request. Maybe Quentin knows more, he is one of the oldest monks after all." } diff --git a/data/npc/quentin.npc b/data/npc/quentin.npc index 28e15dd..646c8f2 100644 --- a/data/npc/quentin.npc +++ b/data/npc/quentin.npc @@ -120,4 +120,20 @@ VANISH,! -> "Remember: If you are heavily wounded or poisoned, I "time" -> "Now, it is %T. Ask Gorn for a watch, if you need one." + +"stake",QuestValue(17576)=0 -> "A blessed stake to defeat evil spirits? I do know an old prayer which is said to grant sacred power and to be able to bind this power to someone, or something. ...", + "However, this prayer needs the combined energy of ten priests. Each of them has to say one line of the prayer. ...", + "I could start with the prayer, but since the next priest has to be in a different location, you probably will have to travel a lot. ...", + "Is this stake really important enough to you so that you are willing to take this burden?", Topic=1 +Topic=1,"yes" -> "Alright, I guess you need a stake first. Maybe Gamon can help you, the leg of a chair or something could just do. Try asking him for a stake, and if you have one, bring it back to me.", SetQuestValue(17576,1) +Topic=1 -> "Fine. You are free to decline my offer." + +"stake",QuestValue(17576)=1,Count(5941)<=0 -> "I guess you couldn't convince Gamon to give you a stake, eh?" +"stake",QuestValue(17576)=1 -> Type=5941, Amount=1, "Ah, I see you brought a stake with you. Are you ready to receive my line of the prayer then?", Topic=2 +Topic=2,"yes",Count(Type)>=Amount -> "So receive my prayer: 'Light shall be near - and darkness afar'. Now, bring your stake to Tibra in the Carlin church for the next line of the prayer. I will inform her what to do.", SetQuestValue(17576,2) +Topic=2,"yes" -> "Where did you lost that stake?" +Topic=2 -> "I will wait for you." +"stake",QuestValue(17576)=2 -> "You should visit Tibra in the Carlin church now." +"stake",QuestValue(17576)>2 -> "You already received my line of the prayer." + } diff --git a/data/npc/rahkem.npc b/data/npc/rahkem.npc index ad68c6a..021f7f1 100644 --- a/data/npc/rahkem.npc +++ b/data/npc/rahkem.npc @@ -210,4 +210,13 @@ Topic=3,"yes",CountMoney "Sorry, you do not have enough gold Topic=3,"yes" -> "Here you are. Look in your spellbook for the pronunciation of this spell.", DeleteMoney, EffectOpp(13), TeachSpell(String) Topic=3 -> "Maybe next time." +"stake",QuestValue(17576)=8,Count(5941)<=0 -> "I think you have forgotten to bring your stake, pilgrim." +"stake",QuestValue(17576)=8 -> Type=5941, Amount=1, "Yes, I was informed what to do. Are you prepared to receive my line of the prayer?", Topic=10 +Topic=10,"yes",Count(Type)>=Amount -> "So receive my prayer: 'Let there be power and compassion'. Now, bring your stake to Brewster in Port Hope for the next line of the prayer. I will inform him what to do.", SetQuestValue(17576,9) +Topic=10,"yes" -> "I think you have forgotten to bring your stake, pilgrim." +Topic=10 -> "I will wait for you." +"stake",QuestValue(17576)=9 -> "You should visit Brewster in Port Hope now." +"stake",QuestValue(17576)>9 -> "You already received my line of the prayer." +"stake" -> "A blessed stake? That is a strange request. Maybe Quentin knows more, he is one of the oldest monks after all." + } diff --git a/data/npc/tibra.npc b/data/npc/tibra.npc index 38b4dd5..93f137b 100644 --- a/data/npc/tibra.npc +++ b/data/npc/tibra.npc @@ -109,4 +109,14 @@ Topic=1,"yes",CountMoney "Don't be ashamed, but you lack the gold." Topic=3,"yes" -> "So tell me, what shadows your soul, my child.", Topic=4 Topic=3 -> "As you wish." Topic=4 -> "Meditate on that and pray for your soul." + +"stake",QuestValue(17576)=2,Count(5941)<=0 -> "I think you have forgotten to bring your stake, my child." +"stake",QuestValue(17576)=2 -> Type=5941, Amount=1, "Yes, I was informed what to do. Are you prepared to receive my line of the prayer?", Topic=10 +Topic=10,"yes",Count(Type)>=Amount -> "So receive my prayer: 'Hope may fill your heart - doubt shall be banned'. Now, bring your stake to Maealil in the elven settlement for the next line of the prayer. I will inform him what to do.", SetQuestValue(17576,3) +Topic=10,"yes" -> "I think you have forgotten to bring your stake, my child." +Topic=10 -> "I will wait for you." +"stake",QuestValue(17576)=3 -> "You should visit Maealil in the elven settlement now, my child." +"stake",QuestValue(17576)>3 -> "You already received my line of the prayer." +"stake" -> "A blessed stake? That is a strange request, my child. Maybe Quentin knows more, he is one of the oldest monks after all." + } diff --git a/data/npc/tyrias.npc b/data/npc/tyrias.npc index c27447d..54b5e16 100644 --- a/data/npc/tyrias.npc +++ b/data/npc/tyrias.npc @@ -75,4 +75,12 @@ VANISH,! -> "Remember: If you are heavily wounded or poisoned, I "time" -> "Now, it is %T." + +"stake",QuestValue(17576)=10,Count(5941)<=0 -> "You don't even have that strange stake with you." +"stake",QuestValue(17576)=10 -> Type=5941, Amount=1, "Brewster sent me a strange message about some strange hocus-pocus. I think it's nonsense, but since you have come that far, I'll play along. Are you ready?", Topic=10 +Topic=10,"yes",Count(Type)>=Amount -> "So receive my prayer: 'Your mind shall be a vessel for joy, light and wisdom' - uh, wow, something happened. Well, I guess that's it, but next time if you need some mumbo jumbo rather go to Chondur.", SetQuestValue(17576,11), Delete(Type), Create(5942) +Topic=10,"yes" -> "You don't even have that strange stake with you." +Topic=10 -> "No problem, I have other things to do." +"stake",QuestValue(17576)>10 -> "I won't do that rubbish again. Go pester Chondur with your hocus-pocus." +"stake" -> "A blessed stake? I don't believe in things like that. If anyone does, it's probably old Quentin." } diff --git a/data/npc/uzgod.npc b/data/npc/uzgod.npc index 85c0e5f..1c6ca03 100644 --- a/data/npc/uzgod.npc +++ b/data/npc/uzgod.npc @@ -31,6 +31,7 @@ VANISH,! -> "Guut bye. Coming back soon." "excalibug" -> "You want sell me excalibug for 1000 platinum coins and an enchanted armor?", Topic=3 "thanks" -> "Me enjoy doing that." "thank","you" -> * +"obsidian","knife" -> "Me remembering... but long time since seeing such a knife. Maybe can make one from obsidian lance. But only if you paying one draconian steel. Cyclops friend maybe can refine." "spear" -> Type=3277, Amount=1, Price=10, "You will buy a spear for %P gold?", Topic=1 "rapier" -> Type=3272, Amount=1, Price=15, "You will buy a rapier for %P gold?", Topic=1 @@ -146,5 +147,13 @@ topic=7,"yes" -> "Here you have it.", Create(Type),SetQuestValue(325,4) topic=7,"no" -> "Stop make fun of old dwarf." topic=7 -> "You joke with me!" +"draconian","steel",ExpiringQuestValue(17575)>0 -> "I am still busy with your draconian steel which you gave me moments ago. Maybe come back later when I will need another one." +"obsidian","lance",ExpiringQuestValue(17575)>0 -> * + +"draconian","steel",ExpiringQuestValue(17575)<0 -> "You bringing me draconian steel and obsidian lance in exchange for obsidian knife?", Topic=8 +"obsidian","lance",ExpiringQuestValue(17575)<0 -> * +Topic=8,"yes",Count(5889)>=1,Count(3313)>=1 -> "Here you have it.", DeleteAmount(5889,1), DeleteAmount(3313,1), Create(5908), SetExpiringQuestValue(17575, 72000000) +Topic=8,"yes" -> "No obsidian lance, no draconian steel." +Topic=8 -> "Stop make fun of old dwarf." } diff --git a/data/npc/yberius.npc b/data/npc/yberius.npc index 2561531..53b2dbc 100644 --- a/data/npc/yberius.npc +++ b/data/npc/yberius.npc @@ -98,4 +98,13 @@ VANISH,! -> "Remember: If you are heavily wounded or poisoned, I "solitude" -> * "time" -> "Now, it is %T. Ask Shiantis for a watch, if you need one." + +"stake",QuestValue(17576)=4,Count(5941)<=0 -> "I think you have forgotten to bring your stake." +"stake",QuestValue(17576)=4 -> Type=5941, Amount=1, "Yes, I was informed what to do. Are you prepared to receive my line of the prayer?", Topic=10 +Topic=10,"yes",Count(Type)>=Amount -> "So receive my prayer: 'Protection will be granted - from dangers at hand'. Now, bring your stake to Isimov in the dwarven settlement for the next line of the prayer. I will inform him what to do.", SetQuestValue(17576,5) +Topic=10,"yes" -> "I think you have forgotten to bring your stake." +Topic=10 -> "I will wait for you." +"stake",QuestValue(17576)=5 -> "You should visit Isimov in the dwarven settlement now." +"stake",QuestValue(17576)>5 -> "You already received my line of the prayer." +"stake" -> "A blessed stake? That is a strange request. Maybe Quentin knows more, he is one of the oldest monks after all." }