This is Google's cache of http://www.enworld.org/forum/showthread.php?400044-MPMB-s-Character-Record-Sheet-(PDF-form)-MPMB-s-Spell-Sheets-(Excel-PDF-form)/page106. It is a snapshot of the page as it appeared on Sep 2, 2016 20:45:05 GMT.
The current page could have changed in the meantime. Learn more
Full versionText-only versionView sourceTip: To quickly find your search term on this page, press Ctrl+F or ⌘-F (Mac) and use the find bar.
D&D 5th Edition MPMB's Character Record Sheet (PDF form) + MPMB's Spell Sheets (Excel / PDF form) - Page 106


  1. #1051
    Yep that helps out a lot thanks again MPMB.

    Ra

 

  • #1052
    After some weeks of very little news, it is time for a big announcement: The WotC-version of the Character Record Sheet is finally in BETA and ready for you to be tested!




    Click here to see a filled-out preview.

    Please let me know what you think of this new sheet!


    I have also made some improvements on the Character Record Sheet you know and love, as well as the Excel Spell Sheet Generator:

    MPMB's Character Record Sheet v11.5 (30-6-2016) has the following changelog:
    • NEW ALTERNATIVE VERSION: Made a new sheet based on the WotC design, called the “Printer Friendly” version. This has all the same automation as the sheet you know, but has a completely new design
    • NEW FEATURE: Added the option to change the date format on the Adventurers Logsheet pages
    • Added an option to empty the portrait and symbol fields to show nothing but white space
    • Made it possible to set the faction on the Adventurers Logsheet pages (instead of just on the background page)
    • Changed the initially visible pages to no longer include the Wild Shape page
    • Changed the way Spell Sheets are generated to make generating pages after the first a lot faster
    • Changed the default form-field highlighting
    • Fixed an error with the skills of the Far Traveler background (thanks emailer for noticing)
    • Fixed some racial descriptions
    • Fixed an error with some BlueText (modifier) title fields not showing up on extra companion pages (i.e. pages added by the user after the first)
    • Fixed some wrong attack descriptions of creatures (wild shape/companion) (thanks Astromath for reporting)
    • Fixed a glaring error when levelling up and the sheet prompting for a subclass that caused limited features to get double the amount of usages (thanks emailer for reporting)
    • Fixed an error with gear being recognized as something else (thanks fitsou for reporting)


    MPMB's Spell Sheet Generator v7.8 (30-6-2016) has the following changelog:
    • Changed “Spellcasting Ability Score” to “Spellcasting Ability” on the spell sheet
    Last edited by morepurplemorebetter; Tuesday, 5th July, 2016 at 12:31 PM.

  • #1053
    Registered User
    Novice (Lvl 1)



    Join Date
    Jun 2015
    Location
    Indiana
    Posts
    10

    ø Block shamurai7


    ø Friend+
    wowow very nice!

  • #1054
    Some fixes for the new versions and a new addition to the Spell Sheet Generator:

    MPMB's Character Record Sheet v11.51 (1-7-2016) has the following changelog:
    • Fixed an issue with the text dialog to set font and font size (it was broken in v11.5)
    • Fixed an issue with no longer being able to select the Spell Sheet in the Print dialog
    • Fixed several issues with the Printer Friendly version, making it ready to be published


    MPMB's Spell Sheet Generator v8.0 (1-7-2016) has the following changelog:
    • Added the WotC style headers as an option for the sheet

  • #1055
    Registered User
    Novice (Lvl 1)



    Join Date
    Oct 2008
    Location
    WV
    Posts
    139

    ø Block Astromath


    ø Friend+
    Just imported an xfdf file to 11.5 (Letter). Under equipment the total weight no longer calculates. It is just a blank box. I've tried adding more equipment. Still nothing.

    EDIT: version 11.51 is fine.
    Last edited by Astromath; Friday, 1st July, 2016 at 06:04 PM.

  • #1056
    Quote Originally Posted by Astromath View Post
    Just imported an xfdf file to 11.5 (Letter). Under equipment the total weight no longer calculates. It is just a blank box. I've tried adding more equipment. Still nothing.
    Good catch! I ninja-edited v11.51 to include a fix for this issue. Thanks for reporting!

  • #1057
    Registered User
    Novice (Lvl 1)



    Join Date
    Jun 2015
    Location
    Indiana
    Posts
    10

    ø Block shamurai7


    ø Friend+
    a ninja.... I knew it.

  • #1058
    Awesome sheet, super nice and well done.

    I was trying to add a homebrew race by following your syntax reference but I was getting confused since you do some things differently in the actual race list. Now I keep getting a supposed syntax error when I try to add it. I had a friend more savvy with programming try to help me out but he couldn't find what was wrong either. Do you just want me to PM you the code for help?

  • #1059
    Quote Originally Posted by Sarixis View Post
    Awesome sheet, super nice and well done.

    I was trying to add a homebrew race by following your syntax reference but I was getting confused since you do some things differently in the actual race list. Now I keep getting a supposed syntax error when I try to add it. I had a friend more savvy with programming try to help me out but he couldn't find what was wrong either. Do you just want me to PM you the code for help?
    If you get an error when adding the code, it is most likely because the code cannot be read by JavaScript, not (just) that it doesn't fit to the syntax that I made. This happens to me all the time as well and most often is just a missed comma or something.

    I'll be happy to take a look at it! You can PM me the code, put it here, or email it to me, whatever you prefer

  • #1060
    Love the sheet! Especially the printer friendly version.

    Having a bit of trouble adding a spell though, I'm sure it's something tiny and obvious I'm missing. Would you mind taking a look at the script?

    Code:
    SpellsList["speak with stone"] + { //note the use of only lower case! The spelling here is used to identify the spell with. Also note the absence of the word "var" and the use of brackets []     
        name : "Speak With Stone", //Required; The name of the spell. This will be put in the Spell field on the Spell Sheet. Except, if a "nameShort" is present, this name will be put in the mouseover text (tooltip) of the Spell field on the Spell Sheet.
          
        classes : ["cleric"], //Required; Array of all the classes that have this spell on their list. Needs at least one entry. Even with one entry you still need to put the brackets around it []. note the use of only lower case!
         
        source : ["H", 0], //Required; The source of the feat; The "P" refers to the Player's Handbook; The number refers to the page. For material thats not from a known source, use ["H", 0]
         
        ritual : true, //Required; Whether (true) or not (false) this spell is a ritual
         
        level : 1, //Required; The Spell Level. Has to be a number from 0 to 9
         
        school : "Div", //Required; Spell School as it will show up on the Spell Sheet; Can only select from: "Abjur", "Conj", "Div", "Ench", "Evoc", "Illus", "Necro", "Trans"
         
        time : "1 a", //Required; Casting Time as it will show up on the Spell Sheet
         
        range : "Self", //Required; Spell Range as it will show up on the Spell Sheet
         
        components : "V,S", //Required; Components as they will show up on the Spell Sheet
    
    
        duration : "10 min", //Required; Spell Duration as it will show up on the Spell Sheet
         
        description : "Gain the ability to comprehend and verbally communicate with earth and stone telepathically.", //Required; Short Spell Description as it will show up on the Spell Sheet
         
    }

  • + Log in or register to post
    Page 106 of 119 FirstFirst ... 65696979899100101102103104105106107108109110111112113114115116 ... LastLast

    Similar Threads

    1. Form Fillable Adventurer's League Character Sheet with Spells
      By TheBlueKnight in forum D&D 5th Edition Rules, Products, Houserules, Homebrews
      Replies: 1
      Last Post: Tuesday, 14th July, 2015, 04:12 AM
    2. updated: 5e Form fillable D&D next character sheet with spell caster option
      By sidonunspa in forum D&D 5th Edition Rules, Products, Houserules, Homebrews
      Replies: 9
      Last Post: Thursday, 3rd July, 2014, 05:23 PM
    3. Form fillable (yet no calculating) character sheet?
      By harpy in forum D&D 5th Edition Rules, Products, Houserules, Homebrews
      Replies: 10
      Last Post: Thursday, 26th November, 2009, 12:43 AM
    4. Form fillable character sheet?
      By Festivus in forum D&D 5th Edition Rules, Products, Houserules, Homebrews
      Replies: 4
      Last Post: Friday, 21st August, 2009, 04:30 PM
    5. 3.5 Midnight Character Sheet [Form Fillable]
      By Ashrem Bayle in forum D&D 5th Edition Rules, Products, Houserules, Homebrews
      Replies: 5
      Last Post: Friday, 5th September, 2003, 11:50 PM

    Posting Permissions

    • You may not post new threads
    • You may not post replies
    • You may not post attachments
    • You may not edit your posts
    •