Template:mIRC Guide
The on start event triggers either when mIRC is started, or a script file is loaded, either through the scripts editor, or via the /load command. Only one on start event is allowed per script file.
Synopsis
on <level>:START:<commands>
Parameters
- <level>
- The access level required for the event to trigger.
- <commands>
- The commands to be performed when the event is triggered.
Examples
Add a pre-typed command to connect to certain networks upon pressing enter to the editbox:
on *:START:{
var %c $chr(124) server -m
editbox -a //server irc.swiftirc.net %c irc.dal.net %c irc.efnet.org
}
Create a hash table named ircpoints and load data from a file named ircpoints.hsh into the table if the file exists:
on *:START:{
if (!$hget(ircpoints)) { hmake ircpoints }
if ($file(ircpoints.hsh).longfn) { hload ircpoints $v1 }
}
Compatibility
Added: v2.1a
Added on: 28/02/95
See Also
v · d · e mIRC on event list
A
on Action, on Active, on Agent, on Appactive
B
on Ban
C
on Char, on Chat, on Chatclose, on Chatopen, on Close, on Connect, on Connectfail, on Ctcpreply
D
on Dccserver, on Dehelp, on Deop, on Deowner, on Devoice, on Dialog, on Disconnect, on Dns
E
on Error, on Exit
F
on Filercvd, on Filesent
G
on Getfail
|
H
on Help, on Hotlink
I
on Input, on Invite
J
on Join
K
on Keydown, on Keyup, on Kick
L
on Load, on Logon
M
on Midiend, on Mode, on Mp3end
N
on Nick, on Nosound, on Notice, on Notify
O
on Op, on Open, on Owner
P
on Parseline, on Part, on Ping, on Playend, on Pong
|
Q
on Queryclose, on Queryopen, on Quit
R
on Rawmode
S
on Sendfail, on Serv, on Servclose, on Servermode, on Serverop, on Servopen, on Signal, on Snotice, on Sockclose, on Socklisten, on Sockopen, on Sockread, on Sockwrite, on Start
T
on Text, on Topic
U
on Udpread, on Udpwrite, on Unban, on Unload, on Unotify, on Usermode
|
V
on Vcmd, on Voice
W
on Wallops, on Waveend
|