Difference between revisions of "$isid"

From Scriptwiki
Jump to: navigation, search
 
(Added reference links)
Line 7: Line 7:
 
   [[var]] %i = [[$chan]](0)
 
   [[var]] %i = [[$chan]](0)
 
   [[While_loops|while]] (%i) {
 
   [[While_loops|while]] (%i) {
     var %chans = $addtok(%chans,$chan(%i),44)
+
     var %chans = [[$addtok]](%chans,$chan(%i),44)
     dec %i
+
     [[dec]] %i
 
   }
 
   }
   return %chans
+
   [[return]] %chans
 
  }
 
  }
  
 
[[Category:Remote Identifiers]][[Category:Aliases]]
 
[[Category:Remote Identifiers]][[Category:Aliases]]

Revision as of 00:38, 28 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
}