From WikiChip
Difference between revisions of "mirc/on events/on connect"
m (PatrolBot moved page On connect - mIRC to mirc/on events/on connect: per new naming convention) |
m (→Compatibility: This was added in 5.0) |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{mirc title|On Connect - Events}} | ||
The '''ON CONNECT''' event triggers when mIRC has successfully connected to an IRC server and that IRC server has displayed its [[MOTD]]. | The '''ON CONNECT''' event triggers when mIRC has successfully connected to an IRC server and that IRC server has displayed its [[MOTD]]. | ||
Line 5: | Line 6: | ||
== Parameters == | == Parameters == | ||
− | + | * '''<level>''' - The corresponding {{mIRC|access levels}} for the event to trigger. | |
− | + | * '''<commands>''' - The commands to be performed when the event triggers | |
== Examples == | == Examples == | ||
Line 25: | Line 26: | ||
== Compatibility == | == Compatibility == | ||
− | {{mIRC compatibility| | + | {{mIRC compatibility|5.0}} |
== See Also == | == See Also == | ||
Line 34: | Line 35: | ||
{{mIRC on event list}} | {{mIRC on event list}} | ||
− | [[Category: | + | [[Category:mIRC on events|connect]] |
Latest revision as of 07:56, 15 February 2024
Commands & Identifiers
Basics
Events
Matching Tools
Data Storage
Control Structures
GUI Scripting
Sockets
Advanced Scripting
Additional Resources
Security
Other
The ON CONNECT event triggers when mIRC has successfully connected to an IRC server and that IRC server has displayed its MOTD.
Synopsis[edit]
ON <level>:CONNECT:<commands>
Parameters[edit]
- <level> - The corresponding access levels for the event to trigger.
- <commands> - The commands to be performed when the event triggers
Examples[edit]
; Echo the server and network ; names to the active window ON *:CONNECT:echo -a Server: $server -- Network: $network
If a successful connection is made to an IRC server, the above code will display something similar to the below example:
Server: chicago.il.us.undernet.org -- Network: UnderNet
; Join a single channel, ; #myChannel, upon successful connection ON *:CONNECT:join #myChannel
When a successful connection is made to a server, mIRC will now join the channel #myChannel.
Compatibility[edit]
Added: mIRC v5.0
Added on: 02 Apr 1997
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.
See Also[edit]
mIRC on event list