Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.36 KB | None | 0 0
  1. ;Creating your own commands in mSL, always include alias if your doing it in the remote scripts section.
  2.  
  3. alias process {
  4.   ;utilize if-then-else state ments. if (value1 <arg> value2)
  5.  
  6.   if ($1 == $null) { goto end }
  7.  
  8.   ;elseif (value1 <arg> value2)
  9.  
  10.   elseif ($1 != $null) {
  11.     echo You typed this: $1-
  12.     goto end
  13.   }
  14.   else { echo Error $error }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement