[TIB] Re: Game Idea???


[Prev][Next][Index][Thread]

[TIB] Re: Game Idea???



final thought of the night...  absolutely whenever possible, avoid Gotos and Lbls in large realtime programs (ie, the for loops)...  Those take way too much time to actually go anywhere, and there's too much of a chance that there'll be an unclosed loop (taking away 37 bytes every time it's run, and chances are that it'll be run many times in quick succession, quickly running your program out of memory...).  Use for loops, while loops, and if conditionals whenever possible, they prevent much program death, and increase speed by a good bit as well...  For this program, I'd suggest gotos in nothing but the questions and stuff...
Nick