[Audyssey] new heli available

2011-05-11 Thread The Addictor
Hey all, here is the link to the new version of Heli. The enemy alarm is there for debugging purposes, so you won't hear it during the game. Fixed major bug with enemy just freezing up--made him a lot smarter. Now, if I could just wrap my brain around fuzzy and probability logic, I could

[Audyssey] New Heli Available

2011-01-30 Thread Ken the Crazy
OK, here it is, the next Heli. As always, get it from http://dl.dropbox.com/u/13071564/heli.zip First of all, I changed the switch a bit. Now, hit the switch on its lower half, the fan turns off. Hit it on the upper part, and the fan turns back on. Hit it in the middle and nothing happens.

Re: [Audyssey] New Heli available for download

2011-01-30 Thread Jim Kitchen
Hi Willem, I debug as I go. That is I write a couple of lines of code or a new section and I press the f5 key to test run the program. So I know right away if the code was written and works the way that I wanted it to. That is one reason that I like to work right in the VB6 IDE. BFN

Re: [Audyssey] New Heli available for download

2011-01-30 Thread Jim Kitchen
Hi Ken, I am sorry, but my tag line program is written to work with my Email program. That is the Email program that I wrote for myself. So the tag line program would not work with any commercial Email programs. Sorry about that. BFN Jim If it doesn't say Kitchen's Inc on it. Someone

Re: [Audyssey] New Heli available for download

2011-01-30 Thread Trouble
...@gmail.com To: Gamers Discussion list gamers@audyssey.org Sent: Saturday, January 29, 2011 8:47 AM Subject: Re: [Audyssey] New Heli available for download Hi Jim, It is not extra work or waisted time/energy. It is generally recommended that you declare variables using the proper data type like

Re: [Audyssey] New Heli available for download

2011-01-30 Thread Willem
30, 2011 2:30 PM Subject: Re: [Audyssey] New Heli available for download Hi Willem, I debug as I go. That is I write a couple of lines of code or a new section and I press the f5 key to test run the program. So I know right away if the code was written and works the way that I wanted

Re: [Audyssey] New Heli available for download

2011-01-30 Thread Ken the Crazy
the Crazy Gamers@audyssey.org Sent: Sunday, January 30, 2011 7:30 AM Subject: Re: [Audyssey] New Heli available for download Hi Ken, I am sorry, but my tag line program is written to work with my Email program. That is the Email program that I wrote for myself. So the tag line program would

Re: [Audyssey] New Heli available for download

2011-01-29 Thread Thomas Ward
Hi Ken, In my experience as a programmer languages that don't enforce explicit variable declarations always lead to mistakes and poor programming. For example, when writing scripts in Python I've made simple typos that Python accepted without complaint and it was only after running the

Re: [Audyssey] New Heli available for download

2011-01-29 Thread Thomas Ward
Hi Jim, Well, there are a number of ways you can run into errors by not using an explicit variable declaration.Usually, caused by accidental typos and things like that. For example, you are writing a Blackjack or Poker game. You have a variable called myCard. Of course, there are a lot of

Re: [Audyssey] New Heli available for download

2011-01-29 Thread Pitermach
, 2011 8:47 AM Subject: Re: [Audyssey] New Heli available for download Hi Jim, It is not extra work or waisted time/energy. It is generally recommended that you declare variables using the proper data type like integer, string, character, boolean, etc as it will improve memory usage and CPU usage

Re: [Audyssey] New Heli available for download

2011-01-29 Thread Thomas Ward
Hi, Well, I'm sure you know my opinion of AutoIt. To be canded the language is absolute trash. It was never designed to do vidio games, and isn't worth using for even generic programming let alone anything as safisticated like a high quality vidio game. Cheers! On 1/29/11, Pitermach

Re: [Audyssey] New Heli available for download

2011-01-29 Thread Shiny protector
Auto it is rubbish. It can't do advanced programming. - Original Message - From: Pitermach piterm...@gmail.com To: Gamers Discussion list gamers@audyssey.org Sent: Saturday, January 29, 2011 12:53 PM Subject: Re: [Audyssey] New Heli available for download all I can say is, oh well

Re: [Audyssey] New Heli available for download

2011-01-29 Thread Hayden Presley
...@audyssey.org] On Behalf Of Shiny protector Sent: Saturday, January 29, 2011 7:25 AM To: Gamers Discussion list Subject: Re: [Audyssey] New Heli available for download Auto it is rubbish. It can't do advanced programming. - Original Message - From: Pitermach piterm...@gmail.com To: Gamers

Re: [Audyssey] New Heli available for download

2011-01-29 Thread Thomas Ward
Hi Hayden, To be honest I just think some people are lazy. They dont want to take the time to do int myVariable = 0; which would properly initialize an integer variable in most C-style languages and would rather just create a variable on the fly like myVariable = 0 rather than taking the

Re: [Audyssey] New Heli available for download

2011-01-29 Thread Hayden Presley
29, 2011 1:17 AM To: Gamers Discussion list Subject: Re: [Audyssey] New Heli available for download Well Jim, I think you do wonderfully. I'm not a fan of the option explicit myself, but since this is the first 3d audio game I've ever made, much less seen code for, it helped to figure out what I

Re: [Audyssey] New Heli available for download

2011-01-28 Thread Jim Kitchen
Hi Ken, The first thing that I did when I started writing in VB6 was to get rid of the option explicit. I had never needed to declare variables in any Basic before and I did not want to start. May I ask what you mean by you'll slip by with bad errors if you do not use the option explicit?

Re: [Audyssey] New Heli available for download

2011-01-28 Thread Hayden Presley
] New Heli available for download Hi Ken, The first thing that I did when I started writing in VB6 was to get rid of the option explicit. I had never needed to declare variables in any Basic before and I did not want to start. May I ask what you mean by you'll slip by with bad errors if you do

Re: [Audyssey] New Heli available for download

2011-01-28 Thread Ken the Crazy
Sent: Friday, January 28, 2011 4:50 AM Subject: Re: [Audyssey] New Heli available for download Hi Ken, The first thing that I did when I started writing in VB6 was to get rid of the option explicit. I had never needed to declare variables in any Basic before and I did not want to start. May I

Re: [Audyssey] New Heli available for download

2011-01-28 Thread Jim Kitchen
Hi Hayden, I guess that I am so against option Explicit because to me it is just extra work and extra code and extra space for something that to me is just that. More later to Ken. TGIF and BFN Jim We waste more time by 8:00 in the morning than other companies do all day.

Re: [Audyssey] New Heli available for download

2011-01-28 Thread Jim Kitchen
Hi Ken, Ok, I can see how the option explicit might come in handy for making sure that you do not miss name variable names. And I can not say that I have not been frustrated a few times when I have miss typed a variable name a time or a thousand over the years, but I still do not plan to use

Re: [Audyssey] New Heli available for download

2011-01-28 Thread Willem
To: Ken the Crazy Gamers@audyssey.org Sent: Saturday, January 29, 2011 2:16 AM Subject: Re: [Audyssey] New Heli available for download Hi Ken, Ok, I can see how the option explicit might come in handy for making sure that you do not miss name variable names. And I can not say that I have

Re: [Audyssey] New Heli available for download

2011-01-28 Thread Ken the Crazy
: Friday, January 28, 2011 7:16 PM Subject: Re: [Audyssey] New Heli available for download Hi Ken, Ok, I can see how the option explicit might come in handy for making sure that you do not miss name variable names. And I can not say that I have not been frustrated a few times when I have miss

Re: [Audyssey] New Heli available for download

2011-01-28 Thread Ken the Crazy
...@kitchensinc.net To: Ken the Crazy Gamers@audyssey.org Sent: Friday, January 28, 2011 7:16 PM Subject: Re: [Audyssey] New Heli available for download Hi Ken, Ok, I can see how the option explicit might come in handy for making sure that you do not miss name variable names. And I can not say that I have

Re: [Audyssey] New Heli available for download

2011-01-28 Thread Mich
Hey Ken. what's the websight for Dreamtech Interactive? many thanks. from Mich. - Original Message - From: Ken the Crazy kenwdow...@neo.rr.com To: Gamers Discussion list gamers@audyssey.org Sent: Saturday, January 29, 2011 2:23 AM Subject: Re: [Audyssey] New Heli available for download

Re: [Audyssey] New Heli available for download

2011-01-28 Thread Thomas Ward
Hi Jim, It is not extra work or waisted time/energy. It is generally recommended that you declare variables using the proper data type like integer, string, character, boolean, etc as it will improve memory usage and CPU usage. Every time you declare a variable without specifying its data type

[Audyssey] New Heli available for download

2011-01-27 Thread Ken the Crazy
OK, the next Heli is here. Go to http://dl.dropbox.com/u/13071564/heli.zip Now, you get hit by the fan blades if you're too close, no matter what key you are pressing. You can actually smash the light bulb. Now, you can press the P key and change your point of view. Default is still