In the help file under ON DNS the following code is given as an example.
Code:
on 1:DNS:{
 var %n = $dns(0)
 echo 4 Found %n addresses
 while (%n > 0) {
   echo 4 dns: $dns(%n) nick: $dns(%n).nick addr: $dns(%n).addr ip: $dns(%n).ip
   dec %n
 }
}

The issue I'm having, is that I never see a return for $dns(%n).nick

Can anyone tell me why that never seems to have a valid return? I have a situation where being able to see the nick(s) associated with an IP address would be very helpful.