mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: May 2007
Posts: 8
E
Elixir Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
E
Joined: May 2007
Posts: 8
Hey there, I'm just wondering if someone could help me with this script. I'm looking for a script that changes all vowels in the sentence you're writing, into the letter "o". Not what you see in chat, but rather what you output when writing a sentence normally. It shouldn't be too hard, I just don't know where to begin. Can anyone help? Any advice is much appreciated, thank you.

Joined: Dec 2002
Posts: 2,031
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Dec 2002
Posts: 2,031

Code:

on *:INPUT:#: {
  if (($left($1,1) == /) && (!$ctrlenter)) return
  msg # $replacecs($1-,a,o,A,O,e,o,E,O,i,o,I,O,u,o,U,O)
  haltdef
}


Joined: May 2007
Posts: 8
E
Elixir Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
E
Joined: May 2007
Posts: 8
Awesome! That works perfectly. Thanks a lot.


Link Copied to Clipboard