Search found 9 matches
- Fri May 01, 2009 8:09 pm
- Forum: Games and Creations
- Topic: Elements BETA(my first game in lua)
- Replies: 13
- Views: 13462
Re: Elements BETA(my first game in lua)
I loved the game, but the sound effect for hitting the roof is absolutely god awful.
- Mon Sep 01, 2008 1:00 am
- Forum: Support and Development
- Topic: I am new, and would like to know some things...
- Replies: 6
- Views: 5164
Re: I am new, and would like to know some things...
I'd start small and work my way up to that, when learning Lua it's important to make small "demos" as you learn.keyspinner wrote:Thank you.
When I say extensive adventure, I mean very large in gameplay, where it would take at least 10+ hours to beat or something.
- Tue Aug 19, 2008 2:07 am
- Forum: Support and Development
- Topic: Please release the new version.
- Replies: 14
- Views: 11192
Re: Please release the new version.
It's not released at the moment, but here is the Lua directory from it so you can get an example of what it is like so far. http://kudomiku.com/dump/lua/sauce.rar Please read my post before attempting to make a come back. I said you had never made a 2D Lua based game engine. all you told me was you...
- Thu Aug 14, 2008 2:55 am
- Forum: Support and Development
- Topic: Please release the new version.
- Replies: 14
- Views: 11192
Re: Please release the new version.
Someone needs to learn some manners. Have you ever coded a 2D LUA basic Graphic game engine? I'm betting you haven't, because it's fucking hard work, and I'd assume Mike and rude have lives of their own on top of that. Sit down, shut up, and wait. And say "thank you" when you get it. Serio...
- Wed Aug 06, 2008 1:58 am
- Forum: Support and Development
- Topic: LOVE:Snake
- Replies: 15
- Views: 16320
Re: LOVE:Snake
rude wrote:Here's a minimal snake game.
15 minutes, 90 lines of code.
thanks a ton rude, helps me out a ton in understanding Lua.
- Tue Aug 05, 2008 3:46 pm
- Forum: Support and Development
- Topic: LOVE:Snake
- Replies: 15
- Views: 16320
Re: LOVE:Snake
Thank you for the help, but I have no idea where to start with this. I'm very new to LOVE and Lua in general. I recommend to take one of the tutorials from the homepage and look at the code, then screw with it a bit. If you need help you need to more clearly state what you want ("I want to cre...
- Mon Aug 04, 2008 5:19 pm
- Forum: Support and Development
- Topic: LOVE:Snake
- Replies: 15
- Views: 16320
Re: LOVE:Snake
Well, how about creating an array of arrays, which will be the map matrix, from which you will draw the tile-based map. The map can contain empty, snake or fruit fields. Then create an array of arrays, which will contain the coordinates of each snake pieces and be the length of the snake (1+fruits ...
- Sun Aug 03, 2008 7:57 pm
- Forum: Support and Development
- Topic: LOVE:Snake
- Replies: 15
- Views: 16320
Re: LOVE:Snake
That's a tall order, honestly. Before I go through a lot of effort, how much previous programming experience do you have? Am I teaching you things from the ground up or are you already familiar with Cartesian coordinates and array variables? It's pretty important to what I wind up putting here. Gro...
- Fri Aug 01, 2008 11:09 pm
- Forum: Support and Development
- Topic: LOVE:Snake
- Replies: 15
- Views: 16320
LOVE:Snake
Hey guys, I'm very new to Lua, and just started experimenting with LOVE today. I've spend a while trying to brain storm how to do a "Snake" game in LOVE, but I have come up stumped. My idea is that I make an animation with the snake growing as it gets in contact with the "food", ...