TCArknight
Well-known member
I am attempting to format an output sheet for the Doctor Who game and have a slight issue.
On the pdf sheet (which is the standard1.dat), the huge gap on the left side should have three entries from the following biodata2 layout.
If any gear is bought, the gear portal shows up as expected (second pdf). This is how the standard sheet is set for this part:
The AppGoals layout works fine, but not the BioData2 and I'm not sure why...
Am I missing something on the layouts? I've attached the game system files just in case anyone wanted to look...
Thoughts?

On the pdf sheet (which is the standard1.dat), the huge gap on the left side should have three entries from the following biodata2 layout.
Code:
<layout
id="oBioData2">
<portalref portal="oPerson"/>
<portalref portal="oBackgrnd"/>
<portalref portal="oGear"/>
<portalref portal="oTechLevel"/>
<position><![CDATA[
~position the tables next
perform portal[oPerson].autoplace
perform portal[oBackgrnd].autoplace
perform portal[oGear].autoplace
perform portal[oTechLevel].autoplace
~our layout height is the extent of the elements within
height = 1000
]]></position>
</layout>
If any gear is bought, the gear portal shows up as expected (second pdf). This is how the standard sheet is set for this part:
Code:
~position the AppGoals below the name; this will
~establish the remaining space available on the left for adjustments
layout[oAppGoals].width = colwidth
perform layout[oAppGoals].render
layout[oAppGoals].top = layout[oName].bottom + autogap
~position the biodata below the name; this will
~establish the remaining space available on the left for adjustments
layout[oBioData2].width = colwidth
perform layout[oBioData2].render
layout[oBioData2].top = layout[oAppGoals].bottom + autogap
Am I missing something on the layouts? I've attached the game system files just in case anyone wanted to look...
Thoughts?