interface UseOptions {
    abilityMult: undefined | number;
    ammo: undefined | string;
    clCheck: undefined | boolean;
    haste: undefined | boolean;
    held:
        | undefined
        | "normal"
        | "2h"
        | "twohanded"
        | "oh"
        | "offhand";
    manyshot: undefined | boolean;
    measureTemplate: undefined | boolean;
    powerAttack: undefined | boolean;
    primaryAttack: undefined | boolean;
    rapidShot: undefined | boolean;
}

Properties

abilityMult: undefined | number

Ability score damage multiplier

ammo: undefined | string

Ammo item ID to use.

clCheck: undefined | boolean

Set caster level check state

haste: undefined | boolean

Enable Haste

held:
    | undefined
    | "normal"
    | "2h"
    | "twohanded"
    | "oh"
    | "offhand"

Set held option (for power attack mode).

manyshot: undefined | boolean

Enable Manyshot

measureTemplate: undefined | boolean

Set measure template state

powerAttack: undefined | boolean

Set power attack state

primaryAttack: undefined | boolean

Set primary attack state

rapidShot: undefined | boolean

Enable Rapid Shot