Does anyone have an example of how to conditionally bootstrap things based on a drop-down selection? I'm getting stuck on what has to happen inside of the containerreq section. For example, this doesn't work in the least.
In the system I'm working on, you can pick your combat skill when you add certain careers. So if someone picks "Highwayman", I need them to be able to then decide if they should have the Archery or Pistol skill as a starting skill.
Code:
<bootstrap thing="skArchery">
<containerreq phase="Setup" priority="5000">
compare("Archery",field[arSelect1].text)=0
</containerreq>
</bootstrap>
In the system I'm working on, you can pick your combat skill when you add certain careers. So if someone picks "Highwayman", I need them to be able to then decide if they should have the Archery or Pistol skill as a starting skill.