Advertisement
MythIncDragon

Untitled

Dec 27th, 2022 (edited)
1,952
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.81 KB | Source Code | 0 0
  1. alias returnPass {
  2.     var -l %pseed Auth%F0xtrot691!
  3.     var -l %pass
  4.    
  5.     echo returnpass called with $1     
  6.     if ($1 == oldpass1) { %pass = %oldpass1 }
  7.     else if ($1 == oldpass2) { %pass = %oldpass2 }
  8.     else { %pass = $(%pseed) $+ $network }
  9.     return %pass
  10. }
  11.  
  12. alias doauth {
  13.     var -i %pass = $returnPass
  14.     echo @adiircProg +-----------------------------------------------------+
  15.     echo @adiircProg $timestamp
  16.     echo @adiircProg Logging into network: $network
  17.     if (!$1) { echo @adiircProg Logging in with the nick: $me }
  18.     else { echo @adiircProg Logging in with the nick: $1 }
  19.     echo @adiircProg using password: $returnpass
  20.     echo @adiircProg +-----------------------------------------------------+       
  21.    
  22.     if (!$1) { /ns identify $me $returnpass }
  23.     else { /ns identify $1 $returnpass }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement