$server » History » Version 11
  Per Amundsen, 05/21/2021 06:48 AM 
  
| 1 | 1 | Per Amundsen | _Added in 1.8.10_ | 
|---|---|---|---|
| 2 | |||
| 3 | *$server* | ||
| 4 | |||
| 5 | Returns the name of the currently connected server, otherwise [[$null]]. | ||
| 6 | |||
| 7 | ----------------------------------------------------------------------------- | ||
| 8 | |||
| 9 | 3 | Per Amundsen | _Added in 2.0_ | 
| 10 | |||
| 11 | 1 | Per Amundsen | *$server(N|address,[group])* | 
| 12 | |||
| 13 | 3 | Per Amundsen | Returns the address of the Nth server in the server list. | 
| 14 | |||
| 15 | _Only works when using the new server list._ | ||
| 16 | |||
| 17 | *Parameters* | ||
| 18 | |||
| 19 | N|address - The server address to lookup, or if N = 0, number of servers, otherwise the Nth server. | ||
| 20 | [group] - if specified, only lookup servers from this network group. | ||
| 21 | |||
| 22 | *Properties* | ||
| 23 | |||
| 24 | .desc - Returns the server description. | ||
| 25 | .port - Returns the server port(s). | ||
| 26 | .group - Returns the server network group. | ||
| 27 | .pass - Returns the server password. | ||
| 28 | 7 | Per Amundsen | .ssl - Returns [[$true]] if SSL is enabled, otherwise [[$false]]. *(AdiIRC only)* | 
| 29 | 8 | Per Amundsen | .tls - Returns [[$true]] if STARTTLS is enabled, otherwise [[$false]]. *(AdiIRC only)* | 
| 30 | 10 | Per Amundsen | .mnick - Returns the main/default nick for this server. *(AdiIRC only)* | 
| 31 | 4 | Per Amundsen | .method - Returns the [[login method]]. | 
| 32 | 6 | Per Amundsen | .methodpass - Returns the login method password. | 
| 33 | 3 | Per Amundsen | |
| 34 | *Example* | ||
| 35 | |||
| 36 | <pre> | ||
| 37 | //echo -ag There is $server(0) servers in your server list. | ||
| 38 | |||
| 39 | //echo -ag The first server in your server list is $server(1) $server(1).port | ||
| 40 | |||
| 41 | 11 | Per Amundsen | //echo -ag Libera.Chat $iif($server(irc.libera.chat),is,is not) in your server list. | 
| 42 | 3 | Per Amundsen | </pre> |