Search found 57 matches

by nkk_kan
Sun Feb 04, 2007 8:55 am
Forum: General Discussion
Topic: halflife
Replies: 9
Views: 34365

UT Goty is best ever. Eventho its old now and it has pretty ugly graphics if we compare it to new games it is still the best.
No any other game has ever reached same feeling level and i doubt never will.

I completely agree with you :D
by nkk_kan
Fri Feb 02, 2007 4:23 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Need some TIMER help
Replies: 5
Views: 11929

here i got it properly :D

Code: Select all

For i = 0 to 10 step 1
       Delay 1
       Print i
Next

Sub delay(Dlay!)
Stime! = timer
Do
Loop while Timer - stime! < Dlay!
End sub

by nkk_kan
Sun Jan 28, 2007 10:56 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Need some TIMER help
Replies: 5
Views: 11929

Do you mean this?

Code: Select all

Start! = timer

For i = 1 to 10 step 1
          sec% = Timer - start!
          Sleep 1
          Print Sec%
Next
by nkk_kan
Sun Jan 28, 2007 10:17 am
Forum: News and Announcements
Topic: PCopy #20
Replies: 7
Views: 23888

So soon! Woot!! :P :P :P
by nkk_kan
Sun Jan 21, 2007 9:25 am
Forum: News and Announcements
Topic: Marvelous Twilight. A shoot(cute)-em-up
Replies: 9
Views: 26505

yeah,that. Now i remember.
i am so bad at debugging :(
by nkk_kan
Wed Jan 17, 2007 7:37 am
Forum: News and Announcements
Topic: Marvelous Twilight. A shoot(cute)-em-up
Replies: 9
Views: 26505

nkk_kan wrote:Awesome Job! :shock: :P :D
really master work!

PS: I changed some code and ran it and it had run but i forgot what i changed and can't seem to find it :cry:
by nkk_kan
Sat Jan 13, 2007 12:35 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Splitting an Integral Number Into Two Parts
Replies: 13
Views: 22410

BTW. How is the 'CODE" selection button used on the message board? I noticed some of the replies have the code in a little box.
just click on Code Button then type out your code and click code button again which has now an asterisk on it too and it's done!
by nkk_kan
Sat Jan 13, 2007 12:28 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Need help with Chess Program I am writing
Replies: 13
Views: 23536

(* PSst Qbguy! Do you see that Edit button beside your post? you can edit your post from there! *)
by nkk_kan
Sat Jan 13, 2007 12:33 am
Forum: News and Announcements
Topic: Marvelous Twilight. A shoot(cute)-em-up
Replies: 9
Views: 26505

Awesome Job! :shock: :P :D
really master work!
by nkk_kan
Thu Jan 11, 2007 2:59 am
Forum: News and Announcements
Topic: QB Wiki
Replies: 2
Views: 12832

Been there, and added sumfin...

Ditto.
by nkk_kan
Sat Jan 06, 2007 2:31 am
Forum: News and Announcements
Topic: Two Lords pre-beta coming soon
Replies: 6
Views: 18935

Awesome Job nek!
That hand and heart oozes realism! :shock:
Nice and hard work.
by nkk_kan
Thu Jan 04, 2007 2:28 am
Forum: Pete's QB Site News
Topic: New submission deadline for QB Express #22!
Replies: 17
Views: 91123

yeah i think lurah's right
and it will relieve you of some stress too..
if u are very busy,that's not your fault but
lurah's idea of handing over the mag to some
nice and worthy volunteer is good.
by nkk_kan
Mon Nov 20, 2006 8:15 am
Forum: General Discussion
Topic: Encryption and XOR
Replies: 15
Views: 31207

well...can anyone make something like that "Enigma" code in ww2?
just a suggestion..i don't want it..but i think that's best encryption?
by nkk_kan
Sun Oct 08, 2006 11:12 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Searching help.
Replies: 22
Views: 29193

you might want to try "vic's Qbasic tutorials"
and Also Of "Dark Dread" (He wrote some nice tutors)
Google them and you will find them...

btW

WELCOME TO THE FORUM!!!!!! :D
by nkk_kan
Fri Sep 08, 2006 8:24 am
Forum: Pete's QB Site News
Topic: QB Express #22 Deadline
Replies: 10
Views: 44524

yeah..Another lag..
Hope Pete uploads it today...
by nkk_kan
Thu Aug 31, 2006 4:54 am
Forum: General Discussion
Topic: $1000 Reward
Replies: 36
Views: 61912

Not only bible... every religion does that
they believe whatever they preach to be a fact....
Relegion is crap..we have to follow weird traditions and all which sometimes are obscure....well if not in christianity it is in hinduism...
by nkk_kan
Thu Aug 31, 2006 4:32 am
Forum: News and Announcements
Topic: Operation - Quick Basic, Beginners Tutorial is being made!
Replies: 6
Views: 18359

oh yeah i did spell right! :D and well i'm "nkk" not NKK.... and yeah don't quit.. actually i had also started to write a tutorial but quit in middle.... and yeah i am looking forward for those Intermediate tutZ...and yeah it is easy but i (and probably many) had some problems with it.. :o...
by nkk_kan
Thu Aug 31, 2006 4:07 am
Forum: QBASIC and QB64 Questions & Answers
Topic: How to slow this down?
Replies: 20
Views: 34238

oh yeah sorry :oops:
by nkk_kan
Thu Aug 31, 2006 3:06 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Q Basic ?????????
Replies: 13
Views: 22991

Does the Compatilibillity Mode Settings affect?
i don't use Xp but i think that should work...
Open properties of .exe file.. and select compatibility tab
and select windows 95 or 98 and click apply and then try running qbasic....

and Doesn't DosBox round up this problem?
by nkk_kan
Thu Aug 31, 2006 2:53 am
Forum: QBASIC and QB64 Questions & Answers
Topic: How to slow this down?
Replies: 20
Views: 34238

hmmm.. How about this one?

Code: Select all

sub delay(dlay!)
stime! = timer
Do
loop until Timer - stime! > dlay!
[/code]