Jump to content




The Game Library!



51 replies to this topic

#41 Skullblade

  • Members
  • 470 posts
  • LocationThe Big Apple, NY

Posted 26 January 2013 - 01:13 AM

I agree with u Brett but apparently I am every blunt when I am tired....

#42 billysback

  • Members
  • 569 posts

Posted 26 January 2013 - 10:23 AM

EDIT:
oh right...
woops I just read what everyone else posted

#43 MulticolouredMarshmellow

  • Members
  • 25 posts

Posted 10 February 2013 - 09:44 AM

Is there a way to exit pong? without terminating it?

#44 Skullblade

  • Members
  • 470 posts
  • LocationThe Big Apple, NY

Posted 10 February 2013 - 11:27 AM

View Postgabrieljw1, on 10 February 2013 - 09:44 AM, said:

Is there a way to exit pong? without terminating it?
this project is abandoned so don't expect support...if you want a newer pong game you could use skull pong(link in my sig) :D

#45 TheOddByte

    Lazy Coder

  • Members
  • 1,607 posts
  • LocationSweden

Posted 10 February 2013 - 11:45 AM

View PostBigSHinyToys, on 24 March 2012 - 12:56 PM, said:

Ideas for game

Tanks -- game where you aim where a projectile will land using power and angle. ( should be a good work out for your physics )
Pokemon -- ok so kinda of a joke suggestion
Space invaders -- classic
Tetris -- classic
Elf bolling -- Google it if you haven't played it.
Mario -- original 2d side scrolling game
catapult game -- a game where you have to select power and projectile for a catapult and then it fires at a building of some kind. points for destruction
I can't belive that noone has created Tetris in CC..
Thanks for the idea, Now I'm going to get started with that mohahaha.. :P
By the way.. The Catapult game sounds like Angry Birds Or Something.

EDIT: Sorry For Posting Here since this is Abandoned, But just want to let you know that I'm going todo Tetris

#46 Skullblade

  • Members
  • 470 posts
  • LocationThe Big Apple, NY

Posted 10 February 2013 - 12:04 PM

View PostHellkid98, on 10 February 2013 - 11:45 AM, said:

View PostBigSHinyToys, on 24 March 2012 - 12:56 PM, said:

Ideas for game

Tanks -- game where you aim where a projectile will land using power and angle. ( should be a good work out for your physics )
Pokemon -- ok so kinda of a joke suggestion
Space invaders -- classic
Tetris -- classic
Elf bolling -- Google it if you haven't played it.
Mario -- original 2d side scrolling game
catapult game -- a game where you have to select power and projectile for a catapult and then it fires at a building of some kind. points for destruction
I can't belive that noone has created Tetris in CC..
Thanks for the idea, Now I'm going to get started with that mohahaha.. :P
By the way.. The Catapult game sounds like Angry Birds Or Something.

EDIT: Sorry For Posting Here since this is Abandoned, But just want to let you know that I'm going todo Tetris
Just so you know...tetris HAS been done...cant remember where i saw it...

#47 TheOddByte

    Lazy Coder

  • Members
  • 1,607 posts
  • LocationSweden

Posted 10 February 2013 - 12:07 PM

View PostSkullblade, on 10 February 2013 - 12:04 PM, said:

View PostHellkid98, on 10 February 2013 - 11:45 AM, said:

View PostBigSHinyToys, on 24 March 2012 - 12:56 PM, said:

Ideas for game

Tanks -- game where you aim where a projectile will land using power and angle. ( should be a good work out for your physics )
Pokemon -- ok so kinda of a joke suggestion
Space invaders -- classic
Tetris -- classic
Elf bolling -- Google it if you haven't played it.
Mario -- original 2d side scrolling game
catapult game -- a game where you have to select power and projectile for a catapult and then it fires at a building of some kind. points for destruction
I can't belive that noone has created Tetris in CC..
Thanks for the idea, Now I'm going to get started with that mohahaha.. :P
By the way.. The Catapult game sounds like Angry Birds Or Something.

EDIT: Sorry For Posting Here since this is Abandoned, But just want to let you know that I'm going todo Tetris
Just so you know...tetris HAS been done...cant remember where i saw it...
Huhmm... I haven't seen it so I assumed it had'nt been made...
Well Atleast I'll do my own tetris.

#48 mineo72

  • Members
  • 4 posts

Posted 15 December 2013 - 03:50 PM

View PostBlackRa1n, on 24 March 2012 - 01:05 PM, said:

I like the sound of 'Space Invaders' and 'Tetris' being in CC. That would be pretty fun :D/>
There is already a tetris CC Game B) B) B)

Edited by mineo72, 15 December 2013 - 03:51 PM.


#49 H4X0RZ

  • Members
  • 1,315 posts
  • LocationGermany

Posted 15 December 2013 - 04:44 PM

It was said above...

#50 serpenoids

  • New Members
  • 1 posts

Posted 27 April 2014 - 12:27 AM

[size=6]Title[/size]
Protector
Amount of players: 1
Genre: arcade

Code
[spoiler][code]local over = false
local eypos = 15
local expos = 30
local ypos = 15
local tries = 1
local lives = 10
attachedMonitor = peripheral.wrap("back")
attachedMonitor.setBackgroundColor(colors.black)
attachedMonitor.setTextScale(.5)
attachedMonitor.clear()
attachedMonitor.setTextColor(colors.red)
while over == false do
expos=expos-tries
sleep(0.1)
attachedMonitor.clear()
attachedMonitor.setCursorPos(20,ypos)
attachedMonitor.write("~")
attachedMonitor.setCursorPos(expos, eypos)
attachedMonitor.write("X")
attachedMonitor.setCursorPos(2,2)
attachedMonitor.write("Lives Remaining: "..lives)
event={os.pullEvent("monitor_touch")}
local columnClicked = event[3]
local rowClicked = event[4]
if rowClicked <10 then
ypos = ypos-1
else
ypos = ypos+1
end
if expos > 18 and expos < 22 and eypos == ypos then
expos = 30
eypos = math.random(20)
end
if expos < 10 then
expos = 30
eypos = math.random(20)
tries = tries+0.1
lives = lives-1
end
if lives <1 then
over = true
end
end
attachedMonitor.setBackgroundColor(colors.red)
attachedMonitor.clear()
attachedMonitor.setCursorPos(15,15)
attachedMonitor.setTextColor(colors.black)
attachedMonitor.write("Game Over!")
sleep(3)
os.reboot()[/code*][/spoiler] Author:serpenoidsGoal:Kill the X's by touching them, if an X gets to the end you lose a life, you have 10 lives. Right click on the top half to go upright click on the bottom half to go downNote: Must be named startup to work and the ADVANCED computer attached to a 2x2 ADVANCED monitor on the back

#51 Konlab

  • Members
  • 595 posts
  • LocationKerbin

Posted 19 May 2014 - 04:28 PM

This topic is good idea!

#52 Konlab

  • Members
  • 595 posts
  • LocationKerbin

Posted 21 May 2014 - 12:59 PM

I have a new game, done in 15 days!!!!





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users