Search found 46 matches

by RunningGamesStudios
Sat Jun 15, 2013 11:58 pm
Forum: Support and Development
Topic: Bullet
Replies: 2
Views: 1158

Re: Bullet

The code had a ton of errors I fixed them all so dont worry about this thread.
by RunningGamesStudios
Sat Jun 15, 2013 11:55 pm
Forum: Support and Development
Topic: Works with one thing but not the other?
Replies: 30
Views: 12069

Works with one thing but not the other?

main.lua function love.load() --require lib's require ("player") require ("mlib") require ("projectile") _w = love.graphics.getWidth() _h = love.graphics.getHeight() _mx = love.mouse.getX() _my = love.mouse.getY() math.randomseed(os.time()) --for testing _intProjectiles...
by RunningGamesStudios
Sat Jun 15, 2013 6:25 pm
Forum: Support and Development
Topic: Bullet
Replies: 2
Views: 1158

Bullet

When I press a it's supposed to fire a bullet but nothing happens. Help?
by RunningGamesStudios
Thu Jun 06, 2013 6:28 pm
Forum: General
Topic: Where do you live? (Social Experiment)
Replies: 36
Views: 15708

Re: Where do you live? (Social Experiment)

Fort wayne indiana.
by RunningGamesStudios
Thu Jun 06, 2013 4:37 pm
Forum: Games and Creations
Topic: Project pong! (opinions on code needed!)
Replies: 2
Views: 851

Re: Project pong! (opinions on code needed!)

Hi, first of all: congratulation for you first game. Here are my suggestion for better code: Try to avoid numbers in your code. By that, of course, I don't mean numbers in general, but those, that might change, when you change your code. For example, in your code the condition for one player to get...
by RunningGamesStudios
Thu Jun 06, 2013 2:56 pm
Forum: Games and Creations
Topic: Boing — a Rebound clone
Replies: 13
Views: 7865

Re: Boing — a Rebound clone

Nice!
Gave me some new gray hairs.
by RunningGamesStudios
Thu Jun 06, 2013 2:53 pm
Forum: Games and Creations
Topic: Project pong! (opinions on code needed!)
Replies: 2
Views: 851

Project pong! (opinions on code needed!)

Hello all I would like to show you guys my first ever game in love!

Please tell me how I can improve my code because I think it looks ugly.
by RunningGamesStudios
Wed Jun 05, 2013 1:38 pm
Forum: Support and Development
Topic: Cant figure out
Replies: 2
Views: 679

Re: Cant figure out

Please tell us exactly what the problem is. Otherwise, we cannot help you. Also, see the forum rules . I'm having a problem where it says "local yOffset = y - payB - paS" i'm trying to make it so if the ball hits the paddel's edge it will bounce off the correct way but i cant figure out h...
by RunningGamesStudios
Wed Jun 05, 2013 2:45 am
Forum: Support and Development
Topic: Cant figure out
Replies: 2
Views: 679

Cant figure out

function love.load() home = love.filesystem:getWorkingDirectory() w = love.graphics.getWidth() h = love.graphics.getHeight() paX = 10 paY = h / 2 + 50 paxB = 10 payB = h / 2 - 50 paS = 100 pbX = 0 pbY = 0 pbxB = 0 pbyX = 0 x = 200 y = 200 angle = 0 speed = 100 anglespeed = 4 end function love.updat...
by RunningGamesStudios
Wed Jun 05, 2013 1:55 am
Forum: Support and Development
Topic: Weird error
Replies: 3
Views: 2110

Re: Weird error

Nevermind I fixed it. But I would also like some tips on my code so far