Menu
News
All News
Dungeons & Dragons
Level Up: Advanced 5th Edition
Pathfinder
Starfinder
Warhammer
2d20 System
Year Zero Engine
Industry News
Reviews
Dragon Reflections
White Dwarf Reflections
Columns
Weekly Digests
Weekly News Digest
Freebies, Sales & Bundles
RPG Print News
RPG Crowdfunding News
Game Content
ENterplanetary DimENsions
Mythological Figures
Opinion
Worlds of Design
Peregrine's Nest
RPG Evolution
Other Columns
From the Freelancing Frontline
Monster ENcyclopedia
WotC/TSR Alumni Look Back
4 Hours w/RSD (Ryan Dancey)
The Road to 3E (Jonathan Tweet)
Greenwood's Realms (Ed Greenwood)
Drawmij's TSR (Jim Ward)
Community
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Resources
Wiki
Pages
Latest activity
Media
New media
New comments
Search media
Downloads
Latest reviews
Search resources
EN Publishing
Store
EN5ider
Adventures in ZEITGEIST
Awfully Cheerful Engine
What's OLD is NEW
Judge Dredd & The Worlds Of 2000AD
War of the Burning Sky
Level Up: Advanced 5E
Events & Releases
Upcoming Events
Private Events
Featured Events
Socials!
EN Publishing
Twitter
BlueSky
Facebook
Instagram
EN World
BlueSky
YouTube
Facebook
Twitter
Twitch
Podcast
Features
Top 5 RPGs Compiled Charts 2004-Present
Adventure Game Industry Market Research Summary (RPGs) V1.0
Ryan Dancey: Acquiring TSR
Q&A With Gary Gygax
D&D Rules FAQs
TSR, WotC, & Paizo: A Comparative History
D&D Pronunciation Guide
Million Dollar TTRPG Kickstarters
Tabletop RPG Podcast Hall of Fame
Eric Noah's Unofficial D&D 3rd Edition News
D&D in the Mainstream
D&D & RPG History
About Morrus
Log in
Register
What's new
Search
Search
Search titles only
By:
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Menu
Log in
Register
Install the app
Install
Community
General Tabletop Discussion
*TTRPGs General
"I hate math"
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Lord Zardoz" data-source="post: 2374938" data-attributes="member: 704"><p><strong>The complexity is in the number of variables.</strong></p><p></p><p>Any complaints about the math are unfounded. Anyone of us is capable of adding +1 or +2.</p><p></p><p>The probelm is that we have a slew of modifiers from many sources that may or may not stack, combined with modifiers that are purely situational. Keeping track of all the variables becomes very cumbersome. It becomes moreso when you have mixed opponents that are affected by different modifiers.</p><p></p><p>This results in having to setup near algerbraic equations for every combat encounter. Expressing it as near pseudo code:</p><p></p><p>for each player;</p><p> for each attack option player can make;</p><p> for each enemy;</p><p> determine attack to-hit;</p><p> determine attack damage;</p><p></p><p>for each enemy</p><p> for each attack option enemy can make;</p><p> for each player;</p><p> determine attack to-hit;</p><p> determine attack damage;</p><p></p><p></p><p>And for determining attack to hit and damage, you have something that looks like this.</p><p></p><p>To Hit = Bab + SB + WB + RM + Buff + SM + SA;</p><p>Dmg = Multiplier x (Base Dice roll + SB + WB + Buff + SM + SA) + SneakAtk;</p><p>AC = Armour + Dex + Dodge + SM + Buff + SA;</p><p></p><p>Where:</p><p>Bab = base attack bonus</p><p>SB = Stat bonuses</p><p>WB = Weapon Bonuses</p><p>RM = Range Modifier <ranged weapon only></p><p>SM = Situational Modifier <higher ground, charge, suprise></p><p>SA = Special abiilities, such as class abilities</p><p>Multiplier = Critical or lance charge multiplier</p><p></p><p>Any sane DM and player pre-calculates most of this, leaving only things that change round to round, such as range modifier, situational modifiers, and the use of special abilities and buff / anti- buff spells that dont come up too often, like chill touch.</p><p></p><p>The only part where this really breaks down is when you have crap like a sword with +2, +5 vs Evil, of Wounding. That weapon alone has a to hit modifier that may not always apply to every opponent to hit, and a damage modifier that wont affect a slightly different subset of opponents. It is very possible to come up with a fight with 3 opponents that the weapon affects differently.</p><p></p><p>The only way to avoid these problems is to quietly cut out the parts of the game that add complexity you do not see as necessary, and not giving out magic items that add too much work, not using combat options that you cannot resolve quickly (typically bull rush, grapple, and trip, and any other action that has more then 2 or 3 potential variables) and not using enemies that do the same.</p><p></p><p>The complaint about complexity is a valid one I am afraid. But I think that in practice it is largly mitigated by the fact that people dont seem to use many of the rules that annoy them. Have any of you had a bull strenghed, and blessed player performing a bull rush down hill into a waist deep river against an enlarged giant alligator while hobgoblin heavy crossbow specialists where shooting at him from 2 range increments away in a late evening battle under heavy fog?</p><p></p><p>Can you name all of the situational modifiers involved without checking a rule book?</p><p></p><p>Hell, I like that question, and will drop it into the rules forum...</p><p></p><p>END COMMUNICATION</p></blockquote><p></p>
[QUOTE="Lord Zardoz, post: 2374938, member: 704"] [b]The complexity is in the number of variables.[/b] Any complaints about the math are unfounded. Anyone of us is capable of adding +1 or +2. The probelm is that we have a slew of modifiers from many sources that may or may not stack, combined with modifiers that are purely situational. Keeping track of all the variables becomes very cumbersome. It becomes moreso when you have mixed opponents that are affected by different modifiers. This results in having to setup near algerbraic equations for every combat encounter. Expressing it as near pseudo code: for each player; for each attack option player can make; for each enemy; determine attack to-hit; determine attack damage; for each enemy for each attack option enemy can make; for each player; determine attack to-hit; determine attack damage; And for determining attack to hit and damage, you have something that looks like this. To Hit = Bab + SB + WB + RM + Buff + SM + SA; Dmg = Multiplier x (Base Dice roll + SB + WB + Buff + SM + SA) + SneakAtk; AC = Armour + Dex + Dodge + SM + Buff + SA; Where: Bab = base attack bonus SB = Stat bonuses WB = Weapon Bonuses RM = Range Modifier <ranged weapon only> SM = Situational Modifier <higher ground, charge, suprise> SA = Special abiilities, such as class abilities Multiplier = Critical or lance charge multiplier Any sane DM and player pre-calculates most of this, leaving only things that change round to round, such as range modifier, situational modifiers, and the use of special abilities and buff / anti- buff spells that dont come up too often, like chill touch. The only part where this really breaks down is when you have crap like a sword with +2, +5 vs Evil, of Wounding. That weapon alone has a to hit modifier that may not always apply to every opponent to hit, and a damage modifier that wont affect a slightly different subset of opponents. It is very possible to come up with a fight with 3 opponents that the weapon affects differently. The only way to avoid these problems is to quietly cut out the parts of the game that add complexity you do not see as necessary, and not giving out magic items that add too much work, not using combat options that you cannot resolve quickly (typically bull rush, grapple, and trip, and any other action that has more then 2 or 3 potential variables) and not using enemies that do the same. The complaint about complexity is a valid one I am afraid. But I think that in practice it is largly mitigated by the fact that people dont seem to use many of the rules that annoy them. Have any of you had a bull strenghed, and blessed player performing a bull rush down hill into a waist deep river against an enlarged giant alligator while hobgoblin heavy crossbow specialists where shooting at him from 2 range increments away in a late evening battle under heavy fog? Can you name all of the situational modifiers involved without checking a rule book? Hell, I like that question, and will drop it into the rules forum... END COMMUNICATION [/QUOTE]
Insert quotes…
Verification
Post reply
Community
General Tabletop Discussion
*TTRPGs General
"I hate math"
Top