Skip to content

ArcDPS plugin for Guild Wars 2 assisting with evaluating combat gameplay.

License

Notifications You must be signed in to change notification settings

Zerthox/arcdps-buddy

Repository files navigation

ArcDPS Buddy

ArcDPS plugin for Guild Wars 2 assisting with evaluating combat gameplay.

Published releases can be found here. Click here to directly download the latest release.

Features

  • Track skill cast states, durations & hit counts
  • Track buff applications to other players & NPCs
  • Track breakbar damage hits
  • Track condition transfers

Casts screenshot Buffs screenshot Breakbar screenshot Transfer screenshot

Casts

Displays casted skills and their durations and hit counts. Duration is colored based on the animation as categorized by ArcDPS (full aftercast, cancelled aftercast, interrupt). Hit count is colored based on the expected and maximum amount of hits.

You can supply custom skill definitions via arcdps_buddy_skills.yml. The plugin ships with the default definitions in src/data/skills. A single entry for a skill looks like this:

- id: 12345 # id of casted skill.
  hit_ids: [23456, 34567] # optional: additional skill ids to count for hits.
  hits: 5 # optional: number of hits. enables hit tracking. set to 0 to track with unknown hits.
  expected: 4 # optional: number of expected hits. threshold for yellow color. defaults to >= half hits.
  max_duration: 10000 # optional: maximum duration (ms). hits after the duration + error margin count towards a new cast.
  minion: true # optional: whether to include hits from own minions.

Individual default skill definitions can be overwritten or disabled:

- id: 12345 # overwrite the default entry entirely
  hits: 5
- id: 12345 # disable the default entry
  enabled: false

Buffs

Displays buffs applied to other players and NPCs. Includes buff applications from own minions. Ignores applications from self to self, own minion to self and own minion to same minion. Target is colored based on being a player or NPC/minion. The following buff applications are currently tracked:

Breakbar

Displays defiance bar damage hits and their respective skill name, damage amount and target. Optionally all defiance bar damage from group/squad members can be displayed. Target is colored based on main log target species.

Transfer

Displays transferred conditions and their respective stack count and target. Target is colored based on main log target species.