mIRC Home    About    Download    Register    News    Help

Print Thread
#16035 19/03/03 06:14 AM
Joined: Jan 2003
Posts: 40
V
Ameglian cow
OP Offline
Ameglian cow
V
Joined: Jan 2003
Posts: 40
i like to saw a ip for a user on channel list

ip: .echo -s $address $nick($myaddress):

when you touch the right button show the ip of user select

thnx

confused

#16036 19/03/03 06:22 AM
Joined: Mar 2003
Posts: 272
C
Fjord artisan
Offline
Fjord artisan
C
Joined: Mar 2003
Posts: 272
Code:
#cFdns off
On 1:DNS:/echo -s %nick $+ 's Host: %host $+ , IP: $raddress | unset %nick | unset %host
#cFdns end
Menu nicklist,query {
 .IP:{
  set %nick $nick
  set %host $gettok($address($nick,2),2,64)
  .dns %host
  .enable #cFdns
  }
}
 

#16037 19/03/03 01:02 PM
Joined: Dec 2002
Posts: 143
A
Vogon poet
Offline
Vogon poet
A
Joined: Dec 2002
Posts: 143
In addition to what CF said, you may be interested in the following from the help file (/help on DNS)

Quote:

on DNS

The on DNS event triggers when a /dns query either succeeds or fails.

Format: on <level>:DNS:<commands>
Example: on 1:DNS:/notice $me Resolved: $raddress

Examples
Code:
on 1:DNS:{
  var %n = $dns(0)
  echo 4 Found %n addresses
  while (%n &gt; 0) {
    echo 4 dns: $dns(%n) nick: $dns(%n).nick addr: $dns(%n).addr ip: $dns(%n).ip
    dec %n
  }
}

Note: This event is also triggered if you try to /dns a nickname, and the nickname is not
on IRC.

The $dns(N) identifier
This identifier can be used only in the on DNS event, and returns the address that was
resolved and any associated IP addresses.

Properties: nick, addr, ip

$dns(N) without a property returns the address being resolved.

You can use N = 0 to return the number of addresses found.

You can use $dns(0).nick/addr/ip to reference properties if an address couldn't be
resolved.


Hope it helps


Link Copied to Clipboard