How do I. . . get a generator to list multiple entries?

Frex, the AdventureHooks.ipt in c:/program files(x86)/nbos/inspirationpadpro2/generators/encounters generates a single hook at a time, drawn from the AdventureHooks.ipt in the c:/program files(x86)/nbos/inspirationpadpro2/common/nbos folder. What command would I need to use in order to get it to present *two* hooks at a time drawn from the AdventureHooks.ipt in the c:/program files(x86)/nbos/inspirationpadpro2/common/nbos folder?

Comments

  • Tell the generator how many times you want to roll on a subtable, instead of [@name] which rolls once, do [@2 name] which produces two results. See the reference section in the help file that describes the [@table] tag.
  • I'm having an issue getting some code to work that is related to the earlier the post,
    My original code is:
    [@{number=[@{$prompt1}]} BombDrop1]

    but I want to change it so that I display how many warheads are dropped, like this:
    {number=[@{$prompt1}]} Warheads\n [@{$number} BombDrop1]

    But it doesn't work, up to the \n comes out fine, but the rest gives me a (Missing) result. If I put a literal value in it spits out that many repetitions

    OK figured it out:
    * {!number=[@{$prompt1}]} Warheads\n [@{$number} BombDrop1]

    I was missing the '!'

Leave a Comment