TomCoyote commented on a Page, Temperature Conversions  -  Feb 20, 2011

yeah, I saw it wasn't calculating correctly after I posted the correction the first time

Grimnir  -  Nov 02, 2014

;========= Temp Convert ==================
on :TEXT:!temp:#: {
notice $nick !temp converts temperatures. !temp [c/f] .
notice $nick c/f is the degree you want to convert, and the number is the original amount.
}
on
:TEXT:!temp f :#: {
msg # $nick $3 degrees Fahrenheit equals Celsius: $calc((($3 - 32)
5) /9) degrees
}
on :TEXT:!temp c :#: {
msg # $nick $3 degrees Celsius equals Fahrenheit: $calc(((9 * $3)/5) + 32) degrees
}
;=========================================

Sign in to comment

Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.