Word and Character Counter
mIRC Code
+ 0 likes
Please Register to submit score.
| Average Score | 0.0 (of 0 scores) |
| Date Added | Dec 24, 2008 |
| Last Updated | Dec 25, 2008 |
| Tags | character counter |
Introduction
*UPDATED*
now has a word counter and a character counter. thank you typo :)
*BUG*
only counts the first line
mIRC Snippet:
Word and Character Counter
Posted on Dec 24, 2008 8:11 am
Posted on Dec 24, 2008 8:11 am
Eh, it works I guess. You could expand it alot more by using a multi-line edit box for people to count essays, etc. Also, I think it would look cooler changing the length not on sclick, but on edit of the text box itself.
Could just be
Don't see why you put the $+ in there :x.
| Code: |
did -ra cc 5 $len( $+ $did(1).text $+ ) |
Could just be
| Code: |
did -ra cc 5 $len($did(1)) |
Don't see why you put the $+ in there :x.
mIRC Snippet:
Word and Character Counter
Posted on Dec 24, 2008 8:58 am
Posted on Dec 24, 2008 8:58 am
It stops adding at 949 even though you can continue to add to the edit box.
mIRC Snippet:
Word and Character Counter
Posted on Dec 24, 2008 9:06 am
Posted on Dec 24, 2008 9:06 am
| Code: |
if ($devent == sclick) { if ($did == 2) { did -r CC 1 } } if ($devent == sclick) { if ($did == 3) { dialog -x cc cc } } |
You could combine the two if's
| Code: |
if ($devent == sclick) { if ($did == 2) did -r CC 1 if ($did == 3) did -x cc cc } |
mIRC Snippet:
Word and Character Counter
Posted on Dec 24, 2008 1:41 pm
Posted on Dec 24, 2008 1:41 pm
`Green said:
You can count words with:
For instance, if you type the following in mirc:
You will see:
Good luck.
| Quote: |
| i don't know if i can make a word counter but i made a character counter :) |
You can count words with:
| Code: |
| $numtok(TEXT,32) |
For instance, if you type the following in mirc:
| Code: |
| //var %Words = How many words is this? | echo -a $qt(%Words) has $numtok(%Words,32) words. |
You will see:
| Quote: |
| "How many words is this?" has 5 words. |
Good luck.
mIRC Snippet:
Word and Character Counter
Posted on Dec 25, 2008 11:10 pm
Posted on Dec 25, 2008 11:10 pm
oh and scakk. it stops at 4250 chars for me.




