Fancy colour text or custom
mIRC Code
+ 0 likes
Please Register to submit score.
| Average Score | 2.0 |
| Scores Submitted | 1 |
| Date Added | May 27, 2007 |
| Last Updated | Sep 14, 2007 |
| Tags | colour custom fancy text |
|
|
Introduction
When loaded right click on a channel and choose from a list of colours:
blends of black and greys
blends of greens
blends of blues
pink, purple
red, orange and yellow
rainbow
custom
and an option turning the colour off
*Updates
A new custom system so you can modify your own text
mIRC Snippet:
Fancy colour text or custom
Posted on May 30, 2007 12:32 am
Posted on May 30, 2007 12:32 am
its messed up I cannot shut off the colored text my friend!!!
mIRC Snippet:
Fancy colour text or custom
Posted on May 30, 2007 12:52 am
Posted on May 30, 2007 12:52 am
ok it worked fine before you added the rainbow part
mIRC Snippet:
Fancy colour text or custom
Posted on May 30, 2007 1:07 am
Posted on May 30, 2007 1:07 am
you need to add the && to each one, I saw that you updated this and it stays on all the time now I have fixed my copy. Here it is, Note that I modified it slightly but I do that with all the snippets no offense!!! :)
on *:INPUT:*:{
if (%colourtxton == 1) && ($left($1,1) != /) {
say 15,0¦|0,15¦|14¦|15,14¦|1¦|8,1 $1- 1,14|¦15|¦14,15|¦0|¦15,0|¦
halt
}
elseif (%colourtxton == 2) && ($left($1,1) != /) {
say 9,0¦|0,9¦|3¦|9,3¦|10¦|11,10 $1- 10,3|¦9|¦3,9|¦0|¦9,0|¦
halt
}
elseif (%colourtxton == 3) && ($left($1,1) != /) {
say 11,0¦|0,11¦|12¦|11,12¦|2¦|9,2 $1- 2,12|¦11|¦12,11|¦0|¦11,0|¦
halt
}
elseif (%colourtxton == 4) && ($left($1,1) != /) {
say 13,0¦|0,13¦|6¦|13,6¦|5¦|4 $1- 5|¦13|¦6,13|¦0|¦13,0|¦
halt
}
elseif (%colourtxton == 5) && ($left($1,1) != /) {
say 8,0¦|0,8¦|7¦|8,7¦|4¦|8,4 $1- 4,7|¦8|¦7,8|¦0|¦8,0|¦
halt
}
elseif (%colourtxton == 6) && ($left($1,1) != /) {
say 4,0¦|0,4|¦7¦|4,7|¦8¦|7,8|¦9¦|8,9|¦11¦|9,11|¦13¦|11,13|¦6¦|13,6|¦13 $1- 13,6¦|6,13|¦11¦|13,11|¦9¦|11,9|¦8¦|9,8|¦7¦|8,7|¦4¦|7,4|¦0¦|4,0|¦
halt
}
}
menu channel,nicklist {
Text colourer
.black+grey:{
set %colourtxton 1
}
.green:{
set %colourtxton 2
}
.blue:{
set %colourtxton 3
}
.pink,purple:{
set %colourtxton 4
}
.red,orange,yellow:{
set %colourtxton 5
}
.rainbow:{
set %colourtxton 6
}
.COLOUR OFF:{
unset %colourtxton
}
}
on *:INPUT:*:{
if (%colourtxton == 1) && ($left($1,1) != /) {
say 15,0¦|0,15¦|14¦|15,14¦|1¦|8,1 $1- 1,14|¦15|¦14,15|¦0|¦15,0|¦
halt
}
elseif (%colourtxton == 2) && ($left($1,1) != /) {
say 9,0¦|0,9¦|3¦|9,3¦|10¦|11,10 $1- 10,3|¦9|¦3,9|¦0|¦9,0|¦
halt
}
elseif (%colourtxton == 3) && ($left($1,1) != /) {
say 11,0¦|0,11¦|12¦|11,12¦|2¦|9,2 $1- 2,12|¦11|¦12,11|¦0|¦11,0|¦
halt
}
elseif (%colourtxton == 4) && ($left($1,1) != /) {
say 13,0¦|0,13¦|6¦|13,6¦|5¦|4 $1- 5|¦13|¦6,13|¦0|¦13,0|¦
halt
}
elseif (%colourtxton == 5) && ($left($1,1) != /) {
say 8,0¦|0,8¦|7¦|8,7¦|4¦|8,4 $1- 4,7|¦8|¦7,8|¦0|¦8,0|¦
halt
}
elseif (%colourtxton == 6) && ($left($1,1) != /) {
say 4,0¦|0,4|¦7¦|4,7|¦8¦|7,8|¦9¦|8,9|¦11¦|9,11|¦13¦|11,13|¦6¦|13,6|¦13 $1- 13,6¦|6,13|¦11¦|13,11|¦9¦|11,9|¦8¦|9,8|¦7¦|8,7|¦4¦|7,4|¦0¦|4,0|¦
halt
}
}
menu channel,nicklist {
Text colourer
.black+grey:{
set %colourtxton 1
}
.green:{
set %colourtxton 2
}
.blue:{
set %colourtxton 3
}
.pink,purple:{
set %colourtxton 4
}
.red,orange,yellow:{
set %colourtxton 5
}
.rainbow:{
set %colourtxton 6
}
.COLOUR OFF:{
unset %colourtxton
}
}
mIRC Snippet:
Fancy colour text or custom
Posted on May 30, 2007 6:03 am
Posted on May 30, 2007 6:03 am
Lol sorry about that, i had the && in my code but it didnt copy it o.O. Sorted now thanks for pointing that out ;). And no offense taken, i also update snippets like the ifabet which is bigtext that needed better work ¬_¬.
mIRC Snippet:
Fancy colour text or custom
Posted on Jun 2, 2007 6:07 am
Posted on Jun 2, 2007 6:07 am
Nice Addon My Freind WOrked With No Problems At All Keep The Good Work >:)
mIRC Snippet:
Fancy colour text or custom
Posted on Jun 2, 2007 4:13 pm
Posted on Jun 2, 2007 4:13 pm
glad ya like it :D






