RPG Battle Mechanics

If you have questions about any aspect of QBasic programming, or would like to help fellow programmers solve their problems, check out this board!

Moderators: Pete, Mods

Post Reply
User avatar
ThirtyNitesOfMX
Coder
Posts: 18
Joined: Sun Nov 28, 2010 6:58 pm
Location: seattle, wa

RPG Battle Mechanics

Post by ThirtyNitesOfMX »

anybody know of a good resource to find RPG battle mechanics equations?

like PhysicalDAMAGE = (WeaponStrength + CharacterStrength) / (EnemyDefense * (EnemyLevel/100)) + INT((RND + 1) * (CharacterStrength/10)

or MagicDamage = ((CharacterMagic + SpellLevel) * (CharacterLevel/100) / EnemyMagicDefense) + INT((RND + 1) * CharacterMagic/10)

yep...

im ok at math but if there are examples of other battle mechanics systems out there to use as a general guideline, i'd like to see.

thanks!
Post Reply