Search found 318 matches

by sid6.7
Sat Sep 08, 2007 9:35 am
Forum: General Discussion
Topic: text adventures
Replies: 10
Views: 24791

they can be pertty good if done right and include a little ascii graphics...and many levels/rooms/areas. i just looked at a video but can't remember where a fella has like 5-6 videos showing him making a text adventure...with FB? i think....it was interesting i'll go look for it and post a link... t...
by sid6.7
Wed Sep 05, 2007 10:04 pm
Forum: General Discussion
Topic: Check out my new resume / portfolio website
Replies: 7
Views: 15645

old spam bot word...i should probably go back and start undoing them aye?
by sid6.7
Wed Sep 05, 2007 6:07 pm
Forum: General Discussion
Topic: Check out my new resume / portfolio website
Replies: 7
Views: 15645

COOL!

hey i like atlatls i use them in my RPG...

and they are a good survival tool....so simple to make.
by sid6.7
Tue Sep 04, 2007 10:05 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Loading
Replies: 2
Views: 5050

there are memory limits to QB it can only handle so much info.
like the array question someone else posted.
by sid6.7
Tue Sep 04, 2007 10:03 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Large arrays
Replies: 5
Views: 8179

Re: Large arrays

Does anyone know how to use arrays bigger than (180,180) in Qbasic or Quickbasic? Is it possible to use arrays of size (300,300) wich is 90Kb, or even better, (300,300,300) wich is 27 Mb? It seems one must use dynamic arrays, some switches in the command line, and some sort of EMS but I dont unders...
by sid6.7
Sat Aug 25, 2007 2:11 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Qbasic Virus MUHAHAHAHA!!!
Replies: 8
Views: 13852

Re: Qbasic Virus MUHAHAHAHA!!!

Ok, this has always been on my mind for some reason ever since I started programming...is it possible to create a virus with qbasic? If you could help me out with this, I'd greatly appreciate it, one day I'd like to take over the internet using qbasic. :twisted: LOL I'm not saying that I wanna make...
by sid6.7
Tue Aug 21, 2007 5:36 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: YAY!! I made a sucky game...I'm so proud of myself
Replies: 5
Views: 10908

okay i took me a few times to understand level 3
but then i understood...LOL

good job....


now go forth and multiply thy new gaming skills....

bringth forth a full fledged arcade game in mario style
by thursday please.......


:)
by sid6.7
Tue Aug 14, 2007 7:50 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Will somebody PLEASE tell me what's up the the uploader.
Replies: 7
Views: 9338

becuase it was broken along time ago...


no.....


you can always upload your stuff over at qbasicstation until it gets fixed...
by sid6.7
Tue Aug 14, 2007 7:19 pm
Forum: Freebasic Questions & Answers
Topic: FreeBASIC Games Directory updates (22.03.2008)!
Replies: 28
Views: 109256

i'll try and pop by next week and check some of the stuff out.
by sid6.7
Tue Aug 14, 2007 7:15 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Will somebody PLEASE tell me what's up the the uploader.
Replies: 7
Views: 9338

maybe i wasnt clear before or you didnt understand me.

its BROKEN...

pete will fix it sometime...
by sid6.7
Wed Aug 08, 2007 4:59 pm
Forum: General Discussion
Topic: Why can't I upload programs??
Replies: 5
Views: 10370

Mentat wrote:I tried to upload and it said my account was disabled.
okay let me re-phrase that...you can't upload right now its broken...
by sid6.7
Wed Aug 08, 2007 1:24 am
Forum: General Discussion
Topic: Why can't I upload programs??
Replies: 5
Views: 10370

by sid6.7
Wed Aug 08, 2007 1:23 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Using a USB Printer in QB
Replies: 3
Views: 6390

i'm pertty sure this is all but impossible to do in QB many have tried
and many have died in the attempt... :)
by sid6.7
Sun Aug 05, 2007 9:31 pm
Forum: News and Announcements
Topic: Story-driven Baloon Fight with guns :|
Replies: 5
Views: 16286

looks pertty good....keep going!

kinda reminds me of the old arcade game defender
which was one of my fav's.
by sid6.7
Sun Aug 05, 2007 8:49 pm
Forum: News and Announcements
Topic: Story-driven Baloon Fight with guns :|
Replies: 5
Views: 16286

the link you give to your program requires registration on that forum which can be annoying for some. i'm not sure whats happening when you try to paste your code other then its just to big for a simple post to handle. i'll go see if we have attachements here we can enable then you can upload a file...
by sid6.7
Sat Aug 04, 2007 10:10 pm
Forum: General Discussion
Topic: program made by noob
Replies: 2
Views: 6175

oh that is funky...

its obviously a math thing somewhere in all your
variables you have.
by sid6.7
Thu Aug 02, 2007 10:13 pm
Forum: News and Announcements
Topic: Munshkin
Replies: 8
Views: 20288

keep going....


maybe add a line or two between your text and your prompts
for commands? so it does not run in one big paragraph.
by sid6.7
Thu Aug 02, 2007 10:11 pm
Forum: General Discussion
Topic: Competitions
Replies: 3
Views: 7450

i've done a number of competitions for different things
VERY HARD to do and get much response. your
welcome to post and try to get one started here if you want.
by sid6.7
Thu Aug 02, 2007 6:10 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Copy and Paste
Replies: 3
Views: 6233

when you SAVE a BAS file make it so it can be read
by other programs...

this basically makes it a text file

which you can then open in a text editor and copy, cut and paste code
between the BAS file and anything else.
by sid6.7
Wed Aug 01, 2007 8:38 am
Forum: QBASIC and QB64 Questions & Answers
Topic: New to QBASIC, I have a question.
Replies: 9
Views: 12623

generally myself if i use goto i try to use a more descriptive
goto...this helps with debugging something...and general
reading of your code by yourself or someone else.


like

Code: Select all

GOTO BEGIN
when using GOTO you'll want to remember to do it this way

Code: Select all

begin:

blah
blah
blah

GOTO begin