From WikiChip
Difference between revisions of "mirc/on events/on load"
< mirc‎ | on events

(Created On load event - mIRC)
 
m (Bot: adding missing title)
(12 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
{{mirc title|On Load - Events}}
 
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.
 
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.
  
Line 10: Line 11:
  
 
== Example ==
 
== Example ==
When the following script is loaded, it will give the user an [[$input identifier - mIRC|$input]] popup greeting:
+
When the following script is loaded, it will give the user an {{mIRC|$input}} popup greeting:
 
<source lang="mIRC">ON *:LOAD:noop $input(Thanks for loading my script!,oi,Script Loaded!)</source>
 
<source lang="mIRC">ON *:LOAD:noop $input(Thanks for loading my script!,oi,Script Loaded!)</source>
  
Line 21: Line 22:
  
 
== Compatibility ==
 
== Compatibility ==
Added: mIRC v2.1a
+
{{mIRC compatibility|2.1a}}
 
 
Added On: 28/02/95
 
  
 
== See Also ==
 
== See Also ==
 +
* [[On start - mIRC|ON START]]
 
* [[On unload - mIRC|ON UNLOAD]]
 
* [[On unload - mIRC|ON UNLOAD]]
 +
* {{mIRC|/load}}
 +
* {{mIRC|/unload}}
 +
{{mIRC on event list}}
  
[[Category:mIRC on events]]
+
[[Category:mIRC on events|load]]

Revision as of 20:18, 15 June 2017

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:

Shows the example results.

Compatibility

Added: mIRC v2.1a
Added on: 28 Feb 1995
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See Also