3D text
Platform: mIRC
Published May 11, 2011
Updated May 11, 2011
As the title says its a 3D text talker. turn it on and select the colors you want and you get 3D looking text the original version was made by Jethro_ me and lucius did some edits to it though so that you can choose diff colors for the text instead of it always being the same can also do underline and bold. put into a new remotes then right click in the nicklist,query or channel go to 3d text choose your color and turn it on.
alias -l spaces { return %3d.3 ( }
Menu Nicklist,query,channel {
.3dtext
..on: { set %3dtext on }
..off: { set %3dtext off }
..Blue: { .set %3d.1 02 | .set %3d.2 12 | .set %3d.3 2,2 | .set %3d.4 00 | .set %3d.5 01 }
..Green: { .set %3d.1 03 | .set %3d.2 09 | .set %3d.3 3,3 | .set %3d.4 00 | .set %3d.5 01 }
..Red: { .set %3d.1 05 | .set %3d.2 04 | .set %3d.3 01 | .set %3d.4 07 | .set %3d.5 01 }
..Gray: { .set %3d.1 14 | .set %3d.2 15 | .set %3d.3 14 | .set %3d.4 00 | .set %3d.5 01 }
..Pink: { .set %3d.1 13 | .set %3d.2 07 | .set %3d.3 13 | .set %3d.4 08 | .set %3d.5 12 }
.Bold
..On: { .set %bold }
..Off: { .set %bold }
.underline
..On: { .set %underline }
..Off: { .set %underline }
}
on *:Input:*: {
if (%3dtext == on) {
msg $active %underline %bold $regsubex($regsubex($1-,/(?!\s)(.)/g,$+($chr(3),%3d.2,$chr(44),%3d.1,$chr(40),$&
$+($chr(3),%3d.4,$chr(44),%3d.1,\1),$+($chr(3),%3d.5,$chr(41),$chr(3)))),/(\s)/g,$spaces(\1)))
haltdef
}
}