Search found 83 matches

by BigBadKing
Mon May 03, 2010 1:41 am
Forum: General Discussion
Topic: I have made the original Xbox run Qbasic
Replies: 4
Views: 14189

try this link then if that doesnt work:

http://mccorp.orgfree.com/files/acid30.zip
by BigBadKing
Fri Mar 05, 2010 3:37 am
Forum: QBASIC and QB64 Questions & Answers
Topic: IF
Replies: 17
Views: 36028

i tried Beep personally, it doesnt work for me either. just BEEP doesnt work, i tried everything else and they all worked. if you want a print command: case "PRINT" if Line$(count+1) <> "" then print Line$(count+1) else print any questions? btw, i think BEEP doesnt work if the PC...
by BigBadKing
Thu Mar 04, 2010 10:59 am
Forum: QBASIC and QB64 Questions & Answers
Topic: IF
Replies: 17
Views: 36028

Bongomeno, you didnt notice that i said COMPILE the example
i gave. CTRL+BREAK works only in the QB environment.
by BigBadKing
Thu Mar 04, 2010 8:37 am
Forum: QBASIC and QB64 Questions & Answers
Topic: IF
Replies: 17
Views: 36028

i think a working example will do it: dim Labels$(1000) dim LineNum(1000) dim Line$(1000) GOTOs = 0 LengthOfFile = 0 open command$ for input as #1 while not eof(1) input #1, Line$(LengthOfFile) Line$(LengthOfFile) = ucase$(Line$(LengthOfFile)) LengthOfFile = LengthOfFile + 1 wend close #1 for count ...
by BigBadKing
Tue Mar 02, 2010 1:16 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: IF
Replies: 17
Views: 36028

some help is available. first, include these three lines at the start of your program: dim shared Labels$(1000) dim shared LineNum(1000) GOTOs = 0 the third line is used to say how many labels we defined. insert the following snippet of code before where you begin to translate commands and do what t...
by BigBadKing
Thu Feb 25, 2010 4:36 am
Forum: Pete's QB Site News
Topic: New Moderator: burger2227
Replies: 11
Views: 60740

lvrcs, LMAO stands for (L)aughing (M)y (A)ss (O)ff.

anyway, Congratulations on being a moderator Burger, you earned it!
by BigBadKing
Sun Feb 21, 2010 1:15 am
Forum: News and Announcements
Topic: Stop Sending Me Emails
Replies: 4
Views: 26455

thanks for the lossy recommendation.
im still recieving emails saying to Virus-Check Your Pc From Petesqbsite
Adminsterator. now i even recieve emails telling to check your Pm at
Petesqbsite.com forum, will someone ban my account once for all?
by BigBadKing
Sat Feb 20, 2010 11:15 am
Forum: News and Announcements
Topic: Stop Sending Me Emails
Replies: 4
Views: 26455

Stop Sending Me Emails

Im not a member of this Forum, and therefore nobody has the right to send me an Email concerning this Forum. and i got thirty two emails just tonight, saying to Virus-Check your PC, and the Email address from which this message came is Pberg@petesqbsite.com. as i told before, please stop sending me ...
by BigBadKing
Sun Jan 24, 2010 12:21 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Inventory in a simple text adventure.
Replies: 14
Views: 32659

well. have fun. im leaving.
by BigBadKing
Sat Jan 23, 2010 7:41 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Inventory in a simple text adventure.
Replies: 14
Views: 32659

nobody said im an expert in QBASIC, but im an expert in C++.
by the way, i should start ignoring you!
by BigBadKing
Sat Jan 23, 2010 3:52 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Inventory in a simple text adventure.
Replies: 14
Views: 32659

i hope these four things make something clear: first off, you are right we are not equal. since my ten years experience is NOTHING against your WhatSoEver experience of programming. second off, i never force anybody to do anything. third off, leave everybody in this board in peace. if you really wan...
by BigBadKing
Sat Jan 23, 2010 12:30 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Inventory in a simple text adventure.
Replies: 14
Views: 32659

every beginner starts with GOTO, JBender too, i always try to start
from scratch and build up every little details you may have skipped.
by the way, whats your problem cheese-burger?
by BigBadKing
Fri Jan 22, 2010 3:21 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Inventory in a simple text adventure.
Replies: 14
Views: 32659

by the way, to avoid your posts going lost. there are two ways. 1) type your text, copy it, and then post the message. if the message is deleted, just edit your existing message or make a new one with the text you copied 2) type your text in notepad or any other text editor, copy the text and paste ...
by BigBadKing
Fri Jan 22, 2010 3:18 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Inventory in a simple text adventure.
Replies: 14
Views: 32659

an example will make all this stuff more clear. ask Any questions!: declare sub ShowBackpack declare sub TakeItem(NameOfItem$) dim shared items dim shared Inventory$(100) 20 input c$ c$ = ucase$(c$) ' make the command case-insensitive if c$ = "TAKE CAMERA" then TakeItem("Camera")...
by BigBadKing
Fri Jan 22, 2010 3:13 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Inventory in a simple text adventure.
Replies: 14
Views: 32659

sure, its very easy. but lets make something clear, you know goto? it works like this: [code] goto Label: Label: print "Label" [/code] gosub works like this: [code] gosub Label: print "Back" Label: print "Label" return [/code] run the second code, GOSUB doesnt mean to h...
by BigBadKing
Fri Jan 22, 2010 12:55 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Inventory in a simple text adventure.
Replies: 14
Views: 32659

i programmed some Text-Adventures (some month ago), btw. here is the inventory formula i use: [code] dim Inventory$(100) ' declare an array of 100 elements [/code] arrays are a long-list of variables, the dollar sign means this is a String Array. now: [code] Items = 0 [/code] this one sets the Varia...
by BigBadKing
Wed Jan 20, 2010 7:07 am
Forum: General Discussion
Topic: I'm new
Replies: 6
Views: 22359

you bet and i bet nobody here shares his own picture.
by BigBadKing
Wed Jan 20, 2010 12:18 am
Forum: General Discussion
Topic: I'm new
Replies: 6
Views: 22359

welcome Aboard! by the way, you posted in the best section!
by BigBadKing
Tue Jan 19, 2010 4:31 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Turn off computer
Replies: 29
Views: 64159

Well... My mistake.
by BigBadKing
Tue Jan 19, 2010 1:42 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Turn off computer
Replies: 29
Views: 64159

come on, even i know that TinyCounter.com lets you to set the number
on which the counter starts in... and i say, i took count of your site two
days ago. only four visits.