Advertisement
ruckypup

holdnick

Apr 18th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.59 KB | None | 0 0
  1. ;### KEEP MY NICK ###
  2. alias holdnick {
  3.   if ($1 == $null) {
  4.     holdnick.list
  5.     enable #holdnick
  6.     return
  7.   }
  8.   if ( $1 == off ) {
  9.     disable #holdnick
  10.     echo 14 -a *** HOLDNICK OFF
  11.     return
  12.   }
  13.   else {
  14.     %holdnick = $$1
  15.     nick %holdnick
  16.     notify $$1
  17.     enable #holdnick
  18.     echo 14 -a *** HOLDNICK ON $$1
  19.   }
  20. }
  21. alias holdnick.list {
  22.   if (*efnet* iswm $network) { nick rucky | return }
  23.   if (*undernet* iswm $network) { nick rucky | return }
  24.   nick rucky
  25. }
  26. #holdnick on
  27. on *:unotify: {
  28.   if ($nick == %holdnick) { nick %holdnick }
  29. }
  30. #holdnick end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement