Search found 9 matches
- Mon Apr 25, 2011 10:55 am
- Forum: Support and Development
- Topic: MySQL?
- Replies: 24
- Views: 19192
Re: MySQL?
Alright, thanks.
- Sun Apr 24, 2011 8:20 pm
- Forum: Support and Development
- Topic: MySQL?
- Replies: 24
- Views: 19192
Re: MySQL?
I'm just trying LOVE out. Because, I've had nothing else to do. It's basically just a fun experiment. I'm used to other forms of lua.
- Sat Apr 23, 2011 5:51 pm
- Forum: Support and Development
- Topic: MySQL?
- Replies: 24
- Views: 19192
Re: MySQL?
It won't be a game. It'll be a managing tool for the ease of not browsing through shit. Just to make it easier. This. I'm not making a game off it.
- Sat Apr 23, 2011 5:44 pm
- Forum: Support and Development
- Topic: MySQL?
- Replies: 24
- Views: 19192
Re: MySQL?
I never mentioned RPGs .
I'm going to need it to query a server, using MySQL. To get data, update data. Etcetera.
I'm going to need it to query a server, using MySQL. To get data, update data. Etcetera.
- Thu Apr 14, 2011 4:17 pm
- Forum: Support and Development
- Topic: MySQL?
- Replies: 24
- Views: 19192
MySQL?
Any way to connect a MySQL Server to the program?
A module or something?
mysql.connect(host, user, pass, database, port) and
mysql.query(query)
Anything like that?
Thanks
A module or something?
mysql.connect(host, user, pass, database, port) and
mysql.query(query)
Anything like that?
Thanks
- Thu Apr 14, 2011 4:16 pm
- Forum: Support and Development
- Topic: Why doesn't # decrease after remove?
- Replies: 10
- Views: 5537
Re: Why doesn't # decrease after remove?
Also the # operator doesn't count them. Takes the highest key.
To get a count do this:
local i = 0
for k,v in pairs(table) do
i = i + 1;
end
To get a count do this:
local i = 0
for k,v in pairs(table) do
i = i + 1;
end
- Thu Apr 14, 2011 4:14 pm
- Forum: Support and Development
- Topic: 'love' in cmd?
- Replies: 4
- Views: 3227
Re: 'love' in cmd?
Thanks man. I owe you one .
- Wed Apr 13, 2011 2:18 pm
- Forum: Support and Development
- Topic: 'love' in cmd?
- Replies: 4
- Views: 3227
Re: 'love' in cmd?
That's alright ;). Thanks for the fast reply :). (You can use path like this:) Lets pretend you said that sentance = sentance or "" newstring = string.explode(sentance, " ") print(#newstring) Depending how long your sentance is ;). I don't know if love has the # operator. But whe...
- Wed Apr 13, 2011 1:18 pm
- Forum: Support and Development
- Topic: 'love' in cmd?
- Replies: 4
- Views: 3227
'love' in cmd?
Hey. I just installed LOVE on windows, read a part of the guides. But when I was trying to do love in my cmd, it just comes with the standard 'love wasn't recognized bla bla' thing. So.. Anyone knows what I'm doing wrong? Could be because I haven't restarted yet, if so, please tell me. I'll restart ...