mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Apr 2003
Posts: 57
V
Babel fish
OP Offline
Babel fish
V
Joined: Apr 2003
Posts: 57
hi when i am in a channel and i type lol how can i make mirc change that to Laghing out Loud

also how can i have my nick show up as a different color under the nick list

does anyone know of a irc channel for mirc scripting
thx

Joined: Apr 2003
Posts: 300
A
Fjord artisan
Offline
Fjord artisan
A
Joined: Apr 2003
Posts: 300
For the lol bit
Code:
 
on 1:INPUT:#:{
  if lol isin $1- { /msg # $replace($1-,lol,laugh out loud) | halt }
}
 

and i cant help u with anything else

Last edited by andymps; 29/06/03 02:46 AM.

Liek OMG Yuo Stoleded my MageHurtzzzz!!!11
Joined: Apr 2003
Posts: 57
V
Babel fish
OP Offline
Babel fish
V
Joined: Apr 2003
Posts: 57
thx
also can any one tell me how to change the text style in mirc because the defualt looks so dull

Joined: Feb 2003
Posts: 2,812
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,812
I don't know why people want to change LOL to Laughing Out Loud. It's extremely -LAME- and very much frowned upon. (I've even seen people banned for doing so.)

As for the changing your name color, I personally use this scriptlet. (Put in your Remotes [Alt+R]
Code:
RAW 366:*: sline 5 $2 $1
You can change 5 to any color code you want. You can also change it from sline to cline if you don't want your nick Selected too. Nice thing about sline is that it scrolls the nicklist to your name so it's always in view (as long as you stay selected).

- Raccoon


Well. At least I won lunch.
Good philosophy, see good in bad, I like!
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Code:
on *:INPUT:*: {
  if ( / isin $1- ) { return }
  if ( $istok( $strip($1-), lol, 32 ) == $true ) { say $replace( $strip( $1-), lol, $chr(3) $+ 4 $+ Laughing Out Loud ) | halt }
  :end
}

Joined: Feb 2003
Posts: 2,812
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,812
That doesn't take into consideration if someone types: LOL!!! (the !!! would throw it off)

var %s = My Input Text LOL!!!
var %nul = $regsub(%s,/\b(lol)\b/i,Laughing Out Loud,%s)
msg # %s

Or from the editbox: //var %s = My Input Text LOL!!!, %nul = $regsub(%s,/\b(lol)\b/i,Laughing Out Loud,%s) | echo -a %s

- Raccoon
I still say this is LAME.


Well. At least I won lunch.
Good philosophy, see good in bad, I like!
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
I agree with you there, it is lame, but what would I know. laugh


Link Copied to Clipboard