Err you're right, this works exactly how you want it to:

ON *:TEXT:.dns *:*:{
.dns $2
.set %bot_dns_nick $nick
.enable #bot_dns
}

#bot_dns off
ON *:DNS:{
if (!$dns(0)) {
.notice %bot_dns_nick Unable to resolve $iif($iaddress,$iaddress,$dns(0).addr)
}
else {
.notice %bot_dns_nick Resolved $dns(1) to $iif($dns(1) == $dns(1).ip,$dns(1).addr,$dns(1).ip)
}
.unset %bot_dns_nick
.disable #bot_dns
halt
}
#bot_dns end