by Triple-DES <DenPlettfrie@[EMAIL PROTECTED]
>
Mar 11, 2008 at 12:19 AM
On 10 Mar, 19:33, Justice <foi...@[EMAIL PROTECTED]
> wrote:
> I am trying to make a simple game but have some problems
>
[snip]
I think you are confusing "=" and "==". For instance:
if (Buy='y')
Should probably be:
if(Buy == 'y')
etc.
DP