Two Syntax issues.

Line 8: Missing ")".
Code:
if ($hget(bets,$nick) {

Should be:
Code:
if ($hget(bets,$nick)) {


Line 19/20: You can't have "{" starting at the next line.
Code:
  if ($hget($2))
  {

Should be:
Code:
  if ($hget($2)) {