Work in Progress

Dragon slayer returns

2

Tinycloud778 2019-12-18 02:12

I played my old games and realized I could make them better, so I combined A tabletop RPG like D&D and made it into the dragon slayer narrative and I’m taking a more narrative approach based on story and less on combat as you get to know and become friends with your party

I’ll add more later


Tinycloud778 2019-12-18 02:46 (Edited)

When choosing stats a good balance to start is:

Hp: 4-8
Atk: 3-5
Chr: 1-10

I suggest to balance things out like a strong character but low charisma (chr)

Or a high charisma but weak when it comes to combat

Or make an extremely OP character it’s about having fun, you can be super strong or be balanced and see the other aspects like the roll dice and the funny sistuations that happen when characters have weaknesses, a fun character has weaknesses


Timo 2019-12-18 20:48

You could use an array for the names, too. Then this is possible:

FOR P=1 TO 3

PRINT"WHAT ARE THE"
PRINT"STATS FOR:"
PRINT NAME$(P)
PRINT""

INPUT "HP:";HP(P)
INPUT "ATK:";ATK(P)
INPUT "CHR:";CHR(P)

MXHP(P)=HP(P)

GOSUB SCROLLE

NEXT P

I added a FOR-NEXT loop and replaced the numbers with "P", so this will be executed three times for each player. This way you don't have to copy so much code.


Tinycloud778 2019-12-18 21:04

Ok thanks


Log in to reply.