From WikiChip
Difference between revisions of "mirc/commands/maxdepth"
< mirc‎ | commands

m
 
(12 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
{{mirc title|/maxdepth Command}}
 
{{Deprecated feature}}
 
{{Deprecated feature}}
  
The '''/maxdepth command''' can be used to change the maximum allowable recursion limit for a single alias. A depth of 1 indicates no direct recursion is allowed. The maximum depth is 100. Calling an alias from within itself recursively has been disabled.
+
The '''/maxdepth command''' could be used to change the maximum allowable recursion limit for a single alias. A depth of 1 indicates no direct recursion is allowed. The maximum depth is 100. Calling an alias from within itself recursively has been disabled.
  
 
== Synopsis ==
 
== Synopsis ==
Line 67: Line 68:
  
 
== Compatibility ==
 
== Compatibility ==
Added: mIRC v4.5
+
{{mIRC compatibility|4.5}}
 
 
Added On: 30/06/1996
 
  
 
Removed: 07/09/1996
 
Removed: 07/09/1996
Line 75: Line 74:
 
Removed On:mIRC v4.6
 
Removed On:mIRC v4.6
  
<small>Note: Individual switches were not taken into consideration.</small>
+
 
  
 
== See also ==
 
== See also ==
 
* [[List of commands - mIRC|List of commands]]
 
* [[List of commands - mIRC|List of commands]]
 
* [[List of identifiers - mIRC|List of identifiers]]
 
* [[List of identifiers - mIRC|List of identifiers]]
* [[/scid command - mIRC|/scid]]
+
* {{mIRC|/scid}}
* [[/scon command - mIRC|/scon]]
+
* {{mIRC|/scon}}
 +
{{mIRC command list}}
  
[[Category:mIRC commands]]
+
[[Category:mIRC commands|maxdepth command - mIRC]]

Latest revision as of 22:54, 3 May 2023

Note: This feature has essentially been removed.

The /maxdepth command could be used to change the maximum allowable recursion limit for a single alias. A depth of 1 indicates no direct recursion is allowed. The maximum depth is 100. Calling an alias from within itself recursively has been disabled.

Synopsis[edit]

/maxdepth <depth>

Switches[edit]

Parameters[edit]

  • <depth> - The new recursion depth limit (1-100).

Example[edit]

example {
  ;set max recursion depth to 3
  maxdepth 3
  set %a 1
  test
}
test {
  echo test %a
  inc %a  
  test
}

Output:

   * Max depth is 3
   -
   test 1
   test 2
   -
   TEST Unknown command
   -

Another Example:

example {
  maxdepth 10
  set %a 1
  test
}
test {
  echo test %a
  inc %a  
  test
}

Output:

   -
   * Max depth is 10
   -
   test 1
   test 2
   test 3
   test 4
   test 5
   test 6
   test 7
   test 8
   test 9
   -
   TEST Unknown command
   -

Compatibility[edit]

Added: mIRC v4.5
Added on: 30 Jun 1996
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


Removed: 07/09/1996

Removed On:mIRC v4.6


See also[edit]

[Expand]
v · d · e mIRC commands list