Advertisement
SaNCaK

mIRC Notice Window On/Off

Feb 1st, 2014
462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 1.12 KB | None | 0 0
  1. menu status,menubar {
  2. $iif(%noticepen,$style(1)) Notice Window ( $+ $iif(%noticepen,On,Off) $+ ) {
  3.     if (%noticepen) { unset %noticepen | .disable #noticepen | echo -a $timestamp 2,15Notice Window 4CLOSE }
  4.     else { set %noticepen ON | .enable #noticepen | echo -a $timestamp 2,15Notice Window 3OPEN }
  5.   }
  6. }
  7.  
  8. #noticepen on
  9. on ^*:NOTICE:*:?: {
  10.   if (%noticepen == ON) {
  11.     if ($window(@NoticePencere) != $null) { echo @NoticePencere $timestamp 0,3 Notice 1,15 $nick 3,3 1,15  $1- 3,3  | haltdef }
  12.     else { window -nke @NoticePencere -1 -1 500 | titlebar @NoticePencere -  § â ñ ¢ â K Notice | echo @NoticePencere $timestamp 0,3 Notice 1,15 $nick 3,3 1,15  $1- 3,3  | haltdef }
  13.   }
  14. }
  15. on ^*:NOTICE:*:#: {
  16.   if (%noticepen == ON) {
  17.     if ($window(@NoticePencere) != $null) { echo @NoticePencere $timestamp 0,3 $chan 1,15 $nick 3,3 1,15 $1- 3,3  | haltdef }
  18.     else { window -nke @NoticePencere -1 -1 500 300 | titlebar @NoticePencere -  § â ñ ¢ â K Notice | echo @NoticePencere $timestamp 0,3 $chan 1,15 $nick 3,3 1,15  $1- 3,3  | haltdef }
  19.   }
  20. }
  21. #noticepen end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement