How did you find this secret?zimberzimber wrote:To get the key on the altar, I first have to pass the door that blocks the way to it, which requires an ornate key, which is found in a secret related to the forge.
Why do I have to find secrets to advance? This isn't the smartest decision in my opinion...
I only found it by using this script in the console:
Code: Select all
for x = 0, 31 do
for y = 0, 31 do
for entity in party.map:entitiesAt(x, y) do
if (string.find(entity.name, "key") ~= nil) then
spawn("map_marker", entity.level, entity.x, entity.y, entity.facing, entity.elevation)
end
end
end
end