Advertisement
Guest User

Untitled

a guest
May 24th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Per 1.90 KB | None | 0 0
  1. ;Color Font Script by keatoN - irc.gamesurge.net
  2.  
  3. menu * {
  4.   Keatons Color Font
  5.   .on/off: {
  6.     if (!%cf.font) {
  7.       set %cf.font 1
  8.     }
  9.     if (!%cf.bkgrd) {
  10.       set %cf.bkgrd 0
  11.     }
  12.     if (!%colorfont) {
  13.       set %colorfont 1
  14.       echo -a 4 Color Font Now Active.
  15.       halt
  16.     }
  17.     unset %colorfont
  18.     echo -a 4 Color Font Now Inactive.
  19.     halt
  20.   }
  21.   .underline: {
  22.     if (!%cf.und) {
  23.       set %cf.und 1
  24.       halt
  25.     }
  26.     unset %cf.und
  27.   }
  28.   .bold: {
  29.     if (!%cf.bld) {
  30.       set %cf.bld 1
  31.       halt
  32.     }
  33.     unset %cf.bld
  34.   }
  35.   .text color
  36.   ..0 white: set %cf.font 0
  37.   ..1 black: set %cf.font 1
  38.   ..2 blue: set %cf.font 2
  39.   ..3 green: set %cf.font 3
  40.   ..4 lightred: set %cf.font 4
  41.   ..5 brown: set %cf.font 5
  42.   ..6 purple: set %cf.font 6
  43.   ..7 orange: set %cf.font 7
  44.   ..8 yellow: set %cf.font 8
  45.   ..9 lightgreen: set %cf.font 9
  46.   ..10 cyan: set %cf.font 10
  47.   ..11 light-cyan: set %cf.font 11
  48.   ..12 lightblue: set %cf.font 12
  49.   ..13 pink: set %cf.font 13
  50.   ..14 grey: set %cf.font 14
  51.   ..15 lightgrey: set %cf.font 15
  52.   .background color
  53.   ..0 white: set %cf.bkgrd 0
  54.   ..1 black: set %cf.bkgrd 1
  55.   ..2 blue: set %cf.bkgrd 2
  56.   ..3 green: set %cf.bkgrd 3
  57.   ..4 lightred: set %cf.bkgrd 4
  58.   ..5 brown: set %cf.bkgrd 5
  59.   ..6 purple: set %cf.bkgrd 6
  60.   ..7 orange: set %cf.bkgrd 7
  61.   ..8 yellow: set %cf.bkgrd 8
  62.   ..9 lightgreen: set %cf.bkgrd 9
  63.   ..10 cyan: set %cf.bkgrd 10
  64.   ..11 light-cyan: set %cf.bkgrd 11
  65.   ..12 lightblue: set %cf.bkgrd 12
  66.   ..13 pink: set %cf.bkgrd 13
  67.   ..14 grey: set %cf.bkgrd 14
  68.   ..15 lightgrey: set %cf.bkgrd 15
  69. }
  70. on *:input:#: {
  71.   if ((/ !isin $left($1,1)) && (%colorfont)) {
  72.     set %color.font  $+ %cf.font $+ , $+ %cf.bkgrd
  73.     if (%cf.bld) {
  74.       set %color.font  $+ %color.font
  75.     }
  76.     if (%cf.und) {
  77.       set %color.font $+ %color.font
  78.     }
  79.     msg $chan %color.font $+  $strip($1-)
  80.     halt
  81.   }
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement