Search found 288 matches

by bungytheworm
Wed Oct 18, 2006 1:49 pm
Forum: General Discussion
Topic: New OS releases!
Replies: 9
Views: 35461

Ubuntu 6.10 should come at next thursday (not tomorrow).
by bungytheworm
Mon Oct 16, 2006 12:34 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: output to word
Replies: 3
Views: 7694

If you want simple thing that saves your output (i guess it's variable?), then just look OPEN and #PRINT functions.

You can also post your code here and we tell you how to move on.
by bungytheworm
Sun Oct 15, 2006 7:51 am
Forum: News and Announcements
Topic: qbinux
Replies: 140
Views: 312281

I wana know how this ends. Keep up 8)
by bungytheworm
Sun Oct 15, 2006 7:49 am
Forum: QBASIC and QB64 Questions & Answers
Topic: finding what tile the player is on
Replies: 5
Views: 10944

Could you post some example of how youre doin your thing?
I didnt get whats your problem here. Might be up of my english skills too.
by bungytheworm
Sun Oct 15, 2006 7:46 am
Forum: QBASIC and QB64 Questions & Answers
Topic: New Programmer needs help w/ moving graphics by player
Replies: 2
Views: 6123

' Nixon posted this over a year ago. DIM map(100, 100) FOR y = 1 TO 5 FOR x = 1 TO 5 READ map(x, y) LOCATE y, x IF map(x, y) = 1 THEN PRINT CHR$(219) NEXT: NEXT px = 2 py = 2 top: LOCATE py, px: PRINT CHR$(2) DO: P$ = INKEY$: LOOP UNTIL P$ <> "" LOCATE py, px: PRINT " " IF P$ = ...
by bungytheworm
Fri Oct 13, 2006 4:01 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29330

Good point Patz QuickBASIC Creations (do you really had to have that long nice? :lol: )
I forgot STRING$ function. Alltho, i dont use it myself practically at all...dont know why :lol:
by bungytheworm
Fri Oct 13, 2006 11:39 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Looking for a very old text based QB game
Replies: 1
Views: 4407

Havent heard and mr.google didnt help. Try from qbasicnews.com
Some one on there might have a copy of it.
by bungytheworm
Fri Oct 13, 2006 11:37 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29330

Best thing is to see when beginner makes hes first program :wink: I tested your dice game. Im impressed your speed of learning. And idea of that game ain't bad either considering you just started learning. Keep on coding. 8) Patz QuickBASIC Creations example of loop inside loop is cool one. And you ...
by bungytheworm
Tue Oct 10, 2006 9:26 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Sub Script out of range
Replies: 12
Views: 17590

Hi TheWicker. I dont fully understand what you mean with I would like to print on either separate, or sequensial screens But what i look at your source (i cant test it atm since my dosbox got messed by some reason) youre on good road there. Surely there is lot's of places where you could do things d...
by bungytheworm
Mon Oct 09, 2006 6:12 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: ARRAYS
Replies: 3
Views: 8092

At first, DONT YELL :lol:

Use arrays. As nathan sayd, give attention.

For i = 1 TO 10
Array("what we should have here?") = i
Next i
by bungytheworm
Mon Oct 09, 2006 5:23 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29330

As nathan1993 sayd, if you wanan do something more than hello world one liner you need variables. Variable is value. a = 5 then a + a = 10? a$ = text then text + text = texttext= ;) BASIC explanations: Integer value of 1,2,3,4 or five. Any _full_ number (ok english gyus gimme a help wioth "full...
by bungytheworm
Mon Oct 09, 2006 6:14 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29330

Sorry, it should be For Counter = 5 TO 1 STEP -1 LOCATE 6, 1 : Print Counter SLEEP 1 Next Counter And these lines are useless ones LOCATE 6, 1: PRINT "5" SLEEP 1 I made you an example code about IF...THEN...ELSE structure. You need to modifie it to make it work on your program. Dont wana g...
by bungytheworm
Sun Oct 08, 2006 5:52 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29330

LOCATE 6, 1: PRINT "5" SLEEP 1 LOCATE 6, 1: PRINT "4" SLEEP 1 LOCATE 6, 1: PRINT "3" SLEEP 1 LOCATE 6, 1: PRINT "2" SLEEP 1 LOCATE 6, 1: PRINT "1" SLEEP 1 This is good place to get familiar with loops. For Counter = 5 TO 1 LOCATE 6, 1 : Print Counte...
by bungytheworm
Sun Oct 08, 2006 5:46 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29330

EDIT///// Ok, I fixed that problem. I just did: PRINT " " No, no, no. Keep on learning. Here is a hint. You need to get familiar with loops. DIM AS Integer Counter DIM AS String TextString TextString = "First text. You wana get riddof this??? We got to make this long one." LOCAT...
by bungytheworm
Sun Oct 08, 2006 3:58 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29330

As far as i know, there is no such a command.
But by using variables and locate, you can make one.
Show what you have done and we give you some hints how to move on. :wink:
by bungytheworm
Sun Oct 08, 2006 3:32 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29330

You should learn all commands :wink: Anyway, QBASIC is interesting and easy language. If you have some real interest to play with it, you should not have any problems on your way from noob to experienced one. Even in this site, there is like 600 tutorials from where you can start learning. I made 5 ...
by bungytheworm
Sat Oct 07, 2006 2:17 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Sub Script out of range
Replies: 12
Views: 17590

x = 0 FOR x = 0 TO 100 PRINT x, sophSTU(x), sophGPA(x) x = x + 1 SLEEP NEXT x Why you grow x + 1 even you are using FOR NEXT loop that does increase value of x every round? When you are reading from students.txt, you increase value of x every round. Is that really your purpose? Since x gets + 1 eve...
by bungytheworm
Fri Oct 06, 2006 6:46 pm
Forum: General Discussion
Topic: Computer acronyms
Replies: 9
Views: 16931

MKS
Mystik Kill's Shadows

FOR
French, Old and Retarted
by bungytheworm
Fri Oct 06, 2006 6:32 pm
Forum: General Discussion
Topic: Computer acronyms
Replies: 9
Views: 16931

MS-DOS
MystikShadows-Dork Ovulating Scheme

Windows
We Idiots Now Do Own World Systems

Linux
Lets Invent New Useless luXury
by bungytheworm
Fri Oct 06, 2006 6:25 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Sub Script out of range
Replies: 12
Views: 17590

STU0758,Freshman,2.81
dim stu as string
dim class as string
dim gpa as integer
Is it my eyes or what but i do see String, String, Double on that .txt file?