You're going through a very round about way... it would be better to just use a specialized SQL query.
$result = db_query("
SELECT m.ID_TOPIC, m.subject
FROM {$db_prefix}topics AS t, {$db_prefix}messages AS m
WHERE t.ID_MEMBER_STARTED = the ID of MsHoney here!
AND m.ID_MSG = t.ID_FIRST_MSG
LIMIT how many you want", __FILE__, __LINE__);
while ($row = mysql_fetch_assoc($result))
{
echo '<a href="', $scripturl, '?topic=', $row['ID_TOPIC'], '.0">', $row['subject'], '</a><br />';
}
mysql_free_result($result);
-[Unknown]