Change this value to change the number of times you draw from a rolltable:
numberOfDraws = 8;
Change these values to your desired image size:
imageWidth = 250;
imageHeight = 500;
Change this value to the name of the table you draw from:
tableName = 'tableName'
Use the DeleteAllTilesMacro to delete all of the tiles you spawned.
Run the following script to generate the database:
GeneratePFDB.sql
Run randomClassFeat.sql to select a random Pathfinder class feature. If you want to select more than one class feat, you can change this value:
SELECT TOP(1)
Run randomDrawbackQuery.sql to select a random drawback. If you want to select more than one drawback, you can change this value:
SELECT TOP(1)
Run randomTraitQuery.sql to select a random trait. If you want to select more than one trait, you can change this value:
SELECT TOP(1)
Run randomTraitDrawbackQuery.sql to select a random trait or drawback. If you want to select more than one, you can change this value:
SELECT TOP(1)
Run randomFeatAbilitySkillBABPreqeq.sql to select a random feat that can have prerequisites from the following: ability scores, skills, BAB
Change this to your desired number of prerequisites:
DECLARE @DesiredPrerequisites INT = 0;
Change this to your desired result count:
DECLARE @ResultCount INT = 5;
Run randomFeatAnyPreqeq.sql to select a random feat that can have any type of prerequisites
Change this to your desired number of prerequisites:
DECLARE @DesiredPrerequisites INT = 0;
Change this to your desired result count:
DECLARE @ResultCount INT = 5;
Run randomFeatQuery to select a random feat. If you want to select more than one feat, you can change this value:
SELECT TOP(1)
Run randomSpellQuery to select a random spell based on the desired spell level.
To select the desired spell level, you can change this value:
DECLARE @DesiredSpellLevel INT = 5;
If you want to select more than one spell, you can change this value:
SELECT TOP(1)