Search found 4 matches

by Karlgamer
Sat Feb 16, 2008 12:21 am
Forum: General discussion
Topic: Arskaweb
Replies: 5
Views: 12934

Re: Arskaweb

Thanks for the Welcome! I am quite enjoying using coolbasic. And frankly I don't have any problem with your English. I do however wish that there was more information (in English) of how the language works. So far I have picked up right where I left off with QuickBasic. I was working on the same pro...
by Karlgamer
Wed Feb 13, 2008 7:58 am
Forum: Projects
Topic: 2.5d game
Replies: 3
Views: 6617

Re: 2.5d game

Never use bubble sort - it is one of the slowest (or maybe even the slowest) sort available. It doesn't make a big different if a list-to-be-sorted is very small, but with a bigger, you immediately run into performance troubles. Try combsort instead; it is much faster and has a ready implementation...
by Karlgamer
Tue Feb 12, 2008 10:34 am
Forum: Problems
Topic: IF-statements
Replies: 3
Views: 3938

Re: IF-statements

I always use "then" in my if statements... it helps me logically think it out.

if she isn't to young then I can date her or else I run away

Code: Select all

if Girlage > 19 then 
     distance = 0
else
     distance  = 1000000000000
end if
by Karlgamer
Tue Feb 12, 2008 10:20 am
Forum: Projects
Topic: 2.5d game
Replies: 3
Views: 6617

2.5d game

So this is the beginning to a game I want to write. OH LEFT and RIGHT ARROW KEYS ROTATE! ....sorry.... There wasn't a SWAP command for my bubble sort so I had to do it the old fashion way. It needs a lot of work. I'm kind of a little shy about my coding and work however I would be glad to answer any...