$spellcheck
Please Register to submit score.
| Average Score | 6.0 |
| Scores Submitted | 3 |
| Date Added | Dec 21, 2007 |
| Last Updated | Dec 21, 2007 |
| Tags | check spell |
Introduction
mIRC Snippet:
$spellcheck
Posted on Dec 21, 2007 4:08 pm
Posted on Dec 21, 2007 4:08 pm
It's a great idea, but it takes too long to get the information.
This is not a solution for any scripter. Rather using sockets and match a website or a library with hash tables etc.
Great idea though.
4/10 for the idea, but the slow speed makes the score low.
This is not a solution for any scripter. Rather using sockets and match a website or a library with hash tables etc.
Great idea though.
4/10 for the idea, but the slow speed makes the score low.
mIRC Snippet:
$spellcheck
Posted on Dec 21, 2007 4:51 pm
Posted on Dec 21, 2007 4:51 pm
Mine works with a second delay at most. Faster than most online ones anyway.
mIRC Snippet:
$spellcheck
Posted on Dec 21, 2007 4:52 pm
Posted on Dec 21, 2007 4:52 pm
I had a 5 secs delay atleast.
mIRC Snippet:
$spellcheck
Posted on Dec 21, 2007 9:29 pm
Posted on Dec 21, 2007 9:29 pm
That's odd. I hadn't received that long of a delay at all. Personally, I have never really experimented with Sockets so I'm not sure how to use them. I will try to research about them and generate a new version ASAP.
mIRC Snippet:
$spellcheck
Posted on Dec 21, 2007 9:38 pm
Posted on Dec 21, 2007 9:38 pm
I think this way works faster tbh :)
mIRC Snippet:
$spellcheck
Posted on Dec 21, 2007 10:04 pm
Posted on Dec 21, 2007 10:04 pm
Now uses sockets.
Here is the COM version in case you care. Same syntax and all:
Here is the COM version in case you care. Same syntax and all:
| Code: |
| alias spellcheck { if ($1) && ($1 isalpha) { if (!$comerr) { if ($com(spellcheck)) .comclose spellcheck .comopen spellcheck Word.Application .echo -q $com(spellcheck,CheckSpelling,1,string,$1) return $com(spellcheck).result } } var %e = .echo -ac info * $!spellcheck: if (!$1) %e no parameters elseif ($1 !isalpha) %e insufficient parameters halt } |
mIRC Snippet:
$spellcheck
Posted on Mar 21, 2008 3:41 pm
Posted on Mar 21, 2008 3:41 pm
| Code: |
.echo -q $spelling.output |
shouldn't it be %spelling.output ?
mIRC Snippet:
$spellcheck
Posted on Mar 21, 2008 8:37 pm
Posted on Mar 21, 2008 8:37 pm
Mountaindew, it doesn't look like that serves any purpose in this snippet, so I don't think is vital to the functionality. It wouldn't make sense to have it as %spelling.output because %spelling.output returns the results, and isn't an identifier. However, that line serves no purpose in the script so the author should remove it.
Rebellious, I've noticed that your script doesn't return the results on cue. IE: if you used //echo -a $spellcheck(misspelled word) and then use //echo -a $spellcheck(correctly spelled word) again, they would return the same results. After much irritability and using the command multiple times with the same syntax, I've also realized that the script will return the correct result if you were to use the second command again:
First round: //echo -a $spellcheck(assafaff) returns FALSE
Second round: //echo -a $spellcheck(hello) returns FALSE
Third round: //echo -a $spellcheck(hello) returns TRUE
~Tsuiseki
Rebellious, I've noticed that your script doesn't return the results on cue. IE: if you used //echo -a $spellcheck(misspelled word) and then use //echo -a $spellcheck(correctly spelled word) again, they would return the same results. After much irritability and using the command multiple times with the same syntax, I've also realized that the script will return the correct result if you were to use the second command again:
First round: //echo -a $spellcheck(assafaff) returns FALSE
Second round: //echo -a $spellcheck(hello) returns FALSE
Third round: //echo -a $spellcheck(hello) returns TRUE
~Tsuiseki




