Search found 237 matches

by mickeyjm
Tue Mar 04, 2014 3:58 pm
Forum: General
Topic: [NONLOVE] Chaoscraft - The 2D Sidescrolling Skilling MORPG
Replies: 96
Views: 32190

Re: [NONLOVE] Chaoscraft - The 2D Sidescrolling Skilling MOR

veethree wrote:Fuck off.
That is one hell of a 600th post
by mickeyjm
Thu Feb 27, 2014 7:19 pm
Forum: Support and Development
Topic: Problem making a library
Replies: 2
Views: 1117

Re: Problem making a library

There is a comma after the then
by mickeyjm
Sun Feb 23, 2014 6:04 pm
Forum: Support and Development
Topic: Collision with multiple entities?
Replies: 6
Views: 2663

Re: Collision with multiple entities?

replace all instances of

Code: Select all

i.something
with

Code: Select all

enemy[i].something
i is just a number that stores with index of the table you are using
by mickeyjm
Thu Feb 20, 2014 3:15 pm
Forum: Support and Development
Topic: [Solved] Problem with animation
Replies: 6
Views: 2479

Re: Problem with animation

mkdir error is because you wrote the code for 0.8.0, love.filesystem.mkdir was renamed to love.filesystem.createDirectory
by mickeyjm
Tue Feb 18, 2014 5:32 pm
Forum: Support and Development
Topic: How to draw 2d levels?
Replies: 4
Views: 1614

Re: How to draw 2d levels?

kikito wrote:almost no one is satisfied with their own art.
Reminds me of this
by mickeyjm
Tue Jan 21, 2014 7:19 pm
Forum: Support and Development
Topic: How do I make entities move?
Replies: 9
Views: 4496

Re: How do I make entities move?

Side note, instead of posting the whole file for such problem, you could have posted the relevant code. Glad it worked out, though. That's a bit of a catch-22 isn't it? When someone post code snippets we request the whole thing, when they post the whole thing we request snippets. Maybe posting both...
by mickeyjm
Sun Jan 12, 2014 10:04 pm
Forum: Support and Development
Topic: Menu
Replies: 4
Views: 1829

Re: Menu

Sorry for not using code tags, but I'm on a mobile device.
To check if the mouse is between 2 points you do

mx = love.mouse.getX()
my = love.mouse.getY()

if mx>=350 and mx<=400 and my>=350 and my<=400 then
--code
end

Obviously you can change the numbers to check the right area.
by mickeyjm
Sat Jan 11, 2014 11:57 am
Forum: General
Topic: I Have An Idea
Replies: 5
Views: 2227

Re: I Have An Idea

I just found a way to do something similar to what you want. You can create a self extracting exe of all the files (*.exe, love.dll, lua51.dll, etc). This creates a single file the user can run which acts just like extracting the files from a zip then running the exe. Here's how to do it on windows,...
by mickeyjm
Fri Jan 03, 2014 11:11 am
Forum: General
Topic: Question about loading multiple Images.
Replies: 3
Views: 2869

Re: Question about loading multiple Images.

Try storing the images in a table and loading them with a loop. For example: local images = {} function love.load() for i=1,100 do images[i] = love.graphics.newImage("IMAGENAME"..i..".png") end end This will load 100 images named IMAGENAME1.png through to IMAGENAME100.png, you ca...
by mickeyjm
Mon Dec 30, 2013 5:04 pm
Forum: Support and Development
Topic: [0.9.0] Executing with Notepad++ (nppexec)
Replies: 11
Views: 11022

Re: [0.9.0] Executing with Notepad++ (nppexec)

I am doing exactly as you describe and it works, are you sure that

Code: Select all

C:\Program Files\LOVE\love.exe
actually exists?

EDIT: Actually I don't quote $(CURRENT_DIRECTORY), maybe that makes a difference?