From 3706e8c6bb5a0b9a049791480bf734875423690c Mon Sep 17 00:00:00 2001 From: Xaver-DaRed Date: Tue, 3 Feb 2026 02:40:21 +0100 Subject: [PATCH] Implement Hakutaku qm trigger message --- scripts/zones/Den_of_Rancor/IDs.lua | 1 + scripts/zones/Den_of_Rancor/npcs/qm1.lua | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/scripts/zones/Den_of_Rancor/IDs.lua b/scripts/zones/Den_of_Rancor/IDs.lua index 1f5c88aec13..fc1b92a12a1 100644 --- a/scripts/zones/Den_of_Rancor/IDs.lua +++ b/scripts/zones/Den_of_Rancor/IDs.lua @@ -25,6 +25,7 @@ zones[xi.zone.DEN_OF_RANCOR] = TANSFORMED_INTO_A_MONSTER = 7246, -- The flames of rancor have transformed into a monster! FISHING_MESSAGE_OFFSET = 7255, -- You can't fish here. CHEST_UNLOCKED = 7363, -- You unlock the chest! + FIVE_DRIED_EYEBALLS = 7371, -- Five dried eyeballs are stuck to the surface of the rock... SENSE_OMINOUS_PRESENCE = 7373, -- You sense an ominous presence... PLAYER_OBTAINS_ITEM = 7420, -- obtains ! UNABLE_TO_OBTAIN_ITEM = 7421, -- You were unable to obtain the item. diff --git a/scripts/zones/Den_of_Rancor/npcs/qm1.lua b/scripts/zones/Den_of_Rancor/npcs/qm1.lua index a6166d827fa..ffc3925895f 100644 --- a/scripts/zones/Den_of_Rancor/npcs/qm1.lua +++ b/scripts/zones/Den_of_Rancor/npcs/qm1.lua @@ -17,4 +17,8 @@ entity.onTrade = function(player, npc, trade) end end +entity.onTrigger = function(player, npc) + player:messageSpecial(ID.text.FIVE_DRIED_EYEBALLS) +end + return entity