You could test the code with the results of the:
$_SESSION['cart']->show_total()
Code:
if ($_SESSION['cart']->show_total() > 10.00) {
$this->quotes = array('id' => $this->code,
'module' => MODULE_SHIPPING_STOREPICKUP_TEXT_TITLE,
'methods' => array(array('id' => $this->code,
'title' => MODULE_SHIPPING_STOREPICKUP_TEXT_WAY,
'cost' => MODULE_SHIPPING_STOREPICKUP_COST/100 * $_SESSION['cart']->show_total())));
} else {
$this->quotes = array('id' => $this->code,
'module' => MODULE_SHIPPING_STOREPICKUP_TEXT_TITLE,
'methods' => array(array('id' => $this->code,
'title' => MODULE_SHIPPING_STOREPICKUP_TEXT_WAY,
'cost' => MODULE_SHIPPING_STOREPICKUP_COST)));
}