You should not be using the goto statement for anything.

Code:
on *:text:&:#:{
  var %msg

  if ($1 == text1) { %msg = msg1 }
  elseif ($1 == text2) { %msg = msg2 }
  elseif ($1 == text3) { %msg = msg3 }
  else { return }

  var %count = $readini(cookies.ini,#,$nick) + 1
  writeini cookies.ini # $nick %count
  msg # %msg 
}