mIRC Home    About    Download    Register    News    Help

Print Thread
#11926 18/02/03 08:05 PM
Joined: Dec 2002
Posts: 11
R
Pikka bird
OP Offline
Pikka bird
R
Joined: Dec 2002
Posts: 11
I just want have always caps on words "a" and "c".

If i write "hallo caps" mIRC have to translate it in "hAllo CAps".

tnx every1

#11927 18/02/03 08:09 PM
Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
$replacecs(hallo caps,a,A,c,C)

#11928 18/02/03 08:43 PM
Joined: Feb 2003
Posts: 76
G
Babel fish
Offline
Babel fish
G
Joined: Feb 2003
Posts: 76
I suppose he wants that using INPUT... bored to write code now cool
EDIT:
Yeah hyp0r i think you got the msg too... You're fast! wink

Last edited by gerdigos; 18/02/03 08:48 PM.
#11929 18/02/03 08:43 PM
Joined: Feb 2003
Posts: 15
H
Pikka bird
Offline
Pikka bird
H
Joined: Feb 2003
Posts: 15
I believe he wants it to change anything he types in. So what Collective said is correct but you'll need a little extra code for it to translate everything you say.

Try this (place this code in your Remote scripts):
Code:
on 1:INPUT:*:{
  say $replacecs($1-,a,A,c,C)
  halt
}


That way anything you type in will automatically have the a and c translated into A and C respectively.


Link Copied to Clipboard