Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

OK, next requests, and these get increasingly difficult to program, I'm guessing, but I'm a dreamer:

  • "Roll twice, combining" where it shows 2 results (or possibly more, if it keeps getting that one, although if someone tried to break it with an infinite loop, it would need something to prevent that or a warning in the documentation that time loops are bad)
  • On a related note, and this might relate to the previous request on the backend: let the text of a math entry be another table, so you could click to get 1d12 [turtle doves, golden rings, lords-a-leaping, etc.]  (My disability traits tables need this to make them a 1-click result list.)
  • For my Fantasy Magical Feature Generator, I'd like to be able to give the results parameters, so you choose urban or rural and enter the population, and it calculates (rounding) the number of features. (Or I you just give it the number of features & do the math myself — easier), and it generates the list with a single click.
    • Table chooser, like a popup or bullets. Maybe this can be done with fancy styling or javascript. I'm thinking about creating an NPC generator. Choose a race from the list, and it generates a name.
  • Allow html in the results. The traits table above uses wiki code, and I'd like to format the results with that code to make the result clickable. (Or a class choice randomly generates starting equipment, or even an img src)

Combining all these features could allow for 1-click character generation, spell lists, etc. I know that's beyond the scope of what you had in mind for this, but it would drastically expand its usefulness.

These are all great ideas and feature suggestions!

  1. For 'roll twice and combine' - that would be tricky to implement programmatically, but I really like the idea of it and will look into how I can make that work. I've added an issue on GitHub to work on this.
  2. It sounds like your second request can already be solved if you create another table that has various math options, then you set an item in your second table to pull from that one. Perhaps I'm not understanding your needs there fully.
  3. For the fantasy magical feature generator, you could create separate tables for each thing, then a 'master' table that pulls from each of those. I don't think you could do that with one-click though - it would likely need to be at least two separate roll tables. I would need to think on that some more to see what would make the most sense.
  4. You can have a tabbed interface for choosing tables perhaps - that's what I did for the Kiwi Acres toll tables. The tabbed UI comes from a different plugin.
  5. I can certainly allow HTML in the results - for security and formatting reasons I would likely limit it to certain tags, so I'm thinking it would be links, images, and maybe one or two other things. I've created a GitHub issue for this too.

This all sounds great and would be neat enhancements - I'm not sure how I could build all of it, but I'm sure I can find a way! Thanks for your feedback and for sending in these requests.