Advertisement
Charmander

color

Mar 17th, 2013
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 1.33 KB | None | 0 0
  1. on *:input:*: {
  2.   if ($left($1,1) == /) { return }
  3.   if ($left($1,1) == !) { return }
  4.   else {
  5.     if (%font == Blue) {
  6.       haltdef
  7.       msg $active 12%0,12% 2%12,2% 1%2,1%0 $1-  2%1,2% 12%2,12% 0%12%
  8.     }
  9.     elseif (%font == Red) {
  10.       haltdef
  11.       msg $active 4%0,4% 5%4,5% 1%5,1%0 $1- 5%1,5% 4%5,4% 0%4%
  12.     }
  13.     elseif (%font == Green) {
  14.       haltdef
  15.       msg $active 9%0,9% 3%9,3% 1%3,1%0 $1- 3%1,3% 9%3,9% 0%9%
  16.     }
  17.     elseif (%font == Pink) {
  18.       haltdef
  19.       msg $active 13%0,13% 6%13,6% 1%6,1%0 $1- 6%1,6% 13%6,13% 0%13%
  20.     }
  21.     elseif (%font == Grey) {
  22.       haltdef
  23.       msg $active 15%0,15% 14%15,14% 1%14,1%0 $1- 14%1,14% 15%14,15% 0%15%
  24.     }
  25.     elseif (%font == Rainbow) {
  26.       haltdef
  27.       msg $active 7,4|4,7|8,7|7,8|9,8|8,9|10,9|9,3|12,3|3,12|1,12|12,1|  $+ $rainbow($1-) $+ 12,1 |1,12|3|2,3|9,3|3,9|8,9|9,8|7,8|8,7|4,7|7,4|
  28.     }
  29.     elseif (%font == Tubby) {
  30.       haltdef
  31.       msg $active 7<(^_^<) $1- 7(>^_^)>
  32.     }
  33.   }
  34. }
  35. menu menubar,channel,query {
  36.   .Fonts
  37.   ..Blue :set %font Blue
  38.   ..Red :set %font Red
  39.   ..Green :set %font Green
  40.   ..Pink :set %font Pink
  41.   ..Grey :set %font Grey
  42.   ..Rainbow :set %font Rainbow
  43.   ..Tubby :set %font Tubby
  44.   ..Off :unset %font
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement