Search found 5 matches

by Nal
Wed Apr 10, 2013 4:14 pm
Forum: Support and Development
Topic: [SOLVED] Connect to a mysql database online
Replies: 6
Views: 4836

Re: Connect to a mysql database online

Exactly what I needed, thanks all ;) .
by Nal
Mon Apr 08, 2013 10:34 pm
Forum: Support and Development
Topic: [SOLVED] Make an object follow another object.
Replies: 12
Views: 10758

Re: Make an object follow another object.

If it can help, I use the entity system suggested by goature : -- Tank.Position.x and Tank.Position.y are player's coordinates -- self.x and self.y are ennemy's coordinates function ent:rotate(dt) -- here I calculate the angle to draw it right self.angle = math.atan2(self.x - Tank.Position.x, Tank.P...
by Nal
Mon Apr 08, 2013 10:06 pm
Forum: Support and Development
Topic: [SOLVED] Connect to a mysql database online
Replies: 6
Views: 4836

Re: Connect to a mysql database online

Thanks for tip ! Can you tell me which way I could interact with web pages from my game ? Is there a librairy I could use or something ?
by Nal
Mon Apr 08, 2013 8:52 pm
Forum: Support and Development
Topic: [SOLVED] Connect to a mysql database online
Replies: 6
Views: 4836

Re: Connect to a mysql database online

I forgot to say I found that too, and to be honest I understand nothing about how to install it :/ .
by Nal
Mon Apr 08, 2013 4:33 pm
Forum: Support and Development
Topic: [SOLVED] Connect to a mysql database online
Replies: 6
Views: 4836

[SOLVED] Connect to a mysql database online

Hi everyone ! I am doing a project for school, the main purpose of the project is to create a game and save scores on an online database so we can access it throught our website. We have the game, website and mysql database, the problem is that I have no clue how to connect to my database from love....