Top

Hack Talk

+ 0 likes
Please Register to submit score.
Average Score  4.2
Scores Submitted  5
Date Added  Aug 15, 2005
Last Updated  Mar 15, 2007

Introduction

Type /hacktalk. Then enter your message. It will translate it to "hacker talk". Could be funny I guess.

Grab the Code

Comments

  (14)  RSS
xDaeMoN
Comments: 696
 
mIRC Snippet:  Hack Talk
Posted on Aug 15, 2005 2:46 pm
You could shorten the code by using only one $replace. Variables are not needed too. Also you might want to use $active so it could be used in a PM.
Yoinx
Comments: 424
 
mIRC Snippet:  Hack Talk
Posted on Aug 15, 2005 3:58 pm
Personally, I'd do:
alias hacktalk {
if (!$1) {
msg $active $replace($$?="What would you like to be translated into hacker talk?",elite,1337,l,1,M,/\/\,H,|-|,a,4,e,3,the,+eh,s,z,S,Z,A,4,o,0,O,0,t,+)
}
else {
$replace($1,elite,1337,l,1,M,/\/\,H,|-|,a,4,e,3,the,+eh,s,z,S,Z,A,4,o,0,O,0,t,+)
}
}

so you can use /hacktalk your text here, or just do /hacktalk and enter it in the box. If you like the input box.
Noutrious
Comments: 343
 
mIRC Snippet:  Hack Talk
Posted on Aug 16, 2005 1:23 am
Very small bugs, but script is good!
Yoinx
Comments: 424
 
mIRC Snippet:  Hack Talk
Posted on Aug 16, 2005 4:08 am
sorry messed up the other one.
alias hacktalk {
if (!$1) {
msg $active $replace($$?="What would you like to be translated into hacker talk?",elite,1337,l,1,M,/\/\,H,|-|,a,4,e,3,the,+eh,s,z,S,Z,A,4,o,0,O,0,t,+)
}
else {
.msg $active $replace($1,elite,1337,l,1,M,/\/\,H,|-|,a,4,e,3,the,+eh,s,z,S,Z,A,4,o,0,O,0,t,+)
}
}
supergeo
Comments: 256
 
mIRC Snippet:  Hack Talk
Posted on Aug 16, 2005 11:13 am
I used more than one $replace because the code was going on to a different line and it's easier for me to read if it's on one line, so I started another one. Also keeps it neater and more organized. But I'm going to ask whoever scored it why I only got a 1? It worked perfectly like it was supposed to...
xDaeMoN
Comments: 696
 
mIRC Snippet:  Hack Talk
Posted on Aug 16, 2005 11:59 am
It would be "neater" if you only have one $replace since it can handle multiple words to replace.
supergeo
Comments: 256
 
mIRC Snippet:  Hack Talk
Posted on Aug 16, 2005 2:06 pm
Well, it's easier for me to edit the way I did it.
QuickStep
Comments: 123
 
mIRC Snippet:  Hack Talk
Posted on Aug 16, 2005 5:37 pm
have you actually tested it? $chan returns $null in an alias, you must use $active like yoinx did
supergeo
Comments: 256
 
mIRC Snippet:  Hack Talk
Posted on Aug 17, 2005 4:22 pm
It was designed for channels, but I changed it.
QuickStep
Comments: 123
 
mIRC Snippet:  Hack Talk
Posted on Aug 18, 2005 7:03 am
taken yoinx code, it could be reduced to 1 line of code
alias hacktalk msg $active $replace($iif($1,$v1,$$?="What would you like to be translated into hacker talk?"),elite,1337,l,1,M,/\/\,H,|-|,a,4,e,3,the,+eh,s,z,S,Z,A,4,o,0,O,0,t,+)

not saying yours doesnt work, its just something to keep in mind
|CE|Genji
Comments: 6
 
mIRC Snippet:  Hack Talk
Posted on Sep 7, 2005 12:32 pm
When I use it it says #Channelname (Like helpdesk) Unknown command
|CE|Genji
Comments: 6
 
mIRC Snippet:  Hack Talk
Posted on Sep 7, 2005 12:34 pm
Er never mind I fixed it my other line and messed it up
Foamy
Comments: 32
 
mIRC Snippet:  Hack Talk
Posted on Dec 22, 2005 2:26 pm
alias 1337talk {
set %hackmsg $$?="What would you like to be translated into 1337 talk?"
set %hackmsg $replace(%hackmsg,l,1,M,/\/\,H,|-|,a,4,e,3,the,+eh,s,z,S,Z,A,4,o,0,O,0,t,+,elite,1337,dude,d00d)
msg $active %hackmsg
}

menu * {
1337 Talk: 1337take
}
It needs to be "1337talk" not "1337take".
ryu.dragonryder
Comments: 21
 
mIRC Snippet:  Hack Talk
Posted on Feb 8, 2006 9:15 am
you could always update your script using this more comprehensive text in your style format of script.
alias 1337talk {
set %hackmsg $$?="What would you like to be translated into 1337 talk?"
set %hackmsg $replace(%hackmsg,a,@,b,ß,c,©,d,ð,e,£,f,¦=,g,9,h,¦-¦,i,ï,j,_¦,k,¦<,l,7,m,/\/\,n,¦/¦,o,¤,p,Þ,q,¶,r,®,s,§,t,+,u,¦_¦,v,\/,w,¦/\¦,x,}{,y,ý,z,2,A,@,B,ß,C,©,D,ð,E,£,F,¦=,G,9,H,¦-¦,I,ï,J,_¦,K,¦<,L,7,M,/\/\,N,¦/¦,O,¤,P,Þ,Q,¶,R,®,S,§,T,+,U,¦_¦,V,\/,W,¦/\¦,X,}{,Y,ý,Z,2,elite,1337)
msg $active %hackmsg
}

menu * {
1337 Talk: 1337talk
}

Please Register or Login to start posting comments.
Bottom