40 lines
953 B
Text
40 lines
953 B
Text
~~
|
|
~~ bunny_hunt - hunting meta for the bunny nav route
|
|
~~ Configures combat / loot / buff / nav options, then loads and runs bunny.nav.
|
|
~~ Generated from user spec.
|
|
~~
|
|
|
|
STATE: {Default}
|
|
IF: Death
|
|
DO: SetState {Death}
|
|
IF: Always
|
|
DO: DoAll
|
|
SetOpt {LootAllCorpses} {true}
|
|
SetOpt {LootOnlyRareCorpses} {false}
|
|
SetOpt {EnableLooting} {true}
|
|
SetOpt {EnableCombat} {true}
|
|
SetOpt {EnableNav} {true}
|
|
SetOpt {EnableBuffing} {true}
|
|
SetOpt {NavPriorityBoost} {false}
|
|
SetOpt {EnableMeta} {true}
|
|
Chat {/vt nav load bunny}
|
|
IF: ChatCapture {(You have solved this quest too recently} {}
|
|
DO: DoAll
|
|
SetOpt {EnableLooting} {false}
|
|
SetState {no_loot}
|
|
|
|
STATE: {no_loot}
|
|
IF: SecsInStateGE 300
|
|
DO: SetState {loot}
|
|
|
|
STATE: {loot}
|
|
IF: Always
|
|
DO: DoAll
|
|
SetOpt {EnableBuffing} {true}
|
|
SetState {Default}
|
|
|
|
|
|
~~ Death: do nothing (meta halts here on death until you intervene)
|
|
STATE: {Death}
|
|
IF: Always
|
|
DO: None
|