LD37 - Final Boss (LOVE3D)

Show off your games, demos and other (playable) creations.
User avatar
Karai17
Party member
Posts: 930
Joined: Sun Sep 02, 2012 10:46 pm

LD37 - Final Boss (LOVE3D)

Post by Karai17 »

Image

Image

Image

Image

Please vote!

== CONTROLS ==

-- Mouse & Keyboard --

MOVE: WASD / arrows
CAMERA: Mouse
ATTACK: Left Click / Z / K
CHARGE HEAVY ATTACK: Hold Left Click
DODGE: Right Click / X / L
USE ITEM: Middle Click / Enter / Space
CYCLE INVENTORY: Q / E / Keypad- / Keypad+

-- Gamepad (xinput) --

MOVE: Left Stick
CAMERA: Right Stick
ATTACK: A
CHARGE HEAVY ATTACK: Hold A
DODGE: B
USE ITEM: Y
CYCLE INVENTORY: L/R Bumpers


== DESCRIPTION ==

You are the hero in an RPG. You've fought long and hard to reach end end of the dungeon. You have just one room left, one battle left. Can you defeat the FINAL BOSS?! If not... what will become of you?


== NOTES ==

Excessive Moe and Missing Sentinel Software decided to team up this time around to make a game! We had a lot of fun working together and butting heads on ideas and workflows. :) exmoe programmed the mechanics and AI and did character design and animations while MSS designed the cutscene system, the world environment, and all the voice tracks. Phew, another one bites the dust!
STI - An awesome Tiled library
LÖVE3D - A 3D library for LÖVE 0.10+

Dev Blog | GitHub | excessive ❤ moé
User avatar
evgiz
Citizen
Posts: 83
Joined: Mon Aug 29, 2016 11:05 pm
Contact:

Re: LD37 - Final Boss (LOVE3D)

Post by evgiz »

This is really cool! Great job on the game - the graphics, voice over and animations are superb for a 72h game, although the attack animation would be more smooth if if allowed you to walk at the same time.

I died the first time around. On the second try the game unfortunately crashed, there wasn't a log it just said "Final Boss stopped working...".

Again I'm impressed that you did this in LÖVE. Great job guys!

EDIT: I'd reccommend uploading a .love here on the forums, makes it a lot quicker for us to try the game.
Computer science student and part time game dev! Currently working on Depths of Limbo! :cool:

Check out the game website DepthsOfLimbo.com! :ultrahappy:
And my personal website with all my projects evgiz.net! :megagrin:
User avatar
Karai17
Party member
Posts: 930
Joined: Sun Sep 02, 2012 10:46 pm

Re: LD37 - Final Boss (LOVE3D)

Post by Karai17 »

Thanks!

It shouldn't have crashed. :( no crash.log file showed up in %APPDATA%?
STI - An awesome Tiled library
LÖVE3D - A 3D library for LÖVE 0.10+

Dev Blog | GitHub | excessive ❤ moé
User avatar
Jeeper
Party member
Posts: 611
Joined: Tue Mar 12, 2013 7:11 pm
Contact:

Re: LD37 - Final Boss (LOVE3D)

Post by Jeeper »

It has become a bit of a Ludum Dare tradition for me to check out your 3d entries using Löve3d. It feels like every time is the best game so far and this time is not an exception to that rule.

Visually it looks and feels amazing, the graphics style coherent and the models are well made.

I appreciate the fact that you have voice acting, it adds a lot of humor.

Follows the theme to a T and is overall one of the best entries that I have played in this Ludum Dare and the previous ones that I have participated in. Well done!
User avatar
Karai17
Party member
Posts: 930
Joined: Sun Sep 02, 2012 10:46 pm

Re: LD37 - Final Boss (LOVE3D)

Post by Karai17 »

Thank you! <3

When I start judging, I always make sure to seek out love games so I'll be sure to play yours too! :D
STI - An awesome Tiled library
LÖVE3D - A 3D library for LÖVE 0.10+

Dev Blog | GitHub | excessive ❤ moé
User avatar
Jeeper
Party member
Posts: 611
Joined: Tue Mar 12, 2013 7:11 pm
Contact:

Re: LD37 - Final Boss (LOVE3D)

Post by Jeeper »

Karai17 wrote:Thank you! <3

When I start judging, I always make sure to seek out love games so I'll be sure to play yours too! :D
I do the same, both because it is more comfortable being able to download a .love file, but I also feel that the quality of games among Lövers is higher than the average LD games. Sooo... yey us? :D
User avatar
pgimeno
Party member
Posts: 3544
Joined: Sun Oct 18, 2015 2:58 pm

Re: LD37 - Final Boss (LOVE3D)

Post by pgimeno »

I've tried to run it from source, but it crashed. Result:

Code: Select all

$ love10 .
No such key 'scaling-factor'
Error: [string "boot.lua"]:395: libs/lume.lua:587: attempt to concatenate local 'str' (a nil value)
stack traceback:
	[C]: in function 'error'
	[string "boot.lua"]:395: in function <[string "boot.lua"]:275>
	[C]: in function 'xpcall'
My fix was to change this in conf.lua:

Code: Select all

-- change this:
local _scale    = lume.split(f:read(), " ")
-- to this:
local _scale    = lume.split(f:read() or "1 1", " ")
For reference:

Code: Select all

$ gsettings list-keys org.gnome.desktop.interface 
menus-have-icons
cursor-blink-timeout
gtk-color-palette
gtk-timeout-repeat
automatic-mnemonics
toolkit-accessibility
cursor-theme
show-input-method-menu
clock-show-seconds
can-change-accels
cursor-blink-time
toolbar-detachable
enable-animations
menubar-detachable
toolbar-style
toolbar-icons-size
gtk-im-module
icon-theme
gtk-timeout-initial
text-scaling-factor
clock-format
buttons-have-icons
monospace-font-name
menus-have-tearoff
gtk-im-preedit-style
show-unicode-menu
cursor-blink
gtk-theme
gtk-key-theme
gtk-im-status-style
menubar-accel
cursor-size
font-name
clock-show-date
document-font-name
gtk-color-scheme
Edit: Played now. Awesome game, even though I suck at this kind of fights. Love the humour.
Last edited by pgimeno on Thu Dec 15, 2016 6:07 pm, edited 1 time in total.
User avatar
shakesoda
Citizen
Posts: 78
Joined: Thu Sep 25, 2014 11:57 am
Location: Seattle, WA
Contact:

Re: LD37 - Final Boss (LOVE3D)

Post by shakesoda »

woops, I already fixed that bug the other day, just forgot to patch the game. I'll push an update today.

did the game otherwise work for you?
excessive ❤ moé (LÖVE3D, CPML, ...). holo on IRC.
User avatar
pgimeno
Party member
Posts: 3544
Joined: Sun Oct 18, 2015 2:58 pm

Re: LD37 - Final Boss (LOVE3D)

Post by pgimeno »

Eh, sorry, my edit came late. Yes, see above :nyu:
User avatar
qubodup
Inner party member
Posts: 775
Joined: Sat Jun 21, 2008 9:21 pm
Location: Berlin, Germany
Contact:

Re: LD37 - Final Boss (LOVE3D)

Post by qubodup »


impressive!
lg.newImage("cat.png") -- made possible by lg = love.graphics
-- Don't force fullscreen (it frustrates those who want to try your game real quick) -- Develop for 1280x720 (so people can make HD videos)
Post Reply

Who is online

Users browsing this forum: No registered users and 40 guests