Search found 15 matches

by Mogex
Tue Jan 22, 2013 1:43 am
Forum: Support and Development
Topic: Le pregunta o noobs (nooby question)
Replies: 2
Views: 1745

Le pregunta o noobs (nooby question)

Is there any tutorial on the internet about colons in lua or love2d and their functionality, what they do, and how they can be utilized?

Link me if you got one.

Thanks.
by Mogex
Mon Jan 14, 2013 11:04 pm
Forum: Support and Development
Topic: A strange issue
Replies: 2
Views: 1613

Re: A strange issue

function love.conf(a) a.title = ------- end This is invalid Lua. It throws an error in love.conf and LÖVE will not create a window. Always check if you get an error message in stdout. If you don't have a terminal/command prompt, save it to a file with IO redirection: path/to/love path/to/mygame > s...
by Mogex
Mon Jan 14, 2013 10:49 pm
Forum: Support and Development
Topic: A strange issue
Replies: 2
Views: 1613

A strange issue

Ok, for whatever reason, when I drag my game files over to LOVE.exe, it just does NOTHING, I mean out of the blue and when it was working earlier it just stopped working with no error window, just dragged onto love.exe, a half of second of loading then nothing. I have no idea why the code would do t...
by Mogex
Fri Jan 04, 2013 2:56 am
Forum: Support and Development
Topic: C++ Map Maker
Replies: 1
Views: 1537

C++ Map Maker

Ok, I've decided to begin work on a C++ written map maker for a game that I'm developing and I'm wondering how exactly this is going to go on through and how I could make Love2D somehow understand some C++ imput to build the map and objects of the map.

That is all for now.
by Mogex
Sun Dec 30, 2012 6:50 am
Forum: Support and Development
Topic: What are 'nil' errors?
Replies: 12
Views: 7685

Re: What are 'nil' errors?

I've decided that I'm going to watch a youtube series to just create a much better foundation of knowledge, rather than figuring out issues one by one with barely any idea of what I'm doing.
by Mogex
Sun Dec 30, 2012 6:37 am
Forum: Support and Development
Topic: What are 'nil' errors?
Replies: 12
Views: 7685

Re: What are 'nil' errors?

Oh and I've changed it from drawq to draw temporarily.
by Mogex
Sun Dec 30, 2012 6:35 am
Forum: Support and Development
Topic: What are 'nil' errors?
Replies: 12
Views: 7685

Re: What are 'nil' errors?

Aside from the problem TheDeskPop mentioned, this part makes little sense: player.characters = love.graphics.newImage("characters.png") player.left1 = love.graphics.newQuad(10, 30, 91, 170, 550, 170) --(10, 30, 91, 170, 550, 170) love.graphics.newImage("characters.png") You firs...
by Mogex
Sun Dec 30, 2012 6:13 am
Forum: Support and Development
Topic: What are 'nil' errors?
Replies: 12
Views: 7685

Re: What are 'nil' errors?

Bump!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
by Mogex
Sun Dec 30, 2012 5:05 am
Forum: Support and Development
Topic: What are 'nil' errors?
Replies: 12
Views: 7685

Re: What are 'nil' errors?

Gah, I have another issue I'm trying to get around, and I've tried every logical solution I know of, this is the issue: v1bN6.png function love.load() love.physics.setMeter(60) world = love.physics.newWorld(0, 9.81*64, true) --image = love.graphics.newImage("sheet1.png") --x = 50 --y = 50 ...
by Mogex
Sat Dec 22, 2012 9:35 pm
Forum: Support and Development
Topic: What are 'nil' errors?
Replies: 12
Views: 7685

Re: What are 'nil' errors?

Nixola wrote:It seems that newRectangleShape doesn't exist in the table you're searching it, could you upload a .love?

EDIT: You posted your code... Look line 43:

Code: Select all

objects.player.shape = love.physics newRectangleShape(10, 30, 91, 170)
You typed a space instead of a dot
*facepalm*

and thanks.. ugh lol.