m (Bot: Automated text replacement (-<small>Note: Individual switches were not taken into consideration.</small> +)) |
m (Bot: Automated text replacement (-Added On:.+\n?\n?\n?\n?\n? +)) |
||
Line 73: | Line 73: | ||
== Compatibility == | == Compatibility == | ||
Added: mIRC v6.0 | Added: mIRC v6.0 | ||
− | |||
− | |||
− | |||
− | |||
− | |||
Revision as of 23:34, 5 July 2014
The /scid command can change the connection associated with the current script. When a command is not specified, mIRC changes the connection of the current script to the connection associated with the given Connecion ID. The rest of the code will continue to execute on that connection. When a command is specified, mIRC will execute the command on the connection specified by the Connection ID or the connections based on the switches provided. Any active connection changes are restored upon returning to the calling routine. A command can be executed on all or some of the connections depending on their types using the -a or -at<Type> switches.
Connection Type
- 1 = Connected
- 2 = Disconnected or Connecting
- 3 = 1+2 = Connected, Disconnected, or Connecting (Same as -a)
- 4 = Connecting
- 5 = 1+4 = Connected or Connecting
- 6 = 2+4 = 2 = Disconnected or Connecting
- 7 = 3+4 = Disconnected or Connected or Connecting
- 8 = Disconnected
Synopsis
/scid <-r|Nth> /scid <Connection ID> [command] /scid -r [command] /scid -a [command] /scid -at<type> [command] /scid -s [Nth]
Switches
- -r - Resets the connection id back to what it original was (before any /scon/scid calls)
- -s - Prints the current connection ID. (Or changes to the Nth connection and prints its ID.)
- -a - Perform on all connections.
- -at<type> - Perform on all the connections of a specific type.
Parameters
- <Nth> - The Nth connection.
- <type> - The connection type, only used with -at switchs.
Example
A simple example of using /scif to send a command to all connected connections.
/* ** Global amsg - performs an amsg on all the ** the actives connections you are on. ** ** /gamsg <message> */ alias gamsg { if (!$1) { echo -gtcse info * /gamsg: insufficient parameters halt } ; all active connections scid -at1 amsg $1- }
Print all the channels you are on from every connection you have:
alias listChans { var %x = 1 while ($scid(%x)) { ; switch connection scid %x ; iterate over the channels var %c = 1, %chans while ($chan(%c)) { var %chans = $addtok(%chans, $chr(32) $v1, 44) inc %c } ; print channels scon -r echo -s Network: $network Channels: %chans ; next connection inc %x } }
Compatibility
Added: mIRC v6.0