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

[FF 3e] New Sheet Submission

I've been working on a custom sheet for use with the Final Fantasy 3rd Edition RPG (Returners, Not SEED or Zodiac) and it's very nearly completed. I was wondering... who do I speak to about submitting to github or having added to roll 20 as an official sheet? What is the process for getting it approved and all that? Assuming there is one of course...
1443419885
Andrew R.
Pro
Sheet Author
All I did with my Fantasy AGE sheet was test it very carefully and then submit a pull request using GitHub and wait until it appeared in the Roll20 system a week or so later. So you should have your GitHub fork of the character sheet repository, commit your changes (folder, files, etc.,) and then do a pull request.
1443420336
Lithl
Pro
Sheet Author
API Scripter
You need to submit a pull request to the character sheets repo on GitHub, and have a correctly-formatted sheet.json file. More info  on the wiki and  on GitHub .
1443492418

Edited 1443492489
Kiyomi N.
Sheet Author
Thanks guys! :) No idea how to do a .json file but... I'll figure it out. I've gotten this far through sheer luck and perseverance! :3
1443497851

Edited 1443497936
vÍnce
Pro
Sheet Author
The .json file is just a simple text file. Creating a sheet.json File When you are ready to submit your template for public use , create a sheet.json file in your sheet's folder (see the kitchensink folder for an example sheet.json file). The file has the following fields: html : The name of the HTML file for the sheet (e.g. kitchensink.html ) css : The name of the CSS file for the sheet (e.g. kitchensink.css ) authors : A simple string telling who contributed toward the sheet (e.g. Riley Dutton ) roll20userid : A simple string telling the Roll20 User ID's of the authors (e.g. 1 or 45672,145678 ). Just used so we know who to credit internally, won't be shown publicly on the site. preview : The name of an image file which should be included in your sheet folder showing a preview/screenshot of the sheet (will be displayed in-app at 500x500 resolution) (e.g. kitchensink.png ) instructions : Markdown-formatted instructions for using the sheet. If there are any particular setup steps, special rolls you want to make the player aware of, etc., this is the place to put that info. Try to be succinct. After we have reviewed your sheet if we approve it we will add it to the approved.yaml file in the root directory which will cause it to be available to everyone on the main Roll20 site. If we reject your sheet, we will comment on your Github commit and let you know what changes need to be made before it can be accepted. PLEASE VERIFY YOUR SHEET.JSON IS VALID JSON at <a href="http://jsonlint.com" rel="nofollow">http://jsonlint.com</a> before you submit it!
Oh yes I found that while purusing Brian's most helpful links. Thanks all!