OP
Babel fish
Joined: Sep 2003
Posts: 98 |
ok i have solved the problem on other way :P its an encoding and decoding script here is code if anyone wants it: encoder:
on *:input:#: {
var %beseda $1-
if ( %leet == on ) {
%beseda = -leet(encoded)- $replace(%beseda,a,4,b,8,c,F,d,0.,e,3,f,C.,g,6,h,4.,i,1,j,9,k,B,l,1.,m,3.,n,Q,o,0,p,7.,r,2.,s,5,t,7,u,0:,v,3:,w,3;,z,2,y,9.)
}
}
and you have to put: %leet on in variables decoder:
on ^*:text:*:#: {
var %beseda $1-
if ( $1 == -leet(encoded)- ) {
%beseda = $2-
%beseda = -leet(decoded)- $replace(%beseda, F,c,C.,f,B,k,0:,u,3:,v,3;,w,9.,y,0.,d,7.,p,2.,r,1.,l,3.,m,4.,h,4,a,8,b,3,e,6,g,1,i,9,j,Q,n,0,o,5,s,7,t,2,z)
}
}
|