A downloadable game for Windows

Download NowName your own price

Update: This game is about to get a major update, and the price may change as well.  I started working on a brand new procedural game and realized it would make for a much better version of this nameless game.  So I plan to incorporate a lot of what I have done with this game into the new one, and I hope to preserve some of the game's stylistic approach.

This is an experimental prototype.  It is a rogue-like which will be a different game every time you play.  It has no name, because each time you play it is a different game.

Right now it just creates a new title, a new map with roads, region and city names and allows the player to navigate the realm with the arrow keys and enter. 

There are monsters that will kill the character on contact, so avoid them (or fight them if you happen to be in a version of the game that allows that).  There is a king who will grant the character a quest.  And there is a special item to retrieve and bring back to the king.

What I am planning is that there will be randomly generated regions, towns, caves, dungeons etc...

Randomized Game Mechanics
Game mechanics are also randomly selected at the beginning based on a list of possible options.  Currently there are just a few, and they are outlined in the stats panel on the upper right corner of the screen.  For instance, in some games you can attack monsters, and others in which you cannot.  If you see damage as one of the stats, then that means you can attack.  Otherwise you will have to carefully avoid monsters at all costs. 

Another example is ranged attacks.  If you see attack range in the stats, that means you can attack monsters by throwing a rock at them.  Some games have an ammunition counter, while others may give you infinite ammo.  Each game is slightly different.

In this prototype, the game will save files once the game is started.  It should have a unique name for each player.  Once that game is started the same files will be loaded the next time you play, so your game will be unique.  

Restarting
There is no official way to reset the game at this time.  You need to either succeed or die in order to start a new game.   However if you look at the game folder you will several files with the extension ".sav".  If you delete all these files the program will generate a new game for you.

Updated 12 days ago
StatusPrototype
PlatformsWindows
Rating
Rated 5.0 out of 5 stars
(1 total ratings)
AuthorSchmidt Workshops
GenreRole Playing
TagsRoguelike

Download

Download NowName your own price

Click download now to get access to the following files:

No_Name.zip 4 MB

Development log

Comments

Log in with itch.io to leave a comment.

(+1)

Just played it, I loved the idea and the randomization is very high quality, I've tested resetting the game and the results were very nice to explore in terms of not being in a very similar pattern.
I liked the retro style graphic, it reminds me the commodore or nes era which is very nostalgic to me.

though the thing that was interesting but soon became bothering is line-by-line rendering which as an example I could see this in my mind like this, everything is rendered only for the first time but next time it is read from the memory and you have it rendered all at once on the screen. I think in this case not only the retro effect is still there but it won't have negative impact in the gameplay flow.

I'm looking forward to test the updates and future prototypes.

(+1)(-1)

I totally agree.  I found it a bit too slow to play after a while.  But I do like the slower generation when you open a map the first time.  It does take a little longer and the other option is for the game to freeze.  I plan to add a little "generating region" text that will appear at the bottom or something.  Thanks for the feedback!

(2 edits) (+2)

Exactly, slower loading for the first time feels exactly like commodore 64 or nes or Pentium 386 for exsmple, some tape and/or floppy drive read/write sound fx can even make it more retro/nostalgic.

text files and data structures need to get more organized and improved as it might later on tend to very slow iterations if data must be saved it's better to be saved as binary not plain text for sure, other formats like json or csv are also helpful as well, let me know if you need more information.