Search found 36 matches

by Austin
Tue Aug 14, 2007 2:46 am
Forum: General Discussion
Topic: 2nd Programming Competition Thread
Replies: 26
Views: 42407

2D Mario Style Game would be fun. Sort just try to get to the end of the track with various puzzles and monsters in your way.
by Austin
Sun Aug 12, 2007 6:50 pm
Forum: News and Announcements
Topic: Munshkin
Replies: 8
Views: 19889

Hello All! I have spent the last hour changing the look and feel of the first chapter of the game and it is a lot better! I changed the start menu, how the text commands are entered, and various fixes and text changes! Download latest Munshkin : Text Adventure here: http://www.mediafire.com/?fttmnrh...
by Austin
Sun Aug 12, 2007 6:47 pm
Forum: General Discussion
Topic: 2nd Programming Competition Thread
Replies: 26
Views: 42407

I agree. Comedy RPG would be fun to make :].
by Austin
Sat Aug 11, 2007 6:17 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: QBASIC Question
Replies: 3
Views: 5293

Sorry for my late response, thanks both of you! Both options worked great, and my Munshkin : Text Adventure game is going along great.

Thanks,
Austin
by Austin
Thu Aug 09, 2007 7:44 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: QBASIC Question
Replies: 3
Views: 5293

QBASIC Question

Ok, here is the code: 1 PRINT "LOGIN:"; : INPUT L$ L$ = UCASE(L$) IF L$ = "AUSTIN" THEN PRINT "LOGGED ON AS AUSTIN." ELSE PRINT "LOGIN NAME INCORRECT, TRY AGAIN." GOTO 1 END IF The problem is when it prints out it looks like this: LOGIN:? I want it to print li...
by Austin
Wed Aug 08, 2007 7:26 pm
Forum: News and Announcements
Topic: Munshkin
Replies: 8
Views: 19889

Thanks! There will be 2 more stages after this beginning one. 1. Generals Chambers 2. Cave of the Cheese Grater of Doom 3. The Layer of The Evil Cheese I plan to be done with stage 2 some time in the next few days and then on to finishing the game before the 15 (hopefully). I then plan on taking som...
by Austin
Wed Aug 08, 2007 7:21 pm
Forum: General Discussion
Topic: Who'd be interested in a comp?
Replies: 13
Views: 19719

I would defiantly enter the comp! I don't have all that much experience making a graphical game, but this would be a great learning opportunity.

Please get this started!
Austin
by Austin
Tue Aug 07, 2007 1:38 am
Forum: QBASIC and QB64 Questions & Answers
Topic: New to QBASIC, I have a question.
Replies: 9
Views: 12557

Thanks! I added the new wall map layout.

Go check out the latest version-
http://www.petesqbsite.com/forum/viewto ... 4618#14618
(at bottom of page)

-Austin
by Austin
Tue Aug 07, 2007 1:37 am
Forum: News and Announcements
Topic: Munshkin
Replies: 8
Views: 19889

Updated, and now in a .exe!

Big thanks to Nixon who helped me get my game into a .exe! I tweaked the opening sequence.. E, W are now use able but don't do much in the opening here. Also, thanks to Rgreenlaw who gave the idea to change the map layout. It looks much better now. Munshkin v1.5- http://www.mediafire.com/?bwxcndmxjz...
by Austin
Tue Aug 07, 2007 1:31 am
Forum: QBASIC and QB64 Questions & Answers
Topic: How to compile .bas to make an application?
Replies: 2
Views: 5134

Thanks Nixon! Fully compiled to a .exe in QBasic 4.5, you rock man thanks for the help.

-Austin
by Austin
Tue Aug 07, 2007 1:23 am
Forum: General Discussion
Topic: Who'd be interested in a comp?
Replies: 13
Views: 19719

My vote is on Text Adventure :)!
by Austin
Mon Aug 06, 2007 12:02 am
Forum: QBASIC and QB64 Questions & Answers
Topic: How to compile .bas to make an application?
Replies: 2
Views: 5134

How to compile .bas to make an application?

How can I compile or do something to my .bas file so it will run without people having to have QBASIC on there computer. Because right now when I send my programs to other people I just send them my .bas ... And I tell the to go install QBASIC to run it. But isn't there a way to compile a .bas into ...
by Austin
Thu Aug 02, 2007 6:18 pm
Forum: News and Announcements
Topic: Munshkin
Replies: 8
Views: 19889

Munshkin

I am new to QBASIC, just started using it last week. This is my first program/game. It's a text game called Munshkin. I have made the first chapter of this game. I plan to make it a 2D Puzzle Adventure Game after I am done with this first version. If you want to check it out so far, just don't be a ...
by Austin
Thu Aug 02, 2007 2:53 am
Forum: QBASIC and QB64 Questions & Answers
Topic: New to QBASIC, I have a question.
Replies: 9
Views: 12557

Thanks moneo, I had been wondering how to do that for a while now! Well after knowing how to do GOTO's correctly I have made my first part of my RPG called Munshkin. This is my first ever program in QBASIC 1.1! It is so far a little over 110 lines of code. Please could some of you guys take a look, ...
by Austin
Wed Aug 01, 2007 3:08 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: New to QBASIC, I have a question.
Replies: 9
Views: 12557

Thanks Nixon!

The first option did great. I also tried the second option, it gets the j ob done but It feels like a lot more writing.

Regards,
Austin
by Austin
Wed Aug 01, 2007 6:24 am
Forum: QBASIC and QB64 Questions & Answers
Topic: New to QBASIC, I have a question.
Replies: 9
Views: 12557

New to QBASIC, I have a question.

Hello Everyone! I'm trying to get a GOTO to work. PRINT "Logon Name"; : INPUT L$ IF L$ = "austin" THEN PRINT "Hello Austin." ELSE PRINT "Logon Name Incorrect." GOTO 1 END IF Everything is fine But It won't go back to Line 1. I also tried for it to go to line 1...