-
Notifications
You must be signed in to change notification settings - Fork 177
Waggle Sets
Waggle sets is a set of spell data sets in your YAML settings file. Many scripts refer to this data to know which spells to cast and you can individually cast a waggle set by using the ;buff
script followed by the set name, e.g. ;waggle astrology
to cast the astrology waggle set.
Start by adding the following to your settings file:
waggle_sets:
default:
prehunt_buffs:
We've created two empty sets here, nested inside of waggle_sets
, one called 'default' and another called 'prehunt_buffs'. This isn't going to do much until you start adding spells to it, so lets add a spell...
waggle_sets:
default:
Manifest Force:
mana: 10
cambrinth:
- 10
prehunt_buffs:
Lets test it out in-game. Release the spell if its active (release maf in the above case) and run the ;buff
script with no arguments. This should cast the Manifest Force spell. The default
waggle set is used whenever the ;buff
is called without arguments. When you want to cast another set with ;buff
include the set name, so ;buff prehunt_buffs
would cast the prehunt_buffs set.
Add the data for Manifest Force to the prehunt_buffs
set now and try it out.
prehunt_buffs
is an example of a set used by another script. ;hunting-buddy
casts the spells in prehunt_buffs
before it takes you hunting.
You can make up your own set names to use with ;buff
. For example:
waggle_sets:
default:
Manifest Force:
mana: 10
cambrinth:
- 10
Lay Ward:
mana: 10
cambrinth:
- 10
- 10
prehunt_buffs:
Manifest Force:
mana: 10
cambrinth:
- 10
perception:
Clear Vision:
mana: 20
Now I can run ;buff perception
to cast any spells I list in the perception
set.
Set Name | Used by Scripts | Description |
---|---|---|
astrology | astrology | List of buffs to casting before and during astrology training |
attunement | attunement | Buffs to cast before power-walking |
default | buff | Default waggle set used by ;buff with no arguments |
prehunt_buffs | hunting-buddy | Buffs to cast before hunting |