Search found 2 matches

by gamergodx6
Fri Jul 12, 2013 8:58 pm
Forum: Support and Development
Topic: Keep getting Table error preventing enemies from showing
Replies: 2
Views: 1368

Re: Keep getting Table error preventing enemies from showing

Hi, I made three changes in your code, to make it run. 1) There is an "end" missing in line 56 2) a variable cannot hold an image and a table at the same time. To fix this replace this: player = love.graphics.newImage("Flower.png") by this player = {} player.image = love.graphic...
by gamergodx6
Fri Jul 12, 2013 7:44 pm
Forum: Support and Development
Topic: Keep getting Table error preventing enemies from showing
Replies: 2
Views: 1368

Keep getting Table error preventing enemies from showing

I'm new to the Love scene, and I have been trying to make a game similar to Halo 2600, but am unable to get any of the enemies or "shots" to show up on the display. I can get most things to work, such as collision and music but I keep getting an error based around the Table and I was wonde...