Log In  

Cart #dungeocrawl-4 | 2019-01-22 | Code ▽ | Embed ▽ | No License
97

Dungeo!

"Dungeo" is an homage to the old RPG "Bard's Tale". The lich queen is threatening the lands, and it's up to four brave souls - a soldier, a rogue, a priest, and a mage - to venture into her domain and put an end to her machinations!

Menus can be navigated with the arrow keys and the action buttons (z/x).

Move around in the maze using the arrow keys.

In the town, there are several services available:

  • The blacksmith can upgrade your equipment for a price.
  • You can rest at the inn to restore your health points and magic points.
  • The temple can cure status ailments like being poisoned. They can also resurrect dead characters.
  • At the tavern, you can reminisce and reflect on your adventures, perhaps allowing you to improve your skills. This also saves your game.

Once in the dungeon, you can wander around and fight things. You gain experience fighting creatures, and when you get enough experience you can level up at the tavern. When you gain a level, you can increase one of your attributes:

  • Muscle - Do more damage in battle
  • Smarts - Spells do more damage
  • Agility - Better able to defend
  • Grit - More hit points

Your goal is to make it down to the bottom level and kill the lich queen. If you do, you win. But be warned - she is very tough! Make sure you level up a LOT before you take her on.


Version history
1.4 - Fixed issue with displaying armor and weapon in hero stats before upgrades.
1.3 - Fixed error in title screen. New end game sequences.
1.2 - Rewritten base code to make more room for new spells. Bug fixes. New title screen with some instructions.
1.1 - Improved performance on map drawing. Can now drink from fountains. New spells. New UI features.
1.0 - Initial release

P#60841 2019-01-15 08:17 ( Edited 2019-01-22 07:21)

Nice work!

P#60847 2019-01-15 11:37
1

This is awesome!

P#60894 2019-01-16 15:40

i don't understand how to play this.

P#60904 2019-01-16 20:47

@nonymousFog - Most of the game is played by selecting options from the menus that appear on the right. Use the up/down arrows to select options and Z / X to confirm selections / cancel.

Once you get into the dungeon, use the left and right arrow keys to turn left and right, and use the up and down keys to move forwards and back.

P#60911 2019-01-16 21:15

UMMM...
OK...
I got playing...
Then tried to drink from a fountain in the dungeon...
And then it says this, and I don't know what to do:

RUNTIME ERROR LINE 797 TAB 0
IF (HERO.CLASS == 1) THEN RETURN
0 END
ATTEMPT TO INDEX LOCAL 'HERO' (A
NIL VALUE)
IN MAXMP LINE 797 (TAB 0)
IN DRINK LINE 660 (TAB 0)
IN ? LINE 615 (TAB 0)
IN UPDATE LINE 1621 (TAB 0)
IN _UPDATE LINE 82 (TAB 0)
AT LINE 0 (TAB 0)
>

P#60923 2019-01-17 14:41
1

Looks like you found a bug! I've uploaded a patch which will hopefully address the issue. (Also adds some new features.)

P#60925 2019-01-17 14:59 ( Edited 2019-01-17 15:44)

I like your game.
But when all my guys died, there was only one option, and I couldn't choose it. Is that supposed to happen?

And also on the start screen, it says "X TO CHOOSE" and "Z TO CANCEL", when in reality, it is 'X' to cancel and 'Z' to choose.

Aaaanndd I can't run away.

P#60933 2019-01-17 18:42 ( Edited 2019-01-17 18:58)

@nonymousFog:

> But when all my guys died, there was only one option, and I couldn't choose it. Is that supposed to happen?

Yeah, that's the end game sequence. I'll fix that in the next release so it doesn't show an option.

Good catch on the X/Z mixup! Next release will fix that.

Regarding running away: Running away is not guaranteed. Some monsters are easier to run away from than others. The "FleetFoot" priest spell can help if there's a combat that's going the wrong way and you need to escape - it drastically increases your chances to escape.

Thanks for playing!

P#60936 2019-01-17 19:58
1

Okay, I've uploaded version 1.3 which includes some end game sequences and fixes the instructions error that nonymousFog caught. Happy crawling!

P#60947 2019-01-18 01:50

great games,
may there be a bug when looking at his states without buying equipment before.
to fix this problem, I propose to replace the following line:
ligne 233: printc( hero.weapon, 96, y, 6 )

ligne 240: printc( hero.armor, 96, y, 6 )

ligne 248: printc( hero.shieldname, 96, y, 6 )

by its:
ligne 233: printc("no weapon",96,y,6)

ligne 240: printc("no armor",96,y,6)

ligne 248: printc("no shield",96,y,6)

also, to win tokens, you can remove
the "()" of the "if" multi line or,
the "then end" of the "if" mono line.

example:

 if (...) then
  ...
 else
  ...
 end
--becomes
 if ... then
  ...
 else
  ...
 end

and

 if (...) then ... end
--becomes
 if(...)...

you will easily gain several hundred token

(sorry for my approximate english)

P#60957 2019-01-18 11:12 ( Edited 2019-01-18 11:25)

Nice tips! I could definitely use the tokens.

The idea behind the weapons and armor stuff was that these heroes already had the equipment, it's just that the blacksmith upgrades them. Not super realistic, granted, but it saves the tokens it would require to have actual inventory management and stuff, and still approximates the base activity of these games where you continually replace your old, busted stuff with new, shiny stuff.

P#60959 2019-01-18 14:38

ok, I understand better,
suddenly the bug comes from the fact that you display the lvl of the object instead of the name.
fast code correction :

--line 232:
if (hero.weapon == 0) then
--printc(  hero.weapon, 96, y, 6 )
printc(  hero.weaponNAME, 96, y, 6 )
else
printc( "+" .. hero.weapon .. " " .. hero.weaponname, 96, y, 6 )
end
y += 6

if (hero.armor == 0) then
--printc(  hero.armor, 96, y, 6 )
printc(  hero.armoNAME, 96, y, 6 )
else
printc( "+" .. hero.armor .. " " .. hero.armorname, 96, y, 6 )
end
y += 6

if (hero.shieldname ~= "none") then
--if (hero.shieldNAME == 0) then
if (hero.shield == 0) then
printc(  hero.shieldname, 96, y, 6 )
else
printc( "+" .. hero.shield .. " " .. hero.shieldname, 96, y, 6 )
end
end

I suggest you change the display "+3 shield" by "shield lvl.3", it seems more understandable and it is lighter.

same thing in compact version and use "lvl." :

--line 232:
  printc(hero.weaponname..(hero.weapon==0 and "" or " lvl."..hero.weapon),96,y,6)
  printc(hero.armorname..(hero.armor==0 and "" or " lvl."..hero.armor),96,y+6,6)
  if hero.shieldname~="none" then
   printc(hero.shieldname..(hero.shield==0 and "" or " lvl."..hero.shield),96,y+12,6)
  end

the use of "(... and ... or ...)" works as a kind of "if",
example :

 if y < x then x=5+y-z else x=5+10-z end
--is the same as
 x=5+(y < x and y or 10)-z
P#60976 2019-01-18 22:55

Ah, got it. I understand the bug now. I'll try to get that fixed soon!

P#60979 2019-01-19 00:03

Okay, it should be fixed now.

P#61084 2019-01-22 07:22

For some reason, when they all die and I've never saved and I hit load game, I start with 15 gold rather than 20. Is there a reason for this?

P#61093 2019-01-22 15:09

@nonymousFog - I just tried it, and was unable to reproduce this issue.

It shouldn't offer to let you load a game if you've never saved the game, so, more likely, you have a saved game where you have $15, and you loaded it.

Probably what happened was that you started a game with $20 and went into the tavern, which costs $5. It took the $5, leaving you with $15, and saved the game, which made the "Load Game" available in the main menu.

P#61095 2019-01-22 15:31

the thing is, I had only went into the blacksmith. I'm thinking that it's something in the game's code having to do with the tavern.

(idea: try saving as soon as you start, then die, start a new game, don't save, die and load game. I have a theory that it isn't deleting the last saved game when you hit new game)

P#61103 2019-01-22 18:45 ( Edited 2019-01-22 18:46)

Oh, yeah, it doesn't actually go in and actively delete the last saved game you had when you select "New Game". It only overwrites your old game when you explicitly save your current game by going to the tavern.

In other words, when you select "Load Game", you get the last "snapshot" of a game you took by going into the tavern.

That way, if you accidentally select "New Game" when you have a game saved, you can still get it back as long as you don't go to the tavern and save over it. (This saved me more than once during development!)

P#61105 2019-01-22 18:55
1

Great game- I loved the original bard's tale so I had to give this a go- nice Pico 8 version! It took some hand mapping to figure it all out as I got stuck early, but with some mapping I managed to finish it.

I know space is super limited on Pico-8 so you probably had to make some hard sacrifices to fit the game in- the main thing I missed from Bard's tale style play was having multiple types of enemies attack in groups and spells that hit groups of monsters.

For those who don't want to map themselves, here are the maps. I've put them hidden for those who don't want spoilers! And Nephilim feel free to post these maps in your main game post if you think they make the game more accessible for those that want them (or remove them if you're a purist- ha!)

Key:

# = Wall
D = Door
S = Secret Passage
^ = stairs up
* = stairs down
P = Poison Fountain
F = Fountain
C = Chest
L = Lich/Final boss
. = empty square/space

All maps are 16x16 grid. You start top left of level 1.

Level 1
################
#^.............#
#...##########.#
#...D........#.#
#.##########.#.#
#.##*.##...#.#.#
#.##..##.F...#.#
#.###S##...#.#.#
#.#C..######.#.#
#.#C.*#....#.#.#
#.##########D#.#
#.F##F....F#...#
#.#.#*.....#*..#
#.#####DD#####.#
#..............#
################

Level 2
################
..##P##...#...#.
F.##.##.F.#.F.#.
..##.##...#...#.
.##...##.###.#.#
D##.^.##D###D###
..D...D.........
#.##############
#.###......D...#
#.S.#^######.F.#
#.#*###..#.D...#
#D########.#####
#...#^..##.#^..#
#.F.###.##.###.#
#...##P........#
################

Level 3
################
#.............##
#D########F##.##
#...###F#####.##
#...S....*#.#.##
#...###F###.#.##
#...#.###.###D##
#D#D#######....#
#.#...D........#
#.###D#####...F#
#.#^......###D##
#D###D###.#....#
#...#...#.D....#
#...D...#####D##
#F..#...D.....##
################

Level 4
################
#....###.......#
#....#F#.......#
#....#.####....#
#....#...^#....#
#....#.####....#
#....#L#.......#
#....###.......#
#..............#
#..............#
#..............#
#..............#
#..............#
#..............#
#..............#
################

P#61172 2019-01-24 16:38 ( Edited 2019-01-24 16:41)

Glad you enjoy the game! Yeah, multiple enemy types might be a big ask for a Pico-8 game of this style. But some other posters did give me some ideas for reducing token count, so maybe when I get around to cleaning up the codebase I will have room!

P#61179 2019-01-24 19:31

OOooh!!! I like this game a lot!!!! Very detailed and loved the graphics!!! :)

P#61307 2019-01-28 18:58

Nice. Glad you enjoyed it!

P#61309 2019-01-28 20:50

Hey, love this game.I'm waiting for Bard's Tale 3 remastered version to drop and this whets my chops. Every time I try to go fullscreen I can't input anything. Is there a keyboard short cut that works? Thanks.

P#61999 2019-02-17 21:19

@davicide - I am able to play the game fullscreen, so it seems to work. You do have to click on the play area to give it focus, but once you do, it should work fine.

P#62160 2019-02-22 15:08

I think it's a web page problem. When I go full screen can't play or leave a comment. The keyboard just stops working. Weird.

P#62187 2019-02-23 18:59

Interesting game i liked how hard it was, but were is the ladder for floor 3?, I have not found it yet.

P#63554 2019-04-15 23:02 ( Edited 2019-04-15 23:21)

Be sure to nudge the walls to see if there's a secret door. (Mapping a level can help find suspicious places.)

P#63580 2019-04-16 18:14

Man ... the fountains on the second floor are like every 3/4 fountains are poisned. That is frustrating.

P#63710 2019-04-20 00:52

If someone got other results please tell me.

P#63711 2019-04-20 00:58

Good basis for a rogue game but man, do I need to sleep 10 days to do 50m in the dungeon?
(and have the same chance of random encounter even after entering 10 times the same dungeon???)

This is very frustrating (and I do like fair hard games).

P#63726 2019-04-20 07:55

I liked this game a lot. What a great grind. Beat the Lich with characters around level 15. And only cheated a little. I checked the source for map after getting to dungeon level 3. Had I known there was only one level left I might not have.

I especially liked the looping map design. It was nicely confusing and made the levels seem bigger than they were. I also liked how the maps were laid out in the source.

Some things that I noticed:

  • Stun trivialized end boss, though without it the fight would be very hard.
  • Didn't figure out what fleetfoot spell does before checked it in the source
  • Grit seemed like a bad choice when leveling. I think it only adds one hp.
  • I'm not sure poison does anything. Maybe I'm wrong, but it seemed that the effect intended for poison is applied when the character is turned to stone.
    if (hero.condition == 2) then return { "stone", 7 } end

    and

    if (hero.condition == 2 and hero.hp > 0) then
    if (d(100) < 10) then
    hero.hp = max( 1, hero.hp - 1 )
  • fountain healing effect revives dead players (actually was fine by me since...)
  • temple prices (especially for reviving) were too high considering they're only needed early on in the game
P#68908 2019-10-15 22:08
1

I actually have this playing in the background - for days now. Good crawler worthy of dedicated playing.

My primary player is level 16, Muscle 16, one for all other attributes, +4 sword, +4 chain, +5 shield.

I'm sticking to the top level of the dungeon a bit before I go down the stairs. Don't want to jeopardize a good run. Adding my STAR for you now, nephilim, since it wasn't there before.

P#68910 2019-10-15 22:13 ( Edited 2019-10-18 18:54)

Really nice game! I think this low resolution really works well with a first-person dungeon crawler. Lots left to the imagination :)

P#68927 2019-10-16 08:33

Glad you all are enjoying the game!

I probably need to get in there and make some fixes and updates, but it's not going to happen before Halloween, because we're busy for that holiday at the moment.

P#69010 2019-10-18 13:46

I can't find out how to get past the second layer, any help?

P#73052 2020-02-13 06:14

@yeetus: There are secret doors in the game. Try nudging the walls and see if you can find hidden areas.

P#73065 2020-02-13 14:45

Great game love the gameplay reminds me of bards tale or wicked wizards 10/10 love these types of games =]

P#87660 2021-02-15 05:15

Lovely, what's going to happen for this game in the future?

P#104345 2022-01-05 15:41
1

Not much. I was working on a Dungeo 2 for a while, but in Love2D to remove the low token restriction. It's not being actively worked on at the moment, however.

P#104347 2022-01-05 16:06
1

This captures the feeling of those old classics-- impressive within the space limitations. I ran around the dungeon for an hour or so with some trips back to town and got up to about level 10 characters, still not powerful enough to survive dungeon Lvl 3 for long... I'll come back and play more later.

I also appreciate being able to just go directly to any of the 'town' locations without having to remember and walk around the town map every time (whether that was done intentionally for more streamlined gameplay, or just to save tokens :)

P#114317 2022-07-14 20:58

Hi @icegoat:

A good portion of the "hours of gameplay" involved in early games was usually doing something mundane like walking to and from areas where there were no encounters or activities.

Random encounters alone in games can greatly add to the "gameplay" time it takes to win the game.

Look to Legend of Dragoon for the PS1 to see combat stretched out to its absolute maximum and worst length of time. Seriously count the seconds just before the screen fizzles and to when the game returns back to the mapper, all for just one random encounter !

https://youtu.be/i9CklM8Jats?t=6157

P#114318 2022-07-14 21:10 ( Edited 2022-07-14 21:14)

@icegoat – Wow, high praise from the creator of PicoHaven! Glad you like the game.

P#114319 2022-07-14 21:15

I went into the tavern multiple times to save but it's not showing my saved game.

P#141005 2024-02-01 22:07

I just went in and tried it, and it seemed to be working for me. Are you perhaps blocking cookies or have other security features on to prevent data saving in the browser?

P#141006 2024-02-01 23:22

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-03-28 16:55:08 | 0.076s | Q:81