Skip to content

Commit

Permalink
feature: buff before countess, nihlathak and summoner final steps
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfvsilva committed Feb 7, 2025
1 parent 0d0efd6 commit 6d95d99
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions internal/run/countess.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ func (c Countess) Run() error {
}
}

action.Buff()
// Try to move around Countess area
action.MoveTo(func() (data.Position, bool) {
if areaData, ok := context.Get().GameReader.GetData().Areas[area.TowerCellarLevel5]; ok {
Expand Down
1 change: 1 addition & 0 deletions internal/run/nihlathak.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ func (n Nihlathak) Run() error {
}

// Move to Nihlathak
action.Buff()
action.MoveToCoords(o.Position)

// Try to position in the safest corner
Expand Down
1 change: 1 addition & 0 deletions internal/run/summoner.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ func (s Summoner) Run() error {
return err
}

action.Buff()
// Move to the Summoner's position using the static coordinates from map data
if err = action.MoveToCoords(summonerNPC.Positions[0]); err != nil {
return err
Expand Down

0 comments on commit 6d95d99

Please sign in to comment.