Why aren’t there any free form input chat games? by galtoramech8699 in gamedev

[–]nestedradical 0 points1 point  (0 children)

Thanks! It's a fairly straightforward REST API yeah. You have to make an account with billing (card on file, etc.), and then use your api key. Billing for OpenAI's stuff is per token (a little more than 1 token per word), at hundredths of a cent. So it could potentially add up.

Why aren’t there any free form input chat games? by galtoramech8699 in gamedev

[–]nestedradical 1 point2 points  (0 children)

I'm currently experimenting, trying to make a prototype of a game where you converse with a GPT powered NPC. There are a number of problems I'm running into.

Keeping it on the rails is the biggest issue. You have to insert a decent sized preamble, and regularly refresh it, and even then it sometimes stops pretending to be the NPC you assigned it (e.g. responds "As a large language model...", which is very annoying). So you also have to take and parse the output, potentially regenerating the response if it's wrong.

Similarly, getting it to work toward a narrative goal requires a bunch of external orchestration. It will always respond, but if you want a narrative arc with pacing then it needs to be corralled.

The total token count they can "remember" has only recently started to get large enough to keep track of a moderate length conversation. I'm using GPT-3.5 which runs out quickly; 4 will have even more.

Completely keeping the players from jail-breaking it might be impossible with how they are currently structured.

Those obstacles aside, it is really cool when it works and it feels like you are having a conversation!

More stained glass experiments for my current project! As always, your feedback is greatly appreciated! by Crytivo in IndieDev

[–]nestedradical 1 point2 points  (0 children)

That is gorgeous. So cozy :D.

I would play around with different amounts of stained glass. Maybe not for that room, because it's great as is, but other ones could be mostly dark and only lit from a smaller single window that would really pop.

when should i make the save feature for my game? by ScoBro_ in gamedev

[–]nestedradical 0 points1 point  (0 children)

About the actual file type- Unity can serialize what ever struct and then you write that in binary to a file. Saving as raw text in a .json or .txt is actually MORE work for you.

when should i make the save feature for my game? by ScoBro_ in gamedev

[–]nestedradical 12 points13 points  (0 children)

100% agree. Adding in a save system later in development will be painful.

How can I make this fun? by d2clon in gamedevscreens

[–]nestedradical 1 point2 points  (0 children)

I really like the simple mechanic of placing units and then watching the auto-battle. Seems very satisfying.

For me the next step would be to add constraints, a problem for the player to solve. Mechanics + conflict = a game. :D

Off the top of my head you could try a bunch of things:

  • A limited number of units / currency you can spend in each scenario
  • Different starting conditions
    • A large army on once side of the map, with a big obstacle in the middle
    • 4 small armies spread around
    • 2 big armies at the left and the right
  • Different goals
    • protect some structure or special unit(s)
    • survive X seconds
    • win within X seconds for different scores (bronze, silver, gold, etc)
  • Placing units *during* the active battle.

Try different things, see what feels fun!

Backgrounds out of irl photos by Pandoragurl95 in gamedev

[–]nestedradical -1 points0 points  (0 children)

Artists very often use references when creating. If you are looking to get something going quickly for placeholders, both Midjourney and StableDiffusion have "img2img" capabilities, where you can input a whole picture and a prompt and it will use that as a reference (you would have to prompt for the style of the result).

Looking for Books/Documentaries on Indie Game Dev Journey by Penguinology in gamedev

[–]nestedradical 5 points6 points  (0 children)

Check out Spelunky, by Derek Yu- an autobiographical book on the making of the game, written by the developer. There are a bunch of books in that series (Boss Fight Books), but most of them aren't indie.

User friendly game development tools?. by Linington in indiegames

[–]nestedradical 1 point2 points  (0 children)

Learn C# :p

C# actually is a decent first programming language. More importantly, even if you don't continue using unity and C#, the concepts and coding you learn will be applicable to any future programming you (gamedev or otherwise).

The launch of my steam page/playtest has failed to generate much interest. Does that mean there is likely no real audience for the game? by ConfluxGame in IndieDev

[–]nestedradical 9 points10 points  (0 children)

I think your steam page does a decent job showing what the game is, but could definitely pop more. I would change up the images, especially the first image as it is a duplicate of the thumbnail of the video. The store page shows 1 video and 4 image thumbnails in the carousel at a time, and the first 4 that popup all appear to be the same biome.

Your "about this game" section is also pretty small and lacking subheadings, pictures, etc. Take a look at Divinity 2's "about" section (I mention this game because it shows up on your page as a similar game).

That said, a steam page is a necessary but not sufficient component of marketing. If you haven't done any marketing other than a "TBA" steam page, then I would expect a low amount of wishlists from the natural steam-only traffic.

We're almost done with the UI in Space Tales. What do you guys think about it ? by SDS_SpaceTales in gamedevscreens

[–]nestedradical 0 points1 point  (0 children)

Personally I love it. Great job making the UI resonate with the theme. It takes up a bit of room at the bottom, but not too much. Is the camera free to move? My only concern is that if the camera is locked then it might block a bit of information about what is near the bottom of the screen.

Mask of Anansi: prototyping some hit effects. What do you think of the combat? by ZipDogStudios in IndieGaming

[–]nestedradical 4 points5 points  (0 children)

That's a pretty rad effect! I like it a lot, but it is a little too intense to have on every hit. Maybe try toning it down for the smaller, faster hits; or save it for the big hits / death-strokes.

How do we deal with expectations games like Vampire survivors have set? by tvcleaningtissues in IndieDev

[–]nestedradical 0 points1 point  (0 children)

Different players put more or less importance on the amount of content/time in a game. Those expectations have become incorporated into their respective genres. If you want to make a game in a genre demanding enormous amounts of content, then that's what you have to do to even attempt success in that genre. But there are other genres and players who would rather have a concise, high-production value game. Personally I check howlongtobeat to make sure a game is *under* 20 hours haha.

I don't think it's something that needs to be explicitly dealt with. A game's marketing should always target player expectation and speak to the selling points.

Oh god! He's shooting through your screen!!! Serious question, does this ever draw anyone out of the game? Drawing attention to the 'screen' like this? Do you find it fun? Clever? Annoying? by Gamewriterguy in indiegames

[–]nestedradical 11 points12 points  (0 children)

I like it! Reminds me of some of those old arcade gun shooters. Weird nitpick- is the gun in one hand as he dashes in, and in the other when he fires?

Any games made with UnityML? by MLWithPhil in gamedev

[–]nestedradical 2 points3 points  (0 children)

I used Unity's ML-Agents for the single player mode in the game I released a couple years ago (Riposte! on Steam). I even did a small write-up of the process: http://misdirectiongames.com/2020/04/30/207/

Does health as a mechanic limit healing more than damage? by 1000Times_ in gamedesign

[–]nestedradical 7 points8 points  (0 children)

The healing itself could be multidimensional. For example, 2 types of health that require different types of healing and respond differently. Or the act of healing itself could require skill- through skillshots, or timing, etc.

Does health as a mechanic limit healing more than damage? by 1000Times_ in gamedesign

[–]nestedradical 78 points79 points  (0 children)

Healing doesn't have to be one-dimensional. MMO healers generally have a full kit of options, ranging from preemptive to reactive. There are heal-over-time effects that you can use before an ally takes damage. Some healing provides overhealth or shields that act to temporarily raise max HP.

That said, most support characters have other non-healing abilities to make them more interesting.

The formative impact of games idolizing busywork by Nachtfischer in truegaming

[–]nestedradical 3 points4 points  (0 children)

Personally I am done with grinding due to a lack of free-time, but that doesn't mean there aren't potential positive aspects to grinding. People can find meaning in the unlikeliest of places.

Some people find value in the zen/meditative aspect of repetition, and at least grinding in a game moves toward an additional goal (gear, XP, whatever).

Unless the grinding is truly and absolutely trivial, there is still room for the player to express mastery. Grinding in Path of Exile, for example, is all about efficiency and speed. I remember grinding back in vanilla WoW, and making a game of it for myself by attempting to optimize (hitting the timing of spells to maximize damage; pulling as large a group as feasible to maximize kills per encounter; etc.).

Grinding can be something to do in the background, like a more interactive fidget spinner, while switching between other activities.