lockandkey: add equip_idle state for gear swap after bella service, move quest gear equip to nav
All checks were successful
/ test (push) Successful in 38s
All checks were successful
/ test (push) Successful in 38s
This commit is contained in:
parent
6d9dc89b21
commit
c5f0d95231
2 changed files with 47 additions and 13 deletions
|
|
@ -51,7 +51,6 @@ STATE: {idle}
|
|||
IF: Always
|
||||
DO: DoAll
|
||||
Chat {/vt opt set enablebuffing false}
|
||||
Chat {/ub equip load idle.utl}
|
||||
DoExpr {setcombatstate[`peace`]}
|
||||
DoExpr {clearvar[queuePrimary]}
|
||||
DoExpr {clearvar[queueSecondary]}
|
||||
|
|
@ -286,7 +285,7 @@ STATE: {service_bella_turn_in_jaw}
|
|||
DO: DoAll
|
||||
Chat {/a [bella] jaw turned in, returning home (partial bella)}
|
||||
DoExpr {setvar[bellaTurnInAttempts, 0]}
|
||||
SetState {service_reset_main}
|
||||
SetState {equip_idle}
|
||||
IF: All
|
||||
SecsInStateGE 300
|
||||
ItemCountGE 1 {Insatiable Eater Jaw}
|
||||
|
|
@ -305,7 +304,7 @@ STATE: {service_bella_turn_in_jaw}
|
|||
IF: SecsInStateGE 300
|
||||
DO: DoAll
|
||||
DoExpr {setvar[bellaTurnInAttempts, 0]}
|
||||
SetState {service_reset_main}
|
||||
SetState {equip_idle}
|
||||
|
||||
STATE: {service_bella_backoff}
|
||||
~~ Disable bella services for 24h, return home
|
||||
|
|
@ -319,7 +318,16 @@ STATE: {service_bella_backoff}
|
|||
DoExpr {setvar[bellaJawRunRecoverAttempts, 0]}
|
||||
DoExpr {setvar[bellaBackoffClock,stopwatchcreate[]]}
|
||||
DoExpr {stopwatchstart[getvar[bellaBackoffClock]]}
|
||||
SetState {service_reset_main}
|
||||
SetState {equip_idle}
|
||||
|
||||
STATE: {equip_idle}
|
||||
~~ Swap back to idle gear before heading home
|
||||
IF: Death
|
||||
DO: SetState {death}
|
||||
IF: Always
|
||||
DO: Chat {/ub equip load idle.utl}
|
||||
IF: SecsInStateGE 12
|
||||
DO: SetState {service_reset_main}
|
||||
|
||||
STATE: {service_reset_main}
|
||||
~~ Clear service vars, load ah_recall to return home, then go to idle
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue