Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I suppose a new challenge should arise...
#1
I noticed alot of compo.s are game based...

How about a compo that isn't a challenge against, but everyone has a shot at adding the code to a program...

That way all the community can learn about everything we can put together...

For simpilicty sake, preferably PQB, so its compatible with all computers...

So, if its not going to be a game, what shoudl it be?
If its a community effort, I think we should all have a say in what it should be, and how it would work

Alex~
Reply
#2
Sounds like your looking for recruits... HEY YOU! JOIN THE QBasic ARMY...NOW!!! :lol: j/k

If every active member(that can code QB) put there best effort into it, it would be one hell of a game, if we could get it organized... and thats the problem in itself. Ya' know, being the foreman sucks! All of the responsibility rests on your shoulders. You have to keep everyone busy, critique their work with a fine-tooth comb, get rid of the people who suck and lots of other stuff that really sucks! Could you imagine that responsibility for 1000+ people that have never even seen each other? :barf:

It's definetly an ambitious idea though! Wink
Reply
#3
De ja vu
.
.
.
It would be great if it could be worked out but.... yea

I'll start
Code:
CLS
:roll: ignore that =P
[Image: sig.php]
Back by popular demand!
I will byte and nibble you bit by bit until nothing remains but crumbs.
Reply
#4
White tiger: You jsut gave me an outstanding idea....

we each contribute one line/chunk of code...such as 'CLS' or a IF/THEN/ELSE/END IF block...

Imagine how it could work....

Alex~
Reply
#5
Quote:White tiger: You jsut gave me an outstanding idea....

we each contribute one line/chunk of code...such as 'CLS' or a IF/THEN/ELSE/END IF block...

Imagine how it could work....

Alex~
What... have... i... done... =P
that sounds cool. glad i thought of it :roll:
[Image: sig.php]
Back by popular demand!
I will byte and nibble you bit by bit until nothing remains but crumbs.
Reply
#6
Okay........
Just for shits...How's about this here...and Pure QB right...
It has to be something easy for the first time...Oh wat a minute...that's what she...nevermind!

Code:
'Hippy Ball...formerly known as Pong
'By UnKnown% QBN members???
'$DYNAMIC

Type BallType
X as Single
Y as Single
  VecX as Single
  VecY as Single
End Type
Reply
#7
there was something that was like this a while ago... it turned out horribly wrong, but I have a good feeling about this time. Ok keeping on with the Pong theme:

Code:
SCREEN 13
'Lets GET those funky hippy pong paddles!
FOR i = 0 TO 24
  LINE (0, i)-(4, i), (i * 2) + 32
NEXT
DIM hippypaddle((25 * 5) / 2 + 1) AS INTEGER
GET (0, 0)-(4, 24), hippypaddle
Reply
#8
Mmmmmmmm......pong

Code:
'-----Dr_Davenstein
'Hippy Ball...formerly known as Pong
'By UnKnown% QBN members???
'$DYNAMIC

Type BallType
X as Single
Y as Single
  VecX as Single
  VecY as Single
End Type


DECLARE SUB Alex.Draw.Background ()

'-----Dark_Prevail
SCREEN 13

'Lets GET those funky hippy pong paddles!
FOR i = 0 TO 24
  LINE (0, i)-(4, i), (i * 2) + 32
NEXT
DIM hippypaddle((25 * 5) / 2 + 1) AS INTEGER
GET (0, 0)-(4, 24), hippypaddle

I have no code at the moment to add, but i thought it would b easier to see everything together

Alex~
Reply
#9
I'll make the ball of funkyness

Code:
'-----Dr_Davenstein
'Hippy Ball...formerly known as Pong
'By UnKnown% QBN members???
'$DYNAMIC

Type BallType
X as Single
Y as Single
  VecX as Single
  VecY as Single
End Type


DECLARE SUB Alex.Draw.Background ()

'-----Dark_Prevail
SCREEN 13

'Lets GET those funky hippy pong paddles!
FOR i = 0 TO 24
  LINE (0, i)-(4, i), (i * 2) + 32
NEXT
DIM hippypaddle((25 * 5) / 2 + 1) AS INTEGER
GET (0, 0)-(4, 24), hippypaddle

'-----Whitetiger0990
'The ball of funkyness
CLS
FOR i = 1 TO 4
CIRCLE (4, 3), i, (i * 4) + 32
NEXT
DIM hippyball((8 * 8) / 2 + 1) AS INTEGER
GET (1, 1)-(8, 8), hippyball

I guess it's easy to change the size if the next person doesn't like it this way =P
[Image: sig.php]
Back by popular demand!
I will byte and nibble you bit by bit until nothing remains but crumbs.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)