Search found 41 matches

by SamPerson12345
Mon Sep 01, 2008 4:05 pm
Forum: Games and Creations
Topic: Tron!
Replies: 7
Views: 13766

Tron!

A remake of the old tron light cycles game that I made. It has both a single player mode and a two player mode. The AI for single player is pretty stupid though. It can only avoid running into things. I hope you enjoy it anyway! :D
by SamPerson12345
Sun Aug 31, 2008 10:44 pm
Forum: Games and Creations
Topic: Snake!
Replies: 9
Views: 11744

Re: Snake!

amnesiasoft wrote:Another thing to note is you shouldn't let the player turn back onto themselves (going right and hitting left should have no effect, rather than killing you)
Okay, I made a quick fix for that and posted it. If anyone sees any other bugs, feel free to point them out! :)
by SamPerson12345
Sun Aug 31, 2008 6:46 pm
Forum: Games and Creations
Topic: Snake!
Replies: 9
Views: 11744

Re: Snake!

That just goes to show that you can make a fun game without having epic graphics. I must say that I enjoyed the minimalistic design. A side note: one of the "apples" appeared inside the body of my snake (I had a score of 20 if that means anything). I just finished a fix for that! I'm goin...
by SamPerson12345
Sun Aug 31, 2008 2:04 am
Forum: General
Topic: How Did You Find (true) LÖVE?
Replies: 55
Views: 57372

Re: How Did You Find (true) LÖVE?

I found it on the facepunch studios forums. Someone posted a thread about it so I thought I would check it out.
by SamPerson12345
Sun Aug 31, 2008 1:57 am
Forum: Games and Creations
Topic: Snake!
Replies: 9
Views: 11744

Snake!

I just finished this! It's my first love. All it is is just a snake clone. I hope you enjoy it! :D
by SamPerson12345
Sun Aug 31, 2008 1:03 am
Forum: Support and Development
Topic: Dissapearing food in snake game!
Replies: 4
Views: 3120

Re: Dissapearing food in snake game!

Thanks for both of your help! I'll be releasing this as soon as I can set up a way to check if the snake is hitting itself.
by SamPerson12345
Sat Aug 30, 2008 9:33 pm
Forum: Support and Development
Topic: Dissapearing food in snake game!
Replies: 4
Views: 3120

Dissapearing food in snake game!

I'm working on a snake clone, but I have run into an odd problem. For some reason, after the snake eats a certain amount of food, it stops reappearing and I can't figure out why. Could someone help? Here is the code: function load() font = love.graphics.newFont(love.default_font, 12) love.graphics.s...
by SamPerson12345
Sat Aug 30, 2008 9:08 pm
Forum: Support and Development
Topic: Slowing it down
Replies: 3
Views: 3638

Re: Slowing it down

Wait, I got it now.

Code: Select all

function update(dt)
	time = dt + time
	if time > .5 then
		function()
		time = 0
	end
end
that will work right?
by SamPerson12345
Sat Aug 30, 2008 8:24 pm
Forum: General
Topic: Avatars: OBEY!
Replies: 763
Views: 1015943

Re: Avatars: OBEY!

mike wrote:
SamPerson12345 wrote:OBEY!

Hey cool! I'm the one hundredth user! :D
Congratulations! You get nothing!


Seriously, though.. we have nothing to give -_-
Awww... :[
by SamPerson12345
Sat Aug 30, 2008 8:21 pm
Forum: Support and Development
Topic: Slowing it down
Replies: 3
Views: 3638

Slowing it down

I'm working on a love game, but it goes way too fast. Does any one know how I can make it so that a section of code happens about once every half second? help would be greatly appreciated. :mrgreen: