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
mIRC Snippet:
Hack Talk
Posted on Aug 15, 2005 3:58 pm
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.
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.
mIRC Snippet:
Hack Talk
Posted on Aug 16, 2005 4:08 am
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,+)
}
}
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,+)
}
}
mIRC Snippet:
Hack Talk
Posted on Aug 16, 2005 11:13 am
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...
mIRC Snippet:
Hack Talk
Posted on Aug 18, 2005 7:03 am
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
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
mIRC Snippet:
Hack Talk
Posted on Dec 22, 2005 2:26 pm
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".
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".
mIRC Snippet:
Hack Talk
Posted on Feb 8, 2006 9:15 am
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
}
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
}



