From WikiChip
Difference between revisions of "mirc/identifiers/$scriptline"
< mirc‎ | identifiers

(Created page with "{{mirc title|$scriptline Identifier}}'''$scriptline''' return the number of the line in the current script. == Synopsis == <pre>$scriptline</pre> == Paramters == None == P...")
 
m
Line 1: Line 1:
{{mirc title|$scriptline Identifier}}'''$scriptline''' return the number of the line in the current script.
+
{{mirc title|$scriptline identifier}}'''$scriptline''' returns the number of the line in the current script.
  
 
== Synopsis ==
 
== Synopsis ==
 
<pre>$scriptline</pre>
 
<pre>$scriptline</pre>
  
== Paramters ==
+
== Parameters ==
 
 
 
None
 
None
  
 
== Properties ==
 
== Properties ==
 
 
None
 
None
  
Line 16: Line 14:
 
<source lang="mIRC">
 
<source lang="mIRC">
 
alias test {
 
alias test {
echo -a $scriptline
+
  echo -a $scriptline
 
}</source> would show '2'
 
}</source> would show '2'
  
Line 22: Line 20:
 
{{mIRC compatibility|5.8}}
 
{{mIRC compatibility|5.8}}
  
== See Also ==
+
== See also ==
 
{{mIRC|$scriptdir}}
 
{{mIRC|$scriptdir}}
[[Category:MIRC identifiers]]
+
[[Category:mIRC identifiers|scriptline]]

Revision as of 14:13, 22 September 2017

$scriptline returns the number of the line in the current script.

Synopsis

$scriptline

Parameters

None

Properties

None

Example

Put this code in a new remote file:

alias test {
  echo -a $scriptline
}
would show '2'

Compatibility

Added: mIRC v5.8
Added on: 05 Sep 2000
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See also

$scriptdir