
game design - How can I make text-based combat more engaging?
Aug 11, 2016 · I want to make the combat enjoyable yet given the limitations of a text based game, but I don't know how to accomplish this. If anyone knows how to make this system more engaging/fun, it …
Python 3: How can I make my Text-based game windowed?
May 15, 2018 · I've been making a text-based RPG in Python, and I'm a bit lost in transitioning from a console to a window. I'm not trying to do anything fancy (I think). I'd like my text to display normally, as...
How to make a text-based game with timer systems
Aug 4, 2022 · Most text-based video games have a very fixed-function, procedural design, but such a loop will make it friendlier and easier to data-oriented designs instead. This will turn your game into a …
How to add skill expression to a text based turn based game?
Nov 12, 2024 · Using this (amazingly crude) subdivision, I'm thinking you are looking for a way to add Parkour to your text-based game. You can make Text based games be realtime; things can happen …
How to create a text-based game?
3 Short answer Asking how to make a text-based game is essentially asking how to program. Learn to program. Long version Learn programming Writing text-based games is a good way to learn. This is …
Movement in a text-based game using room class (Python)
Jul 7, 2017 · 0 I'm a newbie to game design and coding in general, and I've started working on a text-based adventure game project (like Zork) to work on my narrative writing skills while teaching myself …
Help Me Make Sense of the Canvas and Text-Based Non-UI Objects in …
May 16, 2021 · Now, I have read about and actually tried the Text Mesh Pro framework, but honestly I don't need that bloated functionality; a simple text would be perfectly fine for my needs, if only I could …
Implementing building structures in a text-based game?
Nov 1, 2023 · The big advantage of text-based games is that most of the gameplay happens in the player's head. That means you can often abstract complex game mechanics to a point where they …
How can I implement a real-time game loop in a text-based game?
You can make use of these to create a real-time text-based game loop (there are also useful functions in the API for drawing large blocks of characters at a time, which is helpful for creating smooth …
How can I represent rooms and associated actions and inventory in a ...
I am just getting started learning to make games. I have created a simple text-based game where the user can walk around between rooms and interact with the objects in each room.