RPG

4501 readers
1 users here now

Discussion of table top roleplaying games.

founded 5 years ago
MODERATORS
201
202
 
 

#ttrpg

203
204
 
 

As in turns out in 2022, quite a few of the texts mentioned have made their way into the public domain, and are available as freely downloadable ebooks.

205
 
 

cross-posted from: https://lemmy.ml/post/384969

Just started playing around with this for Solo RPGs and I'm digging it. I paid but there is a free version to try.

206
 
 

Given the price of art, I've been playing a whole heck of a lot with Machine Learning (ML) images (along with ever other indie RPG designer out there), and the results are bad. This one is Midjourney, which seems to be one of the better generators.

If the problem is just my lack of skill, that still sounds like a problem. If I have to hire a professional, I'd rather just hire an artist.

I'm writing a campaign about Vampires in Belgrade (Hungary) in the year 1230.

Starting with something without too many parts, a young Tzimisce vampire in the story (well, he was embraced young), has a ghouled raven he speaks with.

dark ages boy speaks to raven in the moonlit rain

Tzimisce and raven

Oh dear... it doesn't know that human boys are bigger than ravens. So it's beatuful, and enchanting, but doesn't convey information, and the kid looks like 'the little prince', not like a sinister flesh-crafting vampire.

Making some variations, I finally got here:

It's better, but the raven also looks like a humming-bird, and the moon looks like someone spilled it. It really conveys nothing more than 'boy and raven', so it's not about to enhance the passages - and RPGs really do need good images, because every one conveys a boat-load of strange ideas.

Next up, what about a that scene where a vampire-hunter finally tracks down the coterie's lair? He finds them by sunset and has to flee before they wake up, but he'll be back tomorrow to kill the lot. He rides a horse, and has an ovcharka (bear-hunting Russian dog) by his side. The coterie will find signs of his passing, such as footprints.

After some bad images, I finally left the dog out - most of them blended the dog and horse into a single image, if the dog appeared as anything more than a shadow.

Slavic, of-the-night, noble hunter reading tracks, horse, footprints, village, 1300s

So we have a ruddy-great horse dwarfing the world in one, and lots of horse-butts which look out of place.

Time to make lots of variations again.

Slavic, of-the-night, noble hunter reading tracks, horse, footprints, village, 1300s

... so now we have more of a centaur-creature as the horse blends with the man.

Overall

RPG images should explain things, and the explanations should involve the interactions of multiple elements, such as one person shooting an arrow at another, or threats, or setting a building on fire. AI seems to mix styles well - want a vampire drawn by Picasso? I'm sure the results would be stunning. But if interactions are missing, I don't see how anyone can use these results.

Machine Learning In General

I suspect machine learning will simply not work in our lifetimes. Consider the story of machine learning when translating:

  1. You make a basic dictionary, so you can type 'cat', and it gives you 'le chat'.
  2. You give it rules about nouns and adjectives - now you type 'the black cat', and it returns 'le chat noire'.

It gets 5% of language, then 10%, then 20%, and it's tempting to imagine that 99%-accurate translations are coming soon, but they're not, because if we go to translate 'James is right, Alice is left', the machine will return 'James is correct', because translating this statement does not rely on rules, but on understanding intention and meaning. Those hold-out sentences may require that we start by programming real AI, with real consciousness, and only then teaching it multiple languages.

207
 
 

Folks who've been watching my release stream of late have likely noticed a trend where I'll put out a fantasy RPG supplement one month, and then half a dozen months or a year later a sci-fi version of that same supplement comes out.

208
1
AD&D Vision Types (www.sisterworlds.com)
submitted 2 years ago by [email protected] to c/[email protected]
 
 

Some nice information with graphs!

209
210
 
 

The artist Vladar's putting together (mostly) generic fantasy map-pieces.

It's CC-BY, so it's open for commercial use. I've commissioned it for my own RPG, but all the pieces should work for anything faintly related to Gygax.

There are more pieces to come, and of course it's open, so if anyone out there can do drawing, feel free to add a wall/ mace/ dead goblin in a new file.

211
1
The Whispering Deck (wordmanward.itch.io)
submitted 2 years ago* (last edited 2 years ago) by [email protected] to c/[email protected]
 
 

A deck of many things-style artifact for Dungeon World, based on the real-world Decktet. Creative Commons and free.

212
 
 

The revised version of module B3 "Palace of the Silver Princess" by Tom Moldvay and Jean Wells receives less attention than Wells' original, although for almost two decades, it was the only version that most of us knew existed.

213
 
 

Right now I am waiting for Fragged Empire 2 to be released.

214
 
 

If anyone's into the Classic World of Darkness, I'm translating the Dark Ages core rules into LaTeX so anyone can hack about with them.

Plans (in various stages of completion):

  • Include a 'Dark Ages' option, which makes things look like the Dark Ages books, and changes rules, like replacing 'driving' with 'riding', and switching examples.
  • Include a 'Vampire' toggle, so that Vampire-specific rules, like Disciplines, or lists of clans, get included just when that toggle's on.
  • Add Contest rules instead of Combat rules (mostly done) because I don't like how WoD does combat.

I've always found it weird that WoD repeated the rules for each game. This way, there's no repetition in the writing (just the output).

No idea if I'll have time to finish the project, but if anyone else lives in the small Venn intersection of LaTeX and old WW books, PRs are very welcome.

215
 
 

I'm making a dungeon generator, partly for fun, and partly to learn python.

I want the output to be plausible, so it'll lay down in three stages:

  1. Make random mine/ natural caves/ fortress
  2. Add a civilization like dwarves/ elves/ gnomes to add rooms, traps at the entrance, maybe a library, and art (i.e. treasure).
  3. Make an invader, e.g. necromancer, goblins, or mad wizard.

At each stage rooms change, so the necromancer will turn dwarves into undead dwarves, and goblins will turn nice spaces into nasty spaces, and maybe set more traps.

Atm it's in early stages, and uses graph-easy to output a conceptual map.

PRs and coding suggestions very welcome.

216
217
 
 

The Indicator (a daily 10 min economics podcast) explains why Hasbro is involved in a proxy fight over its Wizards of the Coast division.

218
219
6
submitted 3 years ago* (last edited 3 years ago) by [email protected] to c/[email protected]
 
 

Dice rolling programs take too long.

Some demand syntax like /roll 2d6+2, and I think 'you should know that 2d6 is a roll without my typing /roll, and also everything I roll has been d6's, so obviously if I type just 3, I mean '3d6'.

So I wrote one with defaults. This is my second python project, so the code isn't pretty, but it does the job.

You write:

""

 2d6
Result: 5

d8

2d8
Result: 12

3+1

3d8+1
Result: 8

If you give it a target number (TN), all rolls will tell you whether or not you've reached that TN.

If you give it a difficulty, it'll tell you how many dice have landed on that number or above.

You can input these things in any reasonable format:

tn=18

TN 12

difficulty = 4

dif 9

220
 
 

In the second title developed as part of a multi-game partnership between Gale Force Nine and Paizo, you attempt to commandeer a prototype Immortal-class starship filled with top-secret tech. Can you escape Skydock aboard the vessel, or will you be caught red-handed?

221
 
 

Advanced Designers & Dragons

222
 
 
223
0
THE RUNEQUEST STARTER SET: A REVIEW (andrewloganmontgomery.blogspot.com)
submitted 3 years ago by [email protected] to c/[email protected]
 
 

"If only there were a single, streamlined product we could point new players to, a concise entry point that explained the rules, introduced the setting, and made it all effortless to learn and play. Something that showcased what makes this fantasy RPG unique. Oh wait, now there is... If you have ever been even mildly curious about Glorantha or Runequest, here is your chance to explore. You will know exactly after exploring the Starter Set if this is the game for you."

— Andrew Logan Montgomery

224
225
view more: ‹ prev next ›