Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Pathfinder Character Sheet

I'm Starting a game soon that is based off pathfinder mechanics, however the current character sheet doesn't support adding new skills beyond 6. I was wondering if it would be possible to add the ability to increase skills the number of skills as you can do with class features. I tried with scripts briefly, but I just don't have the knowledge or time to figure it out. If you can give me a quick fix so you don't have to add it immeadiately I would be perfectly happy with that. So Please and thank you for the Consideration.
1428535382

Edited 1428535544
Nibrodooh
Pro
Sheet Author
You can create a custom version of the sheet by selecting custom character sheet and copying the code from the github page and adding the following code in between line 2818 and 2819 for each additional skill you would like replacing "Misc-Skill-5" with an incrementing number. <div class="sheet-table-row"> <span class="sheet-table-data sheet-center"><button style="font-size:100%;" title="%{selected|Misc-Skill-5-Check}" type="roll" value="&{template:pf_generic} {{character_name=@{character_name}}} {{character_id=@{character_id}}} {{name=@{Misc-Skill-5-name}}} {{Check=[[1d20 + @{Misc-Skill-5}]]}}" name="roll_Misc-Skill-5-Check"></button></span> <span class="sheet-table-data sheet-center"><input title="@{Misc-Skill-5-cs}" type="checkbox" name="attr_Misc-Skill-5-cs" value="((((3 * @{Misc-Skill-5-ranks}) + 3) - abs((3 * @{Misc-Skill-5-ranks}) - 3)) / 2)" /></span> <span class="sheet-table-data sheet-center"></span> <span class="sheet-table-data sheet-left"><input type="text" title="@{Misc-Skill-5-name}" name="attr_Misc-Skill-5-name"></span> <span class="sheet-table-data sheet-center"><input title="@{Misc-Skill-5}" type="number" name="attr_Misc-Skill-5" value="(@{Misc-Skill-5-ranks} + @{Misc-Skill-5-class} + @{Misc-Skill-5-ability} + @{Misc-Skill-5-racial} + @{Misc-Skill-5-feat} + @{Misc-Skill-5-item} + @{Misc-Skill-5-acp} + @{Misc-Skill-5-misc})" disabled></span> <span class="sheet-table-data sheet-center">=</span> <span class="sheet-table-data sheet-center"><input title="@{Misc-Skill-5-ranks}" type="number" name="attr_Misc-Skill-5-ranks" value="0"></span> <span class="sheet-table-data sheet-center">+</span> <span class="sheet-table-data sheet-center"><input title="@{Misc-Skill-5-class}" type="number" name="attr_Misc-Skill-5-class" value="@{Misc-Skill-5-cs}" disabled></span> <span class="sheet-table-data sheet-center">+</span> <span class="sheet-table-data sheet-center"> <select title="@{Misc-Skill-5-ability}" name="attr_Misc-Skill-5-ability"> <option value="0">None</option> <option value="@{STR-mod}">STR</option> <option value="@{DEX-mod}">DEX</option> <option value="@{CON-mod}">CON</option> <option value="@{INT-mod}">INT</option> <option value="@{WIS-mod}">WIS</option> <option value="@{CHA-mod}">CHA</option> </select> </span> <span class="sheet-table-data sheet-center"><input title="@{Misc-Skill-5-ability}" type="number" name="attr_Misc-Skill-5-ability-display" value="@{Misc-Skill-5-ability}" disabled></span> <span class="sheet-table-data sheet-center">+</span> <span class="sheet-table-data sheet-center"><input title="@{Misc-Skill-5-racial}" type="number" name="attr_Misc-Skill-5-racial" value="0"></span> <span class="sheet-table-data sheet-center">+</span> <span class="sheet-table-data sheet-center"><input title="@{Misc-Skill-5-feat}" type="number" name="attr_Misc-Skill-5-feat" value="0"></span> <span class="sheet-table-data sheet-center">+</span> <span class="sheet-table-data sheet-center"><input title="@{Misc-Skill-5-item}" type="number" name="attr_Misc-Skill-5-item" value="0"></span> <span class="sheet-table-data sheet-center">+</span> <span class="sheet-table-data sheet-center"><input title="@{Misc-Skill-5-acp}" type="checkbox" name="attr_Misc-Skill-5-acp" value="@{acp}"></span> <span class="sheet-table-data sheet-center">+</span> <span class="sheet-table-data sheet-center"><input title="@{Misc-Skill-5-misc}" type="number" name="attr_Misc-Skill-5-misc" value="0"></span> </div> and adding an entry on line 1225 for each skill you add adding skills as a repeating section is not doable at this time as it would break the calculation of skill point usage, and in the RAW of pathfinder extra skills are only needed if the player takes multiple craft/perform/profession skills, with the likely hood of needing more then 6 extra is slim at best. also in the future please keep discussion of the pathfinder sheet in the thread linked at the bottom of the sheet :-)
sorry, will do, and thanx