From 8c12f8c4c29a466f6832c45de88284190f78619e Mon Sep 17 00:00:00 2001 From: Elson Costa Date: Sat, 25 Nov 2023 08:56:38 -0300 Subject: [PATCH] Adjusted prices and npc jeronimo. (offers will only be shown in game store, but isn't purchasable, ONLY IN NPC) --- data-otservbr-global/npc/jeronimo.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data-otservbr-global/npc/jeronimo.lua b/data-otservbr-global/npc/jeronimo.lua index 0a1ce2ab751..16c4c0c791b 100644 --- a/data-otservbr-global/npc/jeronimo.lua +++ b/data-otservbr-global/npc/jeronimo.lua @@ -163,7 +163,7 @@ local function creatureSayCallback(npc, creature, type, message) if (npcHandler:getTopic(playerId) == 2 or npcHandler:getTopic(playerId) == 0) and listShopItems[message] == nil then npcHandler:setTopic(playerId, 0) - npcHandler:say("We can't find the item that you want, try again or access https://thorfinn.com.br/?thorfinncoins", npc, creature) + npcHandler:say("We can't find the item that you want, try again or access our game store to see the offers!", npc, creature) return true end @@ -171,7 +171,7 @@ local function creatureSayCallback(npc, creature, type, message) npcHandler:setTopic(playerId, 2) local text = offersByCategories[message] if text == nil then - text = "We can't find the {category} that you want, try again or access https://thorfinn.com.br/?thorfinncoins" + text = "We can't find the {category} that you want, try again or access our game store to see the offers!" npcHandler:setTopic(playerId, 0) end npcHandler:say(text, npc, creature)