Search found 35 matches

by clepto
Sat Jul 28, 2012 3:49 pm
Forum: General
Topic: Obey?
Replies: 44
Views: 35990

Re: Obey?

T-Bone wrote:Join the dark side! We have cookies.
hahahaha
by clepto
Thu Jul 26, 2012 10:55 pm
Forum: Support and Development
Topic: Understanding part of the coordinate system
Replies: 12
Views: 3951

Re: Understanding part of the coordinate system

haha thats what i was thinking :P

edit: just one more thing, why you need specific coordinates to get the bullet out of the window? just keep increasing the coordinates and check if its out of the window! Goodnight!
by clepto
Thu Jul 26, 2012 10:54 pm
Forum: Support and Development
Topic: Problem - attempt to concatenate local 'y' (a nil value)
Replies: 9
Views: 6635

Re: Problem - attempt to concatenate local 'y' (a nil value)

thanks! i change the line to

Code: Select all

ent:setPos( x, y )
(also change the self. with ent.) and it running but i cant see anywhere my hero entity...

i have study to do :crazy:
by clepto
Thu Jul 26, 2012 10:45 pm
Forum: Support and Development
Topic: Understanding part of the coordinate system
Replies: 12
Views: 3951

Re: Understanding part of the coordinate system

I am from Greece :)

look at the image here http://ubuntuone.com/5LdkdGaRtE0TR4vX3SEiq3
i hope it helps a bit
by clepto
Thu Jul 26, 2012 10:34 pm
Forum: General
Topic: does any one know when the new love verion is coming
Replies: 19
Views: 6235

Re: does any one know when the new love verion is coming

T-Bone wrote:and making the already existing ones (i.e. love-native-android) an official part of LÖVE.
+1 for this!
by clepto
Thu Jul 26, 2012 10:26 pm
Forum: Support and Development
Topic: Understanding part of the coordinate system
Replies: 12
Views: 3951

Re: Understanding part of the coordinate system

english is not my first language either :)

we know the x coordinates, its the x size of the window...

the y now...hmm..thats diffucult :P

can i ask something? the player clicked in 500/600 so the bullet has to go there...from where does the bullet start? why you need this coordinates?
by clepto
Thu Jul 26, 2012 10:18 pm
Forum: Support and Development
Topic: Problem - attempt to concatenate local 'y' (a nil value)
Replies: 9
Views: 6635

Re: Problem - attempt to concatenate local 'y' (a nil value)

Thanks! :)

lets get back to your problem :P
by clepto
Thu Jul 26, 2012 10:14 pm
Forum: Support and Development
Topic: Understanding part of the coordinate system
Replies: 12
Views: 3951

Re: Understanding part of the coordinate system

the shooter is in 500/600 right?
the target is in the question mark?

the bullet doesn't follow the red line?

you want the coordinated of the mouse click?

sorry for not understanding :nyu:
by clepto
Thu Jul 26, 2012 10:09 pm
Forum: Support and Development
Topic: Problem - attempt to concatenate local 'y' (a nil value)
Replies: 9
Views: 6635

Re: Problem - attempt to concatenate local 'y' (a nil value)

so whats the right one? the "." ?

@petunien, so i just delete self.? how to solve the problem?
by clepto
Thu Jul 26, 2012 10:06 pm
Forum: Support and Development
Topic: Understanding part of the coordinate system
Replies: 12
Views: 3951

Re: Understanding part of the coordinate system

i don't quite understand what you want... you want to get the coordinates of the target point? (based on image) if yes you can check in the update() if the x and y coordinate is out of the window and then get the other one...example: -- suppose the window is 700x800 if x >= 700 then y = get-bullet-y...