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

(Created $v1nidentifier page)
 
m (See Also)
Line 26: Line 26:
  
 
==See Also==
 
==See Also==
*[[Conditional Statements - mIRC|If then else]]
+
*[[Conditional statements - mIRC|If then else]]
 
*[[While Loops - mIRC|While loops]]
 
*[[While Loops - mIRC|While loops]]
 
*[[$v2 identifier - mIRC|$v2]]
 
*[[$v2 identifier - mIRC|$v2]]

Revision as of 23:21, 26 June 2014

The $v1 identifier returns the value of the lefthand operand of the most recently checked conditonal statement. This identifier is equivalent to the $ifmatch identifier.

Synopsis

$v1

Examples

List the names of any hash tables currently in use upon calling an alias /hlist:

alias hlist {
  if (!$hget(0)) { echo -qgaec i * No hash tables in use }
  else {
    var %i 1
    while ($hget(%i) != $null) {
      echo -ga $v1
    }
  }
  echo -qgaec i End of /hlist.
}


Check if two random numbers between 1 and 5 are equivalent, and echo the matching numbers if so:

//echo -ga $iif($rand(1,5) == $rand(1,5),Yes! $v1 == $v2,No! $v1 != $v2) $+ !

Compatibility

Added: v6.16 Added on: 07/07/2004

See Also