morepurplemorebetter
Explorer
Because.Why is this no longer available in the Dungeon Masters Guild?![]()
So, now it is again here on ENworld and still on My Patreon.
Because.Why is this no longer available in the Dungeon Masters Guild?![]()
Reading this, and finding the error, would be much easier if you post it somewhere that uses JavaScript syntax highlighting, like Gist.GitHub.com. That way, you would see that the " on line 59 are causing the issue. You removed the backslashes in front of the quotation marks that indicate feet.
You have:
Code:height : " range from 5 to over 6 feet tall (4'9" + 2d8")",
While it should be:
Code:height : " range from 5 to over 6 feet tall (4'9\" + 2d8\")",
Because the quotation marks signal the end of a string and when there is a backslash in front of it, they are 'escaped' as it is called, they no longer signal the end of a string.
Also, you don't have a closing curly bracket } for the "faerie fire" feature.
For making your code more readable and condensed, I suggest removing all the comments (everthing after //) and removing empty lines.
Also, you set 'prepared' to true while also setting 'atwill' to true. You can't have both, as 'prepared' adds a checkbox in the first column, while 'atwill' adds the 'At Will' text in the first column. They are mutually exclusive.
You don't need a sortname if it is the same as the name.
Your regExpSearch can be simplified to just:as this will match if that one word is in the string. You only need the complex syntax if you want to match more than one word, in any order. One word can't have an order, so you can just do it like thisCode:/moonfolk/i,
You are using languageProfs wrong. It is a one-dimensional array, not an array with arrays in it. If the language is fixed, just write the name of the language as a string. If the language is a choice, you write a number of how many choices can be used. So you should make it:Code:languageProfs : ["Moonspeak", "Common"],
I fixed your code and put it in a GitHub Gist here.
You can modify almost everything on the sheet. Most of it using the import functionality. Check out the /r/MPMB subreddit and my GitHub for information. I would link it here if I want writing this on my phone.Ugh. Silly wizards of the coast removing perfectly good things from their site...
Is there an easy way to edit/add things to the sheet? Like more skills to the list etc. if I have some home brew things?
You can modify almost everything on the sheet. Most of it using the import functionality. Check out the /r/MPMB subreddit and my GitHub for information. I would link it here if I want writing this on my phone.
Just wondering - is there a plan now that Microsoft is retiring Adobe Reader? Will the sheets be compatible with any other program? I'd love to use them for my upcoming game but I don't want to spend time in them only to lose access on the 15th.
Huh? Microsoft doesn't own Adobe, how would they "retire" it? Please cite your source for this information.
I can't read anything in the screenshot, but that might just be because I'm on mobile. The article you linked to is taking about the Microsoft Reader App. The sheet doesn't work in that app. You can open the sheets in any PDF reader, including the Microsoft Reader App and Microsoft Edge, but the sheets automation only works in Adobe Acrobat.Sorry, they're retiring use of it on Windows 10 devices. View attachment 93822
That's a screenshot I just took, having downloaded and opened one of the character sheets in Reader.
If the picture doesn't work, here's a link to an article about it: https://www.onmsft.com/news/microsoft-ending-support-for-its-windows-8-10-reader-app
I'm not terribly well-versed in technology so maybe I'm missing something? Please lmk if I'm just being dumb lol