diff --git a/game/modules/tome/data/chats/unremarkable-cave-krogar.lua b/game/modules/tome/data/chats/unremarkable-cave-krogar.lua
new file mode 100644
index 0000000000000000000000000000000000000000..a6b740cf96ca7add43c71bdb88ff564b3427eb0c
--- /dev/null
+++ b/game/modules/tome/data/chats/unremarkable-cave-krogar.lua
@@ -0,0 +1,27 @@
+-- ToME - Tales of Middle-Earth
+-- Copyright (C) 2009, 2010 Nicolas Casalini
+--
+-- This program is free software: you can redistribute it and/or modify
+-- it under the terms of the GNU General Public License as published by
+-- the Free Software Foundation, either version 3 of the License, or
+-- (at your option) any later version.
+--
+-- This program is distributed in the hope that it will be useful,
+-- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-- GNU General Public License for more details.
+--
+-- You should have received a copy of the GNU General Public License
+-- along with this program.  If not, see <http://www.gnu.org/licenses/>.
+--
+-- Nicolas Casalini "DarkGod"
+-- darkgod@te4.org
+
+newChat{ id="welcome",
+	text = [[@playerdescriptor.race@, you have helped me kill the elf-bitch, the Orc Pride thanks you... for now]],
+	answers = {
+		{"I hate elves anyway..."},
+	}
+}
+
+return "welcome"
diff --git a/game/modules/tome/data/zones/unremarkable-cave/npcs.lua b/game/modules/tome/data/zones/unremarkable-cave/npcs.lua
index c8c2724f8414c10bca4d498fe59f884ec4557338..336553158a20d27e29f9b815ea8b302af1d405ae 100644
--- a/game/modules/tome/data/zones/unremarkable-cave/npcs.lua
+++ b/game/modules/tome/data/zones/unremarkable-cave/npcs.lua
@@ -74,10 +74,6 @@ newEntity{ define_as = "FILLAREL",
 	end,
 
 	can_talk = "unremarkable-cave-fillarel",
-
-	on_die = function(self, who)
---		game.player:resolveSource():setQuestStatus("start-dunadan", engine.Quest.COMPLETED, "amon-sul")
-	end,
 }
 
 newEntity{ define_as = "CORRUPTOR",
@@ -115,7 +111,5 @@ newEntity{ define_as = "CORRUPTOR",
 	autolevel = "caster",
 	ai = "dumb_talented_simple", ai_state = { talent_in=1, ai_move="move_astar" },
 
-	on_die = function(self, who)
---		game.player:resolveSource():setQuestStatus("start-dunadan", engine.Quest.COMPLETED, "amon-sul")
-	end,
+	can_talk = "unremarkable-cave-krogar",
 }