Guest

Untitled

By: a guest on Jan 28th, 2012  |  syntax: mIRC  |  size: 0.33 KB  |  hits: 67  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. alias tinypig {
  2.   if ($1 == on) {
  3.     set %Tinyurk on
  4.     echo $me The tinyurl linking is now turned on
  5.   }
  6.   elseif ($1 == off) {
  7.     set %Tinyurk off
  8.     echo $me The tinyurl linking is now turned off
  9.   }
  10.   elseif ($1 == $null) {
  11.     echo Please choose on or off
  12.   }
  13.   else {
  14.     echo Please input yes or no
  15.   }
  16. }