Difference between revisions of "$isid"

From Scriptwiki
Jump to: navigation, search
(No difference)

Revision as of 22:36, 27 November 2005

Returns $true if the alias was called as an identifer, otherwise will return $false.

$isid

Example

alias chans {
  if (!$isid) { echo $color(info) -ag Can not call /chans, this alias must be called like $chans }
  var %i = $chan(0)
  while (%i) {
    var %chans = $addtok(%chans,$chan(%i),44)
    dec %i
  }
  return %chans
}