Code:
if $1 !isnum { halt }
{


needs to be

Code:
if $1 !isnum { halt }
[color:Red]else[/color] {


or

Code:
if ($1 isnum) {


Try not to have "useless" comparasins like

if (condition) halt

just do

if (!condition)