Search found 288 matches

by bungytheworm
Fri Oct 06, 2006 8:03 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Sub Script out of range
Replies: 12
Views: 17455

Hi TheWicker.
Could you post your students.txt too?
As far as i see, there should be no problems on that code of your.
Fix me fellas if im wrong. Cant acces to qbasic atm.
by bungytheworm
Tue Sep 26, 2006 11:25 am
Forum: General Discussion
Topic: are you prepared for emergencies with a kit?
Replies: 32
Views: 60038

Avoid getting thirsty, fill your freeze with beer 8)
by bungytheworm
Tue Sep 26, 2006 11:22 am
Forum: Pete's QB Site News
Topic: Guest Posting Disabled
Replies: 19
Views: 54023

Lachie Dazdarian wrote:I'm bleeding here man! I need a QB Express fix! Now!
Yeah, i can feel how peoples are ready to make some riot here soon...
by bungytheworm
Tue Sep 19, 2006 10:09 am
Forum: General Discussion
Topic: are you prepared for emergencies with a kit?
Replies: 32
Views: 60038

??? lawyer does behind desk of president?

And yes, we all gona die, no matter do we have some damn survive kit or not. And i skip that gettin bottled water. After all, biggest lake of Finland is under mile away, so i can walk there if need.
by bungytheworm
Sun Sep 17, 2006 8:53 am
Forum: General Discussion
Topic: are you prepared for emergencies with a kit?
Replies: 32
Views: 60038

Electricity still goes out pretty often too, so having candles or lanterns is a part of life here. Actually that is part of life here too. But look's like at this side of earth, having candless, matches, flashlight, batteries etc. on closet is normal thing. After all, even kid knows those can be ne...
by bungytheworm
Sun Sep 17, 2006 4:32 am
Forum: General Discussion
Topic: are you prepared for emergencies with a kit?
Replies: 32
Views: 60038

Yes i know water service can stop but why buy bottled water from shop instead of filling bottles from faucets?
by bungytheworm
Sat Sep 16, 2006 5:11 pm
Forum: General Discussion
Topic: are you prepared for emergencies with a kit?
Replies: 32
Views: 60038

mmm...i dont get why you should buy water in bottles. Dont you have faucets there? Yes, everyone on SE asia etc. dont have those, but if you have " DOLLAR store.", you surely have faucets too. I dont hate Americans, but their mighty leaders does live in middle ages and times of witch hunt'...
by bungytheworm
Thu Sep 14, 2006 11:44 pm
Forum: Pete's QB Site News
Topic: Guest Posting Disabled
Replies: 19
Views: 54023

I don't much like having to register when I'm just looking for some information on a site that I got from a Google search. That is shitty thing. I know few peoples who has forum and they expect user to register even to read post's. Thats a crappy thing. Alltho i do understand IE:qbn went to this be...
by bungytheworm
Thu Sep 14, 2006 2:42 pm
Forum: Pete's QB Site News
Topic: Guest Posting Disabled
Replies: 19
Views: 54023

Hey Pete. Could you consider of using this

I personally dont like "must to register/log in"
Wont help the site thing, but forums could be opened for non-registered ones.
by bungytheworm
Fri Sep 01, 2006 11:18 am
Forum: QBASIC and QB64 Questions & Answers
Topic: A way to set all variables at once?
Replies: 5
Views: 10408

No you cant unless you dont stop and rerun program. But if you have so many variables to clear at once, maybe you should aproach this one from bit different direction. Do an array, Weapon() Weapon(1) Weapon(2) and so on. At start of code, DIM all same variable you have now. revolvernum as 1 bulletnu...
by bungytheworm
Fri Sep 01, 2006 2:50 am
Forum: News and Announcements
Topic: Two Lords alpha release soon
Replies: 4
Views: 13156

Hi Nekrophidius. I do follow QBN time to time but havent noticed your post about this issue there. Looks damn cool. Could you tell me what gfx./sound etc. libraries this uses? I wana know since im *nix user only and im interested to know is this goin to be compiled for *nix too or is source that kin...
by bungytheworm
Thu Aug 31, 2006 11:09 am
Forum: QBASIC and QB64 Questions & Answers
Topic: create a boot
Replies: 1
Views: 3949

No with QBasic.
by bungytheworm
Wed Aug 30, 2006 11:45 am
Forum: General Discussion
Topic: $1000 Reward
Replies: 36
Views: 61881

Nathan1993 wrote:In other words:
Micro evolution: Fact.
Macro evolution: Theory.
Bibble: Book, what someones claims to be real truth, with out any evidence.
Christianity is when human is in a dark, totally empty room looking for a cat and he even claims that he did find it
Cant remember who sayd that.[/quote]
by bungytheworm
Wed Aug 30, 2006 11:39 am
Forum: QBASIC and QB64 Questions & Answers
Topic: I'm having a bit of a problem
Replies: 14
Views: 23427

PlrName
CharName
CityName


But no Pl4N4m3 or Ch4rN4m3....gee i hate those :lol:
by bungytheworm
Wed Aug 30, 2006 11:37 am
Forum: QBASIC and QB64 Questions & Answers
Topic: How to slow this down?
Replies: 20
Views: 34223

@Quibbler

How about

Code: Select all

INPUT "Press <ENTER> when you think you have delayd meteors moving enough";variablehere
MeteorX = MeteorX + 1
by bungytheworm
Wed Aug 30, 2006 7:58 am
Forum: QBASIC and QB64 Questions & Answers
Topic: How to slow this down?
Replies: 20
Views: 34223

Z!re wrote:And never use for/next as a delay unless you make it a dynamic for/next. So DONT USE FOR/NEXT AS A DELAY!
Amen for that. Delay from FOR/NEXT loop depends then totally from cpu speed of your computer. On other computers, delay would be totally different.
by bungytheworm
Wed Aug 30, 2006 7:16 am
Forum: QBASIC and QB64 Questions & Answers
Topic: How to slow this down?
Replies: 20
Views: 34223

yea that works, But even if I put WhatDelayYouWant down to 1, it now moves too slowly lol. Any ideas? IF WhatDelayYouWans = 1 it waits for a second. Timer returns an double. Here is simple example, hope it helps. CLS DIM Delay, DelayCheck AS DOUBLE Delay = .1 ' 0.1 seconds now for value of wanted d...
by bungytheworm
Wed Aug 30, 2006 5:18 am
Forum: QBASIC and QB64 Questions & Answers
Topic: How to slow this down?
Replies: 20
Views: 34223

Check TIMER function.

Code: Select all

Delay = Timer
...
...
..
...
IF Timer - Delay > WhatDelayYouWant THEN 
    asteroidx = asteroidx + 1 
    Delay = Timer
END IF
Would be easier to help if any piece of source would been included to your post. But hope this helps a bit.
by bungytheworm
Tue Aug 29, 2006 12:01 pm
Forum: General Discussion
Topic: $1000 Reward
Replies: 36
Views: 61881

So now you have preached your gospel here and you can move on to some other place.
by bungytheworm
Mon Aug 28, 2006 4:37 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Q Basic ?????????
Replies: 13
Views: 22985

There's nothing to install.
Copy qbasic on some folder, go there and double click qb.exe or qbasic.exe, depending wich way it's named.