From WikiChip
Difference between revisions of "mirc/on events/on load"
m |
m (Bot: Adding a template (template:mIRC on event list)) |
||
Line 30: | Line 30: | ||
* [[/load command - mIRC|/load]] | * [[/load command - mIRC|/load]] | ||
* [[/unload commnand - mIRC|/unload]] | * [[/unload commnand - mIRC|/unload]] | ||
+ | {{mIRC on event list}} | ||
− | [[Category: | + | [[Category:MIRC on events]] |
Revision as of 00:05, 4 July 2014
The ON LOAD event is ran whenever a script is first loaded into mIRC's remotes section. Only one of these events may exist per script file.
Synopsis
ON <level>:LOAD:<commands>
Parameters
<level>The level for the event to trigger.
<commands>The commands to be performed when the event listener's criteria is met.
Example
When the following script is loaded, it will give the user an $input popup greeting:
ON *:LOAD:noop $input(Thanks for loading my script!,oi,Script Loaded!)
Note: The above example can be executed directly from an mIRC command-line, without the ON LOAD event, by typing:
//noop $input(Thanks for loading my script!,oi,Script Loaded!)
The following is what the above will look like upon loading the script for the first time:
Compatibility
Added: mIRC v2.1a
Added On: 28/02/95
See Also
mIRC on event list