diff --git a/game/modules/tome/data/lore/misc.lua b/game/modules/tome/data/lore/misc.lua
index 37726346421c5a679c0ec139b26735de95de3df7..b7d8b98f1237049a14a41e75f6a965b3fba5ff49 100644
--- a/game/modules/tome/data/lore/misc.lua
+++ b/game/modules/tome/data/lore/misc.lua
@@ -593,6 +593,7 @@ newLore{
 Eyal is a torn world, and the forces of nature can react strongly to the arcane energies that seek to manipulate them. Some items and areas are imbued with anti-magic, a natural energy that disrupts magical abilities and effects. There are even those who have learned to harness anti-magic into their own wild abilities, and who use them to hunt down and destroy those who practise magic. So beware, caster! It is a hostile world ye wander in.]],
 }
 
+
 --------------------------------------------------------------
 -- Misc bosses
 --------------------------------------------------------------
diff --git a/game/modules/tome/data/lore/orc-prides.lua b/game/modules/tome/data/lore/orc-prides.lua
index 96df5c634c73a2db9bbd4581073c39db3cdae98c..81c0163e923a9a25b4a3864262b6bbcaa9e5a920 100644
--- a/game/modules/tome/data/lore/orc-prides.lua
+++ b/game/modules/tome/data/lore/orc-prides.lua
@@ -345,3 +345,34 @@ I see his notes also suggest the mothers may be in pain. I will allow a doping i
 
 ]]
 }
+
+--------------------------------------------------------------------------
+-- Misc Orc lore
+--------------------------------------------------------------------------
+
+newLore{
+	id = "ukruk-log",
+	category = "orc prides",
+	name = "Ukruk's log",
+	lore = [[Sher'Tul ruin matches description from high command. Investigation begun, but slow. Looks like it crashed into the ground long ago - hard to access many areas. Target item has been described by command as a staff. Do not know why a staff so important. Surely the ultimate weapon should be a sword or axe, like that wielded by the great Garkul?
+
+Have heard many rumours against high command lately - strange rumours, indeed. Perhaps by completing this mission I shall get closer to them so that I might seek the truth...
+
+...
+
+Curses and banes! Some bastard blaze-born THIEF has raided the ruins! And a halfling no less, a curr-damned halfling! I am pyred with rage!
+
+He got in during dusk somehow, crawling through a tunnel too narrow for my workers to reach. He grabbed a staff from the ruins and snuck out past my orcs! The dirty, treacherous sneak has run away, and my career with him! I have sent scouts to track him, but he is proving elusive. But I will not let him escape! This is unforgiveable!
+
+...
+
+We've followed the tracks of the wretch. It seems as if he met up with a dwarf and a human near a town called Derth, and they travelled south-east from there. Following the three of them was much easier than the sneak alone, but we still must take care to remain hidden. Our orders from high command strictly forbid showing ourselves, and we must avoid battle as much as possible. I have a trained team of archers and fighters with me that know how to stay hidden in the woods.
+
+The thief and his cursed allies have entered an old ruined tower called Dreadfell. It an ancient place, known to be filled with undead in its dungeons. If we break in we're bound to cause a stir, and so close to the big human town east of here... I am not sure how to proceed, and have sent a message to command requesting instructions. For now we wait in the woods, keeping an eye on the entrance for any change. If anyone comes out from the tower with that staff they will face my wrath!
+
+...
+
+Word is finally back from command - hold position and wait for the staff to emerge. If it doesn't happen soon then they will send their own agents in time.
+
+In time! Bah! This will be my ruin if it comes to that. If there is any appearance of the staff I must snatch it and get back East as soon as possible...]],
+}
diff --git a/game/modules/tome/data/zones/dreadfell-ambush/npcs.lua b/game/modules/tome/data/zones/dreadfell-ambush/npcs.lua
index 1967d5c8a4cd4869fd71709015604f57bedc9e73..d6aafa61af846c9bcba423770a393dc350eaa4ba 100644
--- a/game/modules/tome/data/zones/dreadfell-ambush/npcs.lua
+++ b/game/modules/tome/data/zones/dreadfell-ambush/npcs.lua
@@ -48,6 +48,7 @@ newEntity{ base="BASE_NPC_ORC", define_as = "UKRUK",
 	},
 	resolvers.drop_randart{},
 	resolvers.drops{chance=100, nb=3, {tome_drops="boss"} },
+	resolvers.drops{chance=100, nb=1, {defined="UKRUK_NOTE"} },
 
 	resolvers.talents{
 		[Talents.T_WEAPONS_MASTERY]=5, [Talents.T_ASSAULT]=5, [Talents.T_OVERPOWER]=5, [Talents.T_RUSH]=5,
diff --git a/game/modules/tome/data/zones/dreadfell-ambush/objects.lua b/game/modules/tome/data/zones/dreadfell-ambush/objects.lua
index 3510600acde19d32a787286f1a680259583fc781..a7174e932f4619d00f549124f63cb0077f9d4ace 100644
--- a/game/modules/tome/data/zones/dreadfell-ambush/objects.lua
+++ b/game/modules/tome/data/zones/dreadfell-ambush/objects.lua
@@ -18,3 +18,11 @@
 -- darkgod@te4.org
 
 load("/data/general/objects/objects-maj-eyal.lua")
+
+newEntity{ base = "BASE_LORE",
+	define_as = "UKRUK_NOTE",
+	name = "hastily written log", lore="ukruk-log",
+	desc = [[A paper scrap, left by Ukurk.]],
+	rarity = false,
+	encumberance = 0,
+}