1. Re: (IRV's reponse)Help With My Game of Black Jack
Once again thanks for your input. I just need to clarify some things that
you wrote me.
This below is what loads the card images right? When I run this I get some
errors. Like "deck has not been declared. Would I declare that as an object
or an atom?
---------------------------------------------------
deck = {}
for card = 1 to 52 do -- cards images will be in 1.bmp, 2,bmp, 3.bmp.....
image = read_bitmap(sprintf("%d.bmp",card))
deck = append(deck,image[2]) -- throw away the palette info.
end for
--------------------------------------------------
Now if that's the case.... Let's start simple. I'm really new to programing
in general not just Euphoria. I got your post about the quotes. We'll
ignore that for now. Forget the actual game for now. How would I take the
loaded images and display them clicking on the "Hit Me" button.