Search found 730 matches

by bobbyjones
Sun Apr 19, 2015 5:47 pm
Forum: Games and Creations
Topic: quadrant - out now on Steam/Humble/itch.io!
Replies: 71
Views: 38899

Re: quadrant - greenlit!

Congrats this is really good for the love community lol. We should have a greenlit section of the wiki lol. But it would be cool if you post on the blog about your adeventure making this game.
by bobbyjones
Sun Apr 12, 2015 8:33 pm
Forum: Games and Creations
Topic: [MMORPG] Forest Tale v0.3.1 - "That aint no tea leaf"
Replies: 51
Views: 34354

Re: Forest Tale - "Minecraft but like Runescape?????"

I think you need to add enemies and maybe money and crafting already. A trade interface would be nice too. And if you like i can look through your code and try to profile and optimize it.
by bobbyjones
Sun Apr 12, 2015 6:25 am
Forum: Games and Creations
Topic: [MMORPG] Forest Tale v0.3.1 - "That aint no tea leaf"
Replies: 51
Views: 34354

Re: Forest Tale - "Minecraft but like Runescape?????"

Experienced another crash hope it didn't crash the server as well :(
https://love2d.org/imgmirrur/7LKDo9T.png
by bobbyjones
Sun Apr 12, 2015 5:49 am
Forum: General
Topic: A Lövely Call to Action.
Replies: 17
Views: 9268

Re: A Lövely Call to Action.

A package manager can be made in lua easily I would think but that seems overkill to me but maybe we can make one anyway?
by bobbyjones
Sun Apr 12, 2015 4:30 am
Forum: Libraries and Tools
Topic: Temporal Point Interpolation
Replies: 3
Views: 2335

Re: Temporal Point Interpolation

Very cool looks like something that can be used for lightning in a stormy sky. I haven't looked at the code. I'm not very good at optimization but I'll take a look anyway in a little bit.
by bobbyjones
Sun Apr 12, 2015 3:28 am
Forum: General
Topic: A Lövely Call to Action.
Replies: 17
Views: 9268

Re: A Lövely Call to Action.

Not a package manager even though that would be pretty cool now that you mention it. Just a website for libs. Like a central hosting place that looks nice and is easier to maintain. Then the community can assign like two or three admins for the site. They will make sure everything is working and mai...
by bobbyjones
Sat Apr 11, 2015 6:48 pm
Forum: General
Topic: [Community Project] LÖVE for Newbies
Replies: 1
Views: 864

Re: [Community Project] LÖVE for Newbies

I think i might try to type something up tonight.
by bobbyjones
Sat Apr 11, 2015 6:46 pm
Forum: General
Topic: A Lövely Call to Action.
Replies: 17
Views: 9268

Re: A Lövely Call to Action.

I think it would be cool to make a site for love2d libraries and have it where there is a lot of cool features. Like the love version it was made for or other cool fun things. lol. Make it more user friendly. Unless we are allowed to change how the wiki works. Is there a repo for the wiki? P.S I can...
by bobbyjones
Sat Apr 11, 2015 3:16 am
Forum: Support and Development
Topic: Question about indexing tables
Replies: 7
Views: 2848

Re: Question about indexing tables

Yay, I was just starting to type. lol
by bobbyjones
Sat Apr 11, 2015 2:50 am
Forum: Support and Development
Topic: Question about indexing tables
Replies: 7
Views: 2848

Re: Question about indexing tables

You can use pairs(t) it runs through every index but doesn't guarantee an order. for key, value in pairs(blocks) do -- do stuff with the stuff from blocks end If you need a better example just ask. Also I recommend reading up on your for loops. There are two kinds the generic and numeric for. http:/...