mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Nov 2003
Posts: 82
F
Felpipe Offline OP
Babel fish
OP Offline
Babel fish
F
Joined: Nov 2003
Posts: 82
Hello how can i Make a script that as I type, whatever I type it replaces some letters with others....

for example:

Remplace Letter O with Ø so when I write "Hello" I wold actually say HellØ

thank you very much smile

Joined: Dec 2002
Posts: 1,245
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Dec 2002
Posts: 1,245
on *:input:*:*:{
if (($left($1,1) == $readini($mircini,text,commandchar)) || ($left($$1,1) == !) || ($left($$1,1) == @) || ($ctrlenter == $true)) { return }
msg $active $replace($$1-,O,0)
haltdef
}
try something like that

this has been covered on the message board here many times
you will find many many examples of input scripts by using the search feature on the message board

Joined: Nov 2003
Posts: 82
F
Felpipe Offline OP
Babel fish
OP Offline
Babel fish
F
Joined: Nov 2003
Posts: 82
Thank you Very much smile


Link Copied to Clipboard