From WikiChip
mirc/commands/load
< mirc‎ | commands
Revision as of 19:32, 4 December 2013 by David (talk | contribs) (Created page with "The '''/load command''' can be used to load any type of existing file including: aliases, popups, remote, users, and variables. Using /load on an already loaded file will upda...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The /load command can be used to load any type of existing file including: aliases, popups, remote, users, and variables. Using /load on an already loaded file will update its contents while maintaining its order among other files. Note that unlike the /reload command, /load will trigger the on load and on start events.

Synopsis

/load -a <filename>
/load -pscqnm <filename>
/load -ruvs <filename>

Switches

  • -a - load aliases file
  • -pm - load menubar popups file
  • -pn - load nicklist popups file
  • -pq - load query popups file
  • -pc - load channel popups file
  • -ps - load status window popups file
  • -rs - load remote script file
  • -rv - load variable file
  • -ru - load users file
  • -N - the Nth potion to load it into, where N is an actual value.

Parameters

  • <filename> - The script file to load

Example

Load three remote script files.

alias load_remote {
  load -rs foo.mrc
  load -rs bar.mrc
  load -rs baz.mrc
}

Load a variables and a users file:

alias load_vars_and_users {
  load -ru users2.ini
  load -rv vars2.ini
}

Compatibility

Added: mIRC v3.8

Added On: 11/25/95

Note: Individual switches were not taken into consideration.

See also