Automated and Less-Automated Character Sheets
Re: Aqu's Automated Character Sheet
I'd consider making a manual sheet for his rules, if you'd like, but an automated sheet for a new ruleset, when I'm not done with the original, won't happen for a while.
- f1r3w4rr10r
- Posts: 629
- Joined: Wed Aug 01, 2012 11:26 am
- Location: Germany (UTC+1)
- Contact:
Re: Aqu's Automated Character Sheet
Aqu, if you need any help with that thing, just tell me. ^^
I already helped Mad Modd with his equipment list.
I already helped Mad Modd with his equipment list.
- f1r3w4rr10r
- Posts: 629
- Joined: Wed Aug 01, 2012 11:26 am
- Location: Germany (UTC+1)
- Contact:
Re: Aqu's Automated Character Sheet
Aqu, you need to fix your formula for critical success. It's not LCK+1 but just LCK.
Re: Aqu's Automated Character Sheet
Done, changed.
- f1r3w4rr10r
- Posts: 629
- Joined: Wed Aug 01, 2012 11:26 am
- Location: Germany (UTC+1)
- Contact:
Re: Aqu's Automated Character Sheet
Something you can also remove is some unnecessary code for the maximum AP.That was used to round in steps of 5.
- f1r3w4rr10r
- Posts: 629
- Joined: Wed Aug 01, 2012 11:26 am
- Location: Germany (UTC+1)
- Contact:
Re: Aqu's Automated Character Sheet
I also just noticed a typo: It's "Versatility", not "Versitality".
- f1r3w4rr10r
- Posts: 629
- Joined: Wed Aug 01, 2012 11:26 am
- Location: Germany (UTC+1)
- Contact:
Re: Aqu's Automated Character Sheet
So, just wanted to let you guys know, I am now also working on this project. First thing I did was to implement a faster formula for level calculation. I also changed the color theme a bit to make it more consistent.
Next up will be to build a version for Mad_Modd's skill breakdown.
Oh and the changes have only been made to the Less Automated sheet, since the Fully Automated one isn't ready to use for now.
Next up will be to build a version for Mad_Modd's skill breakdown.
Oh and the changes have only been made to the Less Automated sheet, since the Fully Automated one isn't ready to use for now.
- SilverlightPony
- Global Moderator
- Posts: 493
- Joined: Sat Mar 17, 2012 4:21 pm
Re: Aqu's Automated Character Sheet
I knew there had to be a better way to do it than my mountain of nested IF statements. My brain doesn't math that well, though. Thanks! *yoink*f1r3w4rr10r wrote:First thing I did was to implement a faster formula for level calculation.
[EDIT]
It works as intended up to lvl 30, but why not further? Surely there has to be a way to either give it a higher limit, or (preferably) let it go on forever.
Re: Aqu's Automated Character Sheet
It does indeed work beyond level 30. Its just artificially limited with the MIN() function to replicate the old functionality.SilverlightPony wrote:I knew there had to be a better way to do it than my mountain of nested IF statements. My brain doesn't math that well, though. Thanks! *yoink*f1r3w4rr10r wrote:First thing I did was to implement a faster formula for level calculation.
[EDIT]
It works as intended up to lvl 30, but why not further? Surely there has to be a way to either give it a higher limit, or (preferably) let it go on forever.
The formula
SQRT(0.25+B5/500)+0.5
basically is
B4*(B4+1)/2*1000
in reverse.
Floor is to place the character at an exact level, rather than a fraction of a level. We don't want a character at level 3 with 4000 experience to be level 3.37228132326901.
And finally the MIN picks the lowest value between 30 and (FLOOR(SQRT(0.25+B5/500)+0.5, 1)).
So if you want you character to progress beyond level 30. Simply remove the MIN clause and only use =FLOOR(SQRT(0.25+B5/500)+0.5, 1) or change 30 to whatever max level you wish.
I made some tokens to be used for virtual tabletops such as roll20, might be of interest if you like a playing field for your games.
- SilverlightPony
- Global Moderator
- Posts: 493
- Joined: Sat Mar 17, 2012 4:21 pm
Re: Aqu and F1r3's Automated Character Sheet
Why use Floor rather than RoundUp or RoundDown?