Advertisement
Guest User

Text color script

a guest
Feb 19th, 2014
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. ;INSTRUCTIONS: you will need to edit this slightly.
  2. ;Open mIRC. Click the Scripts Editor button along the
  3. ;top menu, looks like a yellowish scroll with a green dot.
  4. ;Copy and paste the script below into the "Remote" tab.
  5. ;
  6. ;On the line 4th from the bottom where it says "say 10 $+ $1-",
  7. ;place your cursor immediately before the "10" after the space,
  8. ;then press Ctrl+K. This will bring up a color bar with numbers
  9. ;and also create a little black square which must remain in the code.
  10. ;Replace "10" in the script with your desired color number.
  11. ;(10, the default, is turquoise. )
  12. ;Test it out. :) You can always go back and change the color number.
  13. ;If there are any problems or questions contact me on IRC.
  14. ; - Hypatian
  15. ;
  16. ;Code to copy paste begins after this line
  17.  
  18.  
  19. on *:input:#:{
  20. if $left($$1,1) == / {
  21. $1-
  22. halt
  23. }
  24. say 10 $+ $1-
  25. :end
  26. halt
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement