mIRC Home    About    Download    Register    News    Help

Print Thread
#56219 19/10/03 11:18 PM
Joined: Sep 2003
Posts: 120
G
Gar Offline OP
Vogon poet
OP Offline
Vogon poet
G
Joined: Sep 2003
Posts: 120
I am looking for something that when I type:

/l33t [message]

it will take apart the [message] apart letter by letter and change certain letters if they match a certain letter, which comes from this list:

if letter is T change it to 7
if letter is E change it to 3
if letter is A change it to 4
and so on

So when I type

/l33t Test this stuff

it will do this:

<Gar> 73s7 7his s7uff

Can this be done?

#56220 19/10/03 11:36 PM
J
Johan_NL
Johan_NL
J
There are scripts for that kind of stuff. Just wonder why anyone would use it lol :tongue:

Johan_NL smile

#56221 19/10/03 11:40 PM
Joined: Sep 2003
Posts: 120
G
Gar Offline OP
Vogon poet
OP Offline
Vogon poet
G
Joined: Sep 2003
Posts: 120
cause I am bored and trying to experiment with different things. grin

#56222 20/10/03 12:31 AM
K
Kevin_b_er
Kevin_b_er
K
wow thats lame


use an alias, and have it use a msg $chan $replace($1-,T,7,E,3) as its code.
put as many as you need to, and they don't have to be single character strings either.


Come to think of it, I made a script like this once, only it did the opposite, it put it into human-readable format...

And since I've deleted that script, if I find you on a chan that I'm opped in using a script like that, you'll see an example usage of my kick alias. :P

#56223 20/10/03 01:23 AM
Joined: Sep 2003
Posts: 120
G
Gar Offline OP
Vogon poet
OP Offline
Vogon poet
G
Joined: Sep 2003
Posts: 120
Also how can you do it to change the word you to j00? I tried putting in YOU,j00 but it didn't work.

#56224 20/10/03 04:01 AM
Joined: Dec 2002
Posts: 1,893
O
Hoopy frood
Offline
Hoopy frood
O
Joined: Dec 2002
Posts: 1,893
//echo -a $replace(how are you?,you,j00,a,4,e,3)

I used to have 3 $l33t identifiers until the installation of v6.12 wiped my aliases file :tongue:

#56225 20/10/03 06:30 PM
P
pheonix
pheonix
P
Code:
menu channel {
  1337 73X7
  .$iif($1337 == on,$style(3)) on: .enable #leet
  .$iif($1337 == off,$style(3)) off: .disable #leet
}
on *:input:#:{
  if ($1337 == on) &amp;&amp; ($left($1,1) != /) { 
    msg # $replace($1-,you,j00,o,0,l,1,e,3,t,7,a,4) 
  }
  elseif ($1337 == off) &amp;&amp; ($left($1,1) != /) {
    msg # $1-
  }
  else { return $1- }
  haltdef
} 
alias 1337 { return $group(#leet).status }
;-switch
#leet off
blah
#leet end


although it isn't what you asked for this will give you an on and off switch in any window beginning with '#', if the switch is on, when you send a message it will come out like l = 1, o = 0, etc.
if its off it will just message the channel as usual.


Link Copied to Clipboard