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

m (Bot: Adding a template)
m (Bot: de-linking old mIRC menu)
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{mirc title|/updatenl Command}}
 
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
 
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
  
Line 24: Line 25:
  
 
== Compatibility ==
 
== Compatibility ==
Added: mIRC v5.4
+
{{mIRC compatibility|5.4}}
 
 
Added On: 23/06/98
 
 
 
<small>Note: Individual switches were not taken into consideration.</small>
 
  
 
== See also ==
 
== See also ==
* [[List of commands - mIRC|List of commands]]
+
* {{mirc|commands|List of commands}}
* [[List of identifiers - mIRC|List of identifiers]]
+
* {{mirc|identifiers|List of identifiers}}
* [[on kick - mIRC|on kick]]
+
* {{mirc|on events/on kick|on kick}}
* [[on quit - mIRC|on quit]]
+
* {{mirc|on events/on quit|on quit}}
* [[on part - mIRC|on part]]
+
* {{mirc|on events/on part|on part}}
 
{{mIRC command list}}
 
{{mIRC command list}}
  
[[Category:MIRC commands]]
+
[[Category:mIRC commands|updatenl command - mIRC]]

Latest revision as of 19:46, 15 June 2017

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[edit]

/updatenl

Switches[edit]

None

Parameters[edit]

None

Example[edit]

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[edit]

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[edit]

[Expand]
v · d · e mIRC commands list