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

(See also)
Line 34: Line 34:
 
* [[List of commands - mIRC|List of commands]]
 
* [[List of commands - mIRC|List of commands]]
 
* [[List of identifiers - mIRC|List of identifiers]]
 
* [[List of identifiers - mIRC|List of identifiers]]
* [[/aop command - mIRC|/aop]]
+
* [[/join command - mIRC|/join]]
* [[/avoice command - mIRC|/avoice]]
 
* [[/pop command - mIRC|/pop]]
 
* [[/pvoice command - mIRC|/pvoice]]
 
  
 
[[Category:mIRC commands]]
 
[[Category:mIRC commands]]

Revision as of 19:33, 19 May 2014

The /autojoin command is used in conjunction with the on Connect event (or the Perform option available in alt + o > options > perfom..) in order to delay or prevent auto-joining of channels. This also apply to rejoining of open channels windows during reconnect

Synopsis

/autojoin -nsdN

Switches

  • -n - Join now
  • -s - Skip autojoin
  • -dN - Delay auto-join for N seconds

Parameters

None

Example

on *:connect:{
  /* 
    5 seconds delay before we re-join the channels
    Enough time to perform more important things
  */
  autojoin -d5
 
  ns id FooBar
  mode $me -x
}

Compatibility

Added: mIRC v6.17

Added On: 17/02/2006

Note: Individual switches were not taken into consideration.

See also