Search found 825 matches

by Nodtveidt
Sun Feb 10, 2008 9:22 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Haven't used qb in awhile, quick question
Replies: 28
Views: 46505

Well, I'm not a people person, never have been and never will be, really. But at least I understand your intent and message.

I'm atheist too...secular humanist actually, but that's atheist. I think the vast majority of coders are atheists...we're scientists after all. :D
by Nodtveidt
Sun Feb 10, 2008 7:57 pm
Forum: Freebasic Questions & Answers
Topic: Compiling in FB with OpenGL
Replies: 18
Views: 41271

burger2227 is a known troll.
by Nodtveidt
Sun Feb 10, 2008 7:55 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Haven't used qb in awhile, quick question
Replies: 28
Views: 46505

Yes DaveUnit, this place is almost useless nowadays for getting help. There are no decent coding sites left for QB at all. Mac, according to amazon.com, that book is 650 pages, and was printed in 1990. It's almost 18 years old. Times change, coding discussions change. When one mentions a UDT in BASI...
by Nodtveidt
Sun Feb 10, 2008 1:48 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Haven't used qb in awhile, quick question
Replies: 28
Views: 46505

Mac, get a grip already. Ralph's answer was the only one that was actually worth something. I didn't expect roy to say anything intelligent whatsoever...he rarely does. But I at least expected YOU to know what DaveUnit was talking about...the phrase "UDT" is used in BASIC programming all t...
by Nodtveidt
Sun Feb 10, 2008 8:32 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Haven't used qb in awhile, quick question
Replies: 28
Views: 46505

Cripes people, this is the easiest damn question to answer. UDT = User Defined Type. QB 4.5 doesn't seem to be able to return a UDT from a function because QB 4.5 is locked in the retardodaur days of forced variable suffixes. I don't know about QB 7.1 though, it might allow it. To get around this, c...
by Nodtveidt
Sun Feb 10, 2008 8:21 am
Forum: Pete's QB Site News
Topic: QB Express #26
Replies: 12
Views: 95000

I especcially like the tutorial on springs and I look forward to the next part. My tutorial about Worms-style stuff was better in my memories :P. But it actually kinda sucks now. (Not that I had another version or something, I just expected that it was better). Maybe I will make a tutorial part 2, ...
by Nodtveidt
Thu Feb 07, 2008 11:12 pm
Forum: Pete's QB Site News
Topic: QB Express once again emerges from the dead...
Replies: 12
Views: 72737

I missed the thread, since I very rarely visit that forum (the lack of an off-topic forum really does kill its community feel). But I just read all five pages of it. For the record, you can completely ignore ANYTHING and EVERYTHING Pritchard says...the kid's an inflammatory troll who frequently make...
by Nodtveidt
Tue Feb 05, 2008 2:20 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: binair to bits
Replies: 20
Views: 53399

burger2227, go back to sucking face with Pete at qbasic.com. The two of you make a cute couple, or so they say anyways.
by Nodtveidt
Tue Feb 05, 2008 12:05 am
Forum: QBASIC and QB64 Questions & Answers
Topic: binair to bits
Replies: 20
Views: 53399

Hey McTroll2227, I thought you didn't care about people saying "thank you"? Seems you can't keep your story straight.
by Nodtveidt
Sat Feb 02, 2008 6:50 pm
Forum: General Discussion
Topic: Need QB Sounds
Replies: 1
Views: 5955

Without knowing the game or the sound method (SOUND command? WAV files?), such a request is largely fruitless.
by Nodtveidt
Tue Jan 29, 2008 9:21 pm
Forum: Freebasic Questions & Answers
Topic: Screen 12 isn't working...
Replies: 12
Views: 31429

Don't bother with RGB, just use a hex value.

RGB(0,0,255) would be &H0000FF
by Nodtveidt
Tue Jan 29, 2008 7:51 pm
Forum: Freebasic Questions & Answers
Topic: simple decimal addition
Replies: 9
Views: 22866

It's known as a BCD representation error, and there's no way around it. What you should do instead is used fixed point numbers.
by Nodtveidt
Sun Jan 27, 2008 6:00 pm
Forum: Freebasic Questions & Answers
Topic: Which would be my best FB compiler version for these type of
Replies: 10
Views: 61583

Any ways my first FB game will be a martial arts real time RPG. (Should be real fun to make.) Hey, that sounds awesome. :) I have a game design here for a similar game I was planning a few years ago called Keikaina, which was an RPG mixed with real-time fighting a la SF2. Good to know I'm not the o...
by Nodtveidt
Sat Jan 26, 2008 1:19 am
Forum: Freebasic Questions & Answers
Topic: Which would be my best FB compiler version for these type of
Replies: 10
Views: 61583

Nemesis, Ogg is a container type for media files. Most commonly, it's used for streaming audio using the Vorbis codec (hence Ogg Vorbis). It's patent-free and of much better quality than mp3. Files tend to be smaller and sound better too as long as they're encoded from their original uncompressed so...
by Nodtveidt
Thu Jan 24, 2008 11:09 pm
Forum: Freebasic Questions & Answers
Topic: Which would be my best FB compiler version for these type of
Replies: 10
Views: 61583

As rel says, the latest beta is fine. The only thing you have to remember is that you are going to have to declare all variables before using them, which coders should be doing anyways. :) If you're going to code in QB-like code, either -lang qb or -lang deprecated will work for you. If you want to ...
by Nodtveidt
Wed Jan 23, 2008 7:49 pm
Forum: Freebasic Questions & Answers
Topic: Screen 12 isn't working...
Replies: 12
Views: 31429

SCREENRES xpixels, ypixels, bits-per-pixel, video pages, options (set to 1 for fullscreen) That's how I use it; there might be more to it though. I think it can also set up an opengl window but I never use it for that so I don't remember how to do it. Look it up in the FB doc wiki if you need more i...
by Nodtveidt
Wed Jan 23, 2008 8:51 am
Forum: Freebasic Questions & Answers
Topic: Screen 12 isn't working...
Replies: 12
Views: 31429

Ignore burger, he's an assclown troll just looking for a response from you. I gave screen 12 a try with the latest beta (0.18.3b) and indeed, it doesn't work. It works fine with the build I generally use (0.14b). EDIT: I was trying something foolish (using &HFFFFFF as the color) and it didn't wo...
by Nodtveidt
Tue Jan 22, 2008 12:06 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Tic-Tac-Toe
Replies: 2
Views: 5685

Can you post what you have so far?
by Nodtveidt
Thu Jan 17, 2008 6:52 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Chess problem :(
Replies: 1
Views: 3748

Can you post what you've got so far?
by Nodtveidt
Thu Jan 17, 2008 9:13 am
Forum: Freebasic Questions & Answers
Topic: Is FB QB in disguise?
Replies: 54
Views: 132908

I'm still using FBIDE for Two Lords (it simplifies adding resources), but anything else I use FB for I just code in Notepad and compile from the command line.