-----------------------
Report Generator Readme
-----------------------

The report generator uses a report template file (*.rpt)
to generate the reports. Stats are placed into the report
using tags of the form <tag> or <tag #>. The # is an 
optional field width specifier. If # is larger than the 
length of the output for the tag, the output is right-
justified by padding the output with spaces. If you had
a total of +21 to str:
--Str: <str>--
would end up as
--Str: 21--
and 
--Str: <str 4>--
would end up as
--Str:   21--

There are 2 buttons that you can assign report files to.
Right-click on them and choose Assign to open a file
open dialog. Pick the .rpt file, and now when you press
that button, that file will be used to generate the report.
The button caption is set to the file name (minus the 
.rpt), so keep that in mind when naming files. (keep it
down to 12 characters or so)

These are the currently implemented tags:
(all but the <if>/<endif> tags can have a field width
specifier)

Stat bonuses: (Output will vary depending on whether
you're currently looking at total bonus or distance
to cap)
<str> <con> <dex> <qui> <int> <pie> <cha> <emp>
<hits> <power>

Resist bonuses: (Output will vary depending on whether
you're currently looking at total bonus or distance
to cap)
<body> <cold> <heat> <energy> <matter> <spirit>
<crush> <thrust> <slash>

Focus bonuses:
<focus1> <focus2> <focus3> <focus4>

Skills: (Output will vary depending on whether
you're currently looking at total bonus or distance
to cap)
<skill 01> through <skill 10> will each list one skill
<skills> will list them all, one per line. However, you can't put 
anything else on the same lines

Individual slot stats:
Each of these tags takes the form
<slotname property>
slotname can be:
chest hands   2handed neck  rring
arms  feet    ranged  cloak lring
head  rweapon         jewel rwrist
legs  lweapon         belt  lwrist

property can be:
quality
level
usedpoints (PC made only)
availablepoints (PC made only)
utility
overcharge (PC made only)
name (drop only)
af (drop only) this tag is af for armor, dps for weapons
speed (drop only)
bonus (drop only)
<chest quality> <arms bonus> etc

Individual gem/effect stats:
Each of these tags takes the form
<slotname gem# property>
See the above list for slotname values

gem# is one of gem1, gem2, gem3 or gem4 (even if it's a drop)

property can be:
quality (PC made only) - gem quality
amount - amount of bonus
name (PC made only) - name of the gem
effect - what stat/skill/etc
<chest gem1 amount> <chest gem1 name>, etc

Materials:
<materials gemlist> - list the number and name of each
  specific gem type
<materials gems> - list the totals of each type of gem
  ingredient used
<materials dusts> - list the totals of each type of dust
  ingredient used
<materials liquids> - list the totals of each type of
  liquid ingredient used

<totalcost> - total cost of materials

Conditionals:
You can use tags of the form
<if slot pcmade>blah blah blah<endif>
<if slot drop>
blah blah blah
<endif>
to exclude parts of the report based on whether slot contains
a drop or a PC made item. See the above list for possible
values of slot.

Open up the included .rpt files for example usage. (in fact,
if you're creative with your button-assigning skills, you 
can run this readme throught the report generator and see
what happens :)