From WikiChip
Difference between revisions of "mirc/commands/updatenl"
< mirc‎ | commands

m (See also)
m (See also)
Line 29: Line 29:
 
== See also ==
 
== See also ==
 
* {{mirc|commands|List of commands}}
 
* {{mirc|commands|List of commands}}
* {{mirc|dentifiers|List of identifiers}}
+
* {{mirc|identifiers|List of identifiers}}
 
* {{mirc|on events/on kick|on kick}}
 
* {{mirc|on events/on kick|on kick}}
 
* {{mirc|on events/on quit|on quit}}
 
* {{mirc|on events/on quit|on quit}}

Revision as of 21:21, 21 August 2014

Template:mIRC menu The /updatenl command can be used with the on quit/kick/part events to update the IAL and the channel nicknames list right away, otherwise, these are updated when the scripts finish

Synopsis

/updatenl

Switches

None

Parameters

None

Example

Let's suppose only A, B and C are in the channel #example. Suddendly, B parts. If we have this event, only triggering when $nick == $me (using the ! event prefix):

on !*:part:#example:{
  echo -a $nick($chan,0)
}
Can you guess the value of $nick($chan,0)? It will be 3, because the update are made after.

Now we change the event to:

on !*:part:#example:{
  echo -a $nick($chan,0)
  updatenl
  echo -a $nick($chan,0)
}
Which would echo 3 and 2.

Compatibility

Added: mIRC v5.4
Added on: 23 Jun 1998
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See also

[Expand]
v · d · e mIRC commands list