Re: [Audyssey] BGT Error: Expected expression value

2010-03-28 Thread Willem
r. Someone correct me if I'm wrong. Best Regards, Hayden -Original Message- From: gamers-boun...@audyssey.org [mailto:gamers-boun...@audyssey.org] On Behalf Of Willem Sent: Sunday, March 28, 2010 12:35 PM To: Gamers Discussion list Subject: Re: [Audyssey] BGT Error: Expected expression

Re: [Audyssey] BGT Error: Expected expression value

2010-03-28 Thread Hayden Presley
ehalf Of Willem Sent: Sunday, March 28, 2010 12:35 PM To: Gamers Discussion list Subject: Re: [Audyssey] BGT Error: Expected expression value Hi. You should ceparate your conditional statements. I'm also not sure you used the correct or (I know some languages use ||), but I don't know bgt

Re: [Audyssey] BGT Error: Expected expression value

2010-03-28 Thread Hayden Presley
, March 28, 2010 12:56 PM To: Gamers Discussion list Subject: Re: [Audyssey] BGT Error: Expected expression value Off hand, I think your intro string is too long and shouldn't wrap line to line - rather build it bit by bit, and then use it. Apart from that, you don't seem to have declared, o

Re: [Audyssey] BGT Error: Expected expression value

2010-03-28 Thread Casey Mathews
" Subject: Re: [Audyssey] BGT Error: Expected expression value Hi Casey, The following line: while (guess <=number or >= number) is incorrect. I mentioned this in my private reply to you but I don't think I explained it very well. The exact same line would be written like thi

Re: [Audyssey] BGT Error: Expected expression value

2010-03-28 Thread Jacob Kruger
Off hand, I think your intro string is too long and shouldn't wrap line to line - rather build it bit by bit, and then use it. Apart from that, you don't seem to have declared, or assigned a value to Guess? Stay well Jacob Kruger Blind Biker Skype: BlindZA '...fate had broken his body, but n

Re: [Audyssey] BGT Error: Expected expression value

2010-03-28 Thread Willem
Hi. You should ceparate your conditional statements. I'm also not sure you used the correct or (I know some languages use ||), but I don't know bgt sintax that well, anyway, try this in your while loop: while (guess <=number or guess >= number) On 3/26/2010 10:29 PM, Casey Mathews wrote: Hello.

Re: [Audyssey] BGT Error: Expected expression value

2010-03-28 Thread Philip Bennefall
Hi Casey, The following line: while (guess <=number or >= number) is incorrect. I mentioned this in my private reply to you but I don't think I explained it very well. The exact same line would be written like this in proper code: while (guess <=number or guess>= number) In short, you have