You need to get the item as it exists in the cart, which you can do with something like this:
<?php
$items = uc_cart_get_contents(); // Current user's cart.
foreach ($items as $item) {
$total += $item->price + $item->qty;
}
?>The attribute module adds the chosen option price to the product's sell price when it is added to the cart.

