←  Games

ComputerCraft | Programmable Computers for Minecraft

»

The Game Library!

Locked

Skullblade's Photo Skullblade 26 Jan 2013

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

billysback's Photo billysback 26 Jan 2013

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

MulticolouredMarshmellow's Photo MulticolouredMarshmellow 10 Feb 2013

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

Skullblade's Photo Skullblade 10 Feb 2013

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
Quote

TheOddByte's Photo TheOddByte 10 Feb 2013

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
Quote

Skullblade's Photo Skullblade 10 Feb 2013

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...
Quote

TheOddByte's Photo TheOddByte 10 Feb 2013

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.
Quote

mineo72's Photo mineo72 15 Dec 2013

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.
Quote

H4X0RZ's Photo H4X0RZ 15 Dec 2013

It was said above...
Quote

serpenoids's Photo serpenoids 27 Apr 2014

[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
Quote

Konlab's Photo Konlab 19 May 2014

This topic is good idea!
Quote

Konlab's Photo Konlab 21 May 2014

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