Actions
$notify » History » Revision 5
« Previous |
Revision 5/6
(diff)
| Next »
Per Amundsen, 08/03/2023 07:34 AM
Added in 2.3
$notify
Returns $true if Notify is enabled, otherwise $false.
Added in 1.9.0
$notify(N|nick)
Returns the Nth nickname in your Notify list.
Parameters
Parameter | Description |
N|nick | Nick or if N = 0, number of nicks, otherwise the Nth nick. |
Properties
Property | Description |
.ison | Returns $true if the nick is online, otherwise $false. |
.note | Returns note for this nick. |
.sound | Returns online beep/filename or $null. |
.sound2 | Returns offline beep/filename or $null. |
.whois | Returns $true if /whois for this nick is enabled, otherwise $false. |
.addr | Returns the hostname for the nick. |
.network | Returns the network name set for this nick. |
.awaymsg | Returns the specified away message if the user is away. |
.gecos | The user realname/fullname. |
.account | The user account name. (IRCv3 feature) |
.away | Returns $true if the user is away, otherwise $false. |
Example
: Print number of notiy nicks. //echo -ag $notify(0) ; Print the first notify nick. //echo -ag $notify(1) is $iif($notify(1).ison, online, offline)
Updated by Per Amundsen over 1 year ago · 5 revisions