HumanTECH (Ludum Dare 24 entry)

Show off your games, demos and other (playable) creations.
Post Reply
minism
Prole
Posts: 20
Joined: Tue Nov 01, 2011 5:32 am

HumanTECH (Ludum Dare 24 entry)

Post by minism »

Hey guys,

My game HumanTECH got 7th place in ludum dare 24!

Image
Image

Download for win32, win64, osx, LOVE file
Github

It's an action-adventure exploration based game with a sort-of SciFi setting. Here's the original ludum dare post

Controls: WASD for movement, IJKL for attack, tab to switch weapons.

The audio bug on OSX can get ugly with this game, after about 20 minutes I notice some lag or missing sound/music altogether. I haven't seen it crash the game outright, though. Thanks to some peeps in IRC like josefnpat for helping testing that stuff.

I'm still working my way through all the other LOVE games for LD24
User avatar
qaisjp
Party member
Posts: 490
Joined: Tue Sep 04, 2012 10:49 am
Location: United Kingdom
Contact:

Re: HumanTECH (Ludum Dare 24 entry)

Post by qaisjp »

looks nice. congratulations.
Lua is not an acronym.
coffee
Party member
Posts: 1206
Joined: Wed Nov 02, 2011 9:07 pm

Re: HumanTECH (Ludum Dare 24 entry)

Post by coffee »

minism wrote:My game HumanTECH got 7th place in ludum dare 24!
Congratulations minism but that is old news! I announced it first! ;)
coffee wrote:]#7 HumanTECH - minism! http://www.ludumdare.com/compo/ludum-da ... w&uid=7032
viewtopic.php?f=5&t=10645&start=40#p65790
minism wrote:The audio bug on OSX can get ugly with this game, after about 20 minutes I notice some lag or missing sound/music altogether. I haven't seen it crash the game outright, though. Thanks to some peeps in IRC like josefnpat for helping testing that stuff.
Again the osx audio bugs. That's something that I, aronwizard and other people notice in OSX. That unofficial audio bugs exist and are usually hard to explain or trace.
User avatar
Roland_Yonaba
Inner party member
Posts: 1563
Joined: Tue Jun 21, 2011 6:08 pm
Location: Ouagadougou (Burkina Faso)
Contact:

Re: HumanTECH (Ludum Dare 24 entry)

Post by Roland_Yonaba »

Congrats, i tested the game while you were working on it (through the remote git repository).
That was awesome, I loved the graphics.
Elena5
Prole
Posts: 21
Joined: Sat Jun 18, 2011 6:53 pm

Re: HumanTECH (Ludum Dare 24 entry)

Post by Elena5 »

This is looking very good, but I cannot launch your .love.

Code: Select all

$ love humantech.love 
Error: leaf/utils.lua:47: bad argument #1 to 'pairs' (table expected, got string)
stack traceback:
	[C]: in function 'pairs'
	leaf/utils.lua:47: in function 'extend'
	enemy.lua:9: in function 'init'
	player.lua:11: in function 'init'
	leaf/object.lua:31: in function 'Player'
	game.lua:21: in function 'setup'
	main.lua:66: in function 'load'
	[string "boot.lua"]:378: in function <[string "boot.lua"]:373>
	[C]: in function 'xpcall'
jonyzz
Prole
Posts: 48
Joined: Sun Sep 02, 2012 9:35 pm

Re: HumanTECH (Ludum Dare 24 entry)

Post by jonyzz »

I've just finished the game and it was fun. I like the idea and the oppressive atmosphere. Good work ^^ .

I also had the same problem as Elena5, here is a patch to fix it:

Code: Select all

--- leaf/utils.lua	2012-09-22 19:35:49.991044903 +0200
+++ leaf/utils.lua   2012-09-22 19:38:40.603453948 +0200
@@ -43,7 +43,7 @@
 -- Like underscore extend but doesnt extend in place
 function leaf.extend(...)
     local result = {}
-    for i, table in ipairs(arg) do
+    for i, table in ipairs({...}) do
         for k, v in pairs(table) do
             result[k] = v
         end
minism
Prole
Posts: 20
Joined: Tue Nov 01, 2011 5:32 am

Re: HumanTECH (Ludum Dare 24 entry)

Post by minism »

Thanks for the feedback guys.

Interesting bug; what OS + LOVE version?
jonyzz
Prole
Posts: 48
Joined: Sun Sep 02, 2012 9:35 pm

Re: HumanTECH (Ludum Dare 24 entry)

Post by jonyzz »

minism wrote:Interesting bug; what OS + LOVE version?
Linux, LOVE 0.8
Post Reply

Who is online

Users browsing this forum: Bing [Bot] and 79 guests