Search found 94 matches

by SneakySnake
Sun Jul 07, 2013 1:10 pm
Forum: Games and Creations
Topic: Lovely Mario Brothers - Still Alive
Replies: 18
Views: 26205

Re: Lovely Mario Brothers - Still Alive

bunny365 wrote:
Error

main.lua:1: module 'menu.lua' not found:
no file "main/lua.lua" in LOVE game directories.
...
This game is old. It was made for an older version of LÖVE/Lua. It won't work with 0.8.0.
by SneakySnake
Sun Jun 23, 2013 4:20 pm
Forum: Games and Creations
Topic: Mr. BallGuy 2!!!! ***V0.1.1 ALPHA***
Replies: 23
Views: 9315

Re: Mr. BallGuy 2!!!! ***V0.1.1 ALPHA***

For me, the game starts to become really slow when the score is higher than the highscore. I wondered why, so I looked into the source code. You are doing filesystem input/output every frame, which is not a good thing. function love.update(dt) ... if player.score > tonumber(player.highscore) then pl...
by SneakySnake
Tue Jun 11, 2013 5:51 pm
Forum: Games and Creations
Topic: Legends of Rathnor [WIP]
Replies: 37
Views: 33878

Re: Legend of Rathnor [WIP]

I use LuaJit, and got the same error the others are talking about, so I did a bit of debugging. The problem lies in the variadic functions. arg does not actually hold the arguments, rather the command line arguments. Why? Q: Why do I get this error: "attempt to index global 'arg' (a nil value)&...
by SneakySnake
Fri May 31, 2013 2:21 pm
Forum: Games and Creations
Topic: UBO a minimalist Qix Clone
Replies: 11
Views: 6103

Re: UBO a minimalist Qix Clone

Fun game, there is one thing that annoys me a bit: Sometimes, you can accidentally press the key opposite to the direction you are going in (for example when turning back), causing you to crash into your trail. I think the game should just ignore the key if it's opposite to the direction you are goi...