zarqon
Well-known member
Open the script in a text editor and find this line:
You can add familiars there that you want the script to avoid during its rotation.
Also, SmartStasis would handle releasing the boots (and siphoning spirits, and many other things) for you. A beforeBattleScript can't very well handle the battle as well; you would need a duringBattleScript, which is otherwise known as a consult script (which is what SmartStasis is).
Code:
if (!have_familiar(f) || $familiars[cotton candy carnie, machine elf] contains f) continue; // add familiars here you want to SKIP
You can add familiars there that you want the script to avoid during its rotation.
Also, SmartStasis would handle releasing the boots (and siphoning spirits, and many other things) for you. A beforeBattleScript can't very well handle the battle as well; you would need a duringBattleScript, which is otherwise known as a consult script (which is what SmartStasis is).