Hi,
I'm working on a BlackJack game but I can't figure out a good way to add the points on the cards. I have more then 100 lines of code for just the three first cards - there has to be a better way of doing this... The biggest problem is the aces... I want the label with the points to say "Points: 6 Or 16" if you have an ace and a five.
I have all the cards in an array, intDeck(51) and the points for all the cards in another, intPoints(51) so intDeck(0) is worth intPoints(0), intDeck(1) is worth intPoints(1) and so on. All the aces are set as 11 in the intPoints(51) array.
Any ideas how I can keep track of the scores?

Thanks in advance