How Long (Calculate your letters)
Platform: mIRC
Published Jul 06, 2012
Updated Jul 26, 2012
Hello,
Here is a simple script that allows you to count how much long a word or sentence it.
Syntax :
!howlong <word>
/howlong <word>
; How Long/ Word Calculator
; By Sagar/iLluSiOn
; gs.mindfreakers.net #Hawkee
on *:TEXT:!howlong*:#: {
if ($2 == $null) { notice $nick Syntax : !howlong <word> }
else { notice $nick $2- is $calc($0 - 1) words, $len($2-) letters long $iif($0 >= 3,and $len($remove($2-,$chr(32))) without spaces,in a single word) }
}
alias howlong {
if ($1 == $null) { echo -at Syntax : /howlong <word> }
else { echo -at $1- is $calc($0) words, $len($1-) letters long $iif($0 >= 3,and $len($remove($1-,$chr(32))) without spaces,in a single word) }
}