View Single Post
Mathias
Senior Member
Lone Wolf Staff
 
Join Date: May 2005
Posts: 13,213

Old December 5th, 2009, 06:57 PM
In the Tags.1st file, you would have this sort of tag group defined to store the categories:

Code:
 
<group
  id="HeritDie1"
  sequence="idvalue">
  <value id="1" name="Something"/>
  <value id="2" name="Second Something"/>
  .
  .
  .
  </group>
Or, if those tables aren't named, they're just numbered, you can save yourself typing with:

Code:
 
<group
  id="HeritDie1"
  sequence="idvalue"
  minvalue="1"
  maxvalue="10">
  </group>
And in Control.1st, you would create a sortset to sort the items in the order you want:

Code:
 
<sortset
  id="Heritage"
  name="Heritage Die Rolls">
  <sortkey isfield="no" id="HeritDie1"/>
  <sortkey isfield="no" id="explicit"/>
  <sortkey isfield="no" id="_Name_"/>
  </sortkey>
Most of the menus/tables in the skeleton files have examples of how to apply that sortset:

Code:
 
showsortset="Heritage"
Mathias is online now   #7 Reply With Quote