mIRC Home    About    Download    Register    News    Help

Print Thread
#122321 09/06/05 07:06 AM
Joined: May 2005
Posts: 106
S
Vogon poet
OP Offline
Vogon poet
S
Joined: May 2005
Posts: 106
could someone please make a script where i join #espanol (spanish channel) and when ever someone says sumthing it pops up as english and i need to type english and it shows them its spanish??


and thats the way the scout leader burns
#122322 09/06/05 08:03 AM
Joined: Mar 2005
Posts: 74
D
Babel fish
Offline
Babel fish
D
Joined: Mar 2005
Posts: 74
If you give me a complete word list with

english - spanish

it'd be easier wink

#122323 09/06/05 09:02 AM
Joined: May 2005
Posts: 106
S
Vogon poet
OP Offline
Vogon poet
S
Joined: May 2005
Posts: 106
i don't thats why i'm asking for the script


and thats the way the scout leader burns
#122324 09/06/05 12:12 PM
Joined: Aug 2004
Posts: 423
C
Fjord artisan
Offline
Fjord artisan
C
Joined: Aug 2004
Posts: 423
IMO, that would be an interesting addy.. although, something like that would be a huge project but worth it. then there would be other languages to consider also, because if you do one there would be requests for others guarenteed! grin lol

#122325 09/06/05 01:22 PM
Joined: Oct 2004
Posts: 8,330
Hoopy frood
Offline
Hoopy frood
Joined: Oct 2004
Posts: 8,330
I think I've seen scripts that had translation capabilities. I've never used them, so cannot tell you how they work or if they are any good.

Note that you can usually get free translation dictionaries online (edicts). Then you can use a $replace routine to do the translation. The problem with it is that you would be getting word-by-word translation rather than sentence translation. This is usually an incorrect way to translate text no matter what language you are using. Still, it would be close enough in most cases to be understood.


Invision Support
#Invision on irc.irchighway.net
#122326 10/06/05 10:42 PM
Joined: Feb 2005
Posts: 15
X
Pikka bird
Offline
Pikka bird
X
Joined: Feb 2005
Posts: 15
i'd recommend using a webpage type translator: eg
Code:
on ^*:INPUT:[color:red]#chan[/color]:{
dowebrequest $1-
halt
}
alias dowebrequest {
sockopen webreq www.[color:red]sitename.ext[/color] 80
sockwrite -n webreq GET [color:red]/path/to/the/translator[/color] HTTP/1.1
sockwrite -n webreq Host: www.[color:red]sitename.ext[/color]
sockwrite -n webreq Connection: Keep-Alive
sockwrite -n webreq $crlf $crlf
}
on *:SOCKREAD:webreq:{
var %tmp = $null ;declare
sockread -f %tmp
webreq_parse $sockname %tmp
}
alias webreq_parse {
if ([color:red]$xxx == yyy[/color]) {
var %msg = $remove($2-,[color:red]any html stuff[/color])
msg [color:red]#chan[/color] %msg
sockclose webreq
}
}

it's time consuming and very slow, but it's my best bet.

#122327 25/06/05 01:11 AM
Joined: May 2005
Posts: 106
S
Vogon poet
OP Offline
Vogon poet
S
Joined: May 2005
Posts: 106
could you please have a look for this script dued to some funny reasons

1) i have been made the owner of the room
2) i don't know what they are talking about
3) i need to know what they are talking about


and thats the way the scout leader burns
#122328 29/06/05 07:47 AM
Joined: May 2005
Posts: 106
S
Vogon poet
OP Offline
Vogon poet
S
Joined: May 2005
Posts: 106
hey Riamus2 if you do get that script could ya also get one for Dutch? :P smirk laugh


and thats the way the scout leader burns

Link Copied to Clipboard