Bigwigs boss mods addon guide

Лучшие аддоны wow - квесты, настройки, интерфейс, карты

WoW DPS meters

While addons in this category may seem quite similar at first glance, as they all perform the same function, there are some little details to each one of them, that separate them from each other. Addons use different algorithms to compute the DPS, and some may be more resource-intensive for your game.

Recount

The most famous DPS measurement addon, which name has become a household, but today it is not the most accurate one compared to the alternatives. However, this is compensated by the ease of setup and use, as well as by its lightweight. More useful as a quick in-game reference of your performance rather than a meaningful instrument for analysis during a complex raid fight.

Skada Damage Meter

Modular damage meter with various viewing modes, highly customizable, and highly efficient with your computer resources. You can setup multiple windows to track different info-meters, such as DPS, HPS, Aggro, etc. Skada is almost identical to the next addon in the category – Details! The main difference between Skada is when the DPS starts recording, and when it stops. Depending on what you want to reflect in your combat log, you will make your choice between these two. 

Details! Damage Meter

DDM is the most accurate and in-depth graphical meter for your party, using the same method as Warcraftlogs itself. Overall, Skada and Details are pretty much the same, the only difference is when the DPS starts recording – while Skada starts counting the DPS when you make your first hit, Details! Meter starts counting when anyone in the group lands the first hit. Another example is Details! continuing DPS tracking until the end of the fight, while Skada is stopping and remembering your DPS the moment you die during the fight. Remember, the best damage dealer is a living one. And Details! knows that too.

Mythic plus addons

Mythic Dungeon Tools

MDT is a pocket planner of your Mythic+ dungeon run. You can plan your strategy and pull pattern in advance of going into the dungeon. Every enemy NPC in each dungeon is shown on the interactive map, so you can choose which enemies to pull, and how much percentage progress you will get for dealing with them and get detailed enemy info, including their abilities and crowd control. Make the route through the dungeon, share it with party members, and get the show on the road!

MythicPlusTimer

Changes the default Mythic+ timer to a custom one, with new style and additional useful information. Features include enemies percentage progress, death counter and time lost caused by players’ deaths, object completion time, and information about affixes. Timers show both the time from the start of the dungeon run and time left.

Angry Keystones

Mythic+ objective tracker that includes bonus chest timers and time left to get them, enemies forces progress bar with an exact percent, and a death tracker that shows a total number of deaths and how many times each player died individually if you mouseover the icon. Also changes the appearance of Keystone links in chat, to see the Dungeon name right away. 

Raider.IO Mythic Plus

This addon works as an in-game linking element to the Mythic+ and raids rankings on the Raider.IO site. Addon gives you an easy in-game look at the Mythic Keystone scores for other players without having to manually check them on the website. A very useful tool when it comes to gathering groups for high-level keys. Tooltips show current season scores divided for different roles, and show scores from the previous season. Other useful information includes best runs for specific dungeons, number of runs completed in timer, and the main’s mythic score.

LittleWigs

This addon is an extension for BigWigs that includes modules for encounters in 5-man dungeons. For this extension to work, you must install the BigWigs. The addon is easy to use, as it does not require any setup – once you enter the dungeon it will download the required module with tactics for this particular dungeon. Before pulling the boss you will be able to share the tactics in the group chat. During the fight, you will get visual and sound cues.

World’s Dawn

World’s Dawn – это самое близкое приближение к таким играм, как Stardew Valley, в этом списке. Вы живете в маленькой и постоянно меняющейся деревне, ухаживая за своей фермой и пытаясь построить свой дом. Здесь множество персонажей, которых можно встретить, множество дел, которые нужно сделать, а смена времен года обеспечивает свежий геймплей. Это невероятно очаровательно, а художественный стиль отличается удивительной простотой. Возможно, это не самая уникальная игра, но если вы ищете игру, похожую на Stardew Valley, то ни одна другая не подходит к ней так близко, как World’s Dawn.

Это были лучшие игры похожие на Stardew Valley, но для большего вдохновения в ремесленничестве, вот лучшие игры про ферму на ПК.

Рекомендуем: Лучшие стратегии в реальном времени на ПК

Atelier Ryza: Ever Darkness & The Secret Hideout

Игры Atelier – это серия игр, в которой различные алхимики следуют за своими приключениями. Это, пожалуй, самая далекая от нас игра, похожая на Stardew Valley, но есть веская причина, по которой JRPG принадлежит именно ей. В этой конкретной игре речь идет о Рызе, талантливой и амбициозной героине, которая чувствует себя запертой в своем сонном городке.

Очень рано вы встречаете мастера-алхимика и тем самым начинаете свое путешествие в мир химических составов и странных реакций. Система создания предметов в этой игре невероятно глубока, и все это также связано с битвами, поскольку предметы являются ключевой частью каждой встречи. Это весело, это легко для глаз, и это аниме, как черт возьми.

:Sync(sync)

Sends a communication sync to the other BigWigs users in the group.

Arguments

sync stringThe synchronization token to send to the other people in your group. Note that these tokens are recieved by all the BigWigs modules, so you should make sure you pick something unique.

Remarks

The tokens we use are typically prefixed by some portion of the boss name, like «HyakissWeb». When sending a sync, if you want to send more data (this will be provided by the second argument to :BigWigs_RecvSync, detailed later), you have to use string concatenation; «HyakissWeb» .. playerName (which would bekome «HyakissWeb MyToon»).
Note that synchronization throttling is done only on the first part, not the additional information you include in the sync.
Of course, sync messages are sent using SendAddonMessage, and as such there are some restrictions inherited. Take a look at Wowpedia for more information.

Example

self:Sync(«BossAbility»)
self:Sync(«BossTargettedAbility » .. player)

The following functions and variables are available on each boss module. Also refer to the modulePrototype overview and the bossTemplate for an example implementation.

————————————-
— Core: Module Handling —
————————————-
void BigWigs:ModuleDeclaration(bossName, zoneName)
void BigWigs:RegisterModule(name, module)
void BigWigs:EnableModule(moduleName, nosync)
void BigWigs:SetupModule(moduleName)
void BigWigs:DisableModule(moduleName)
— event handler
void BigWigs:BigWigs_RebootModule(moduleName)
—————————————
— Functions and Variables —
—————————————
— do not override
BigWigs.modulePrototype.core = BigWigs
BigWigs.modulePrototype.debugFrame = ChatFrame1
BigWigs.modulePrototype.engaged = false
BigWigs.modulePrototype.bossSync = nil — untranslated string
BigWigs.modulePrototype.zonename = nil — AceLibrary(«Babble-Zone-2.2»)
— override
BigWigs.modulePrototype.revision = 1 — To be overridden by the module!
BigWigs.modulePrototype.started = false — not used anymore
BigWigs.modulePrototype.enabletrigger = nil — boss
BigWigs.modulePrototype.wipemobs = nil — adds that will be considered in CheckForEngage
BigWigs.modulePrototype.toggleoptions = nil — {«sweep», «sandblast», «scarab», -1, «emerge», «submerge», -1, «berserk», «bosskill»}
BigWigs.modulePrototype.timers = {} — table for all timers
BigWigs.modulePrototype.icons = {} — table for all icons
BigWigs.modulePrototype.proximityCheck = nil — function(unit) return CheckInteractDistance(unit, 2) end
BigWigs.modulePrototype.proximitySilent = nil — false
— do not override
boolean BigWigs.modulePrototype:IsBossModule()
void BigWigs.modulePrototype:DebugMessage(msg)
void BigWigs.modulePrototype:OnInitialize()
— override (if necessary)
void BigWigs.modulePrototype.OnEnable()
void BigWigs.modulePrototype:OnEngage()
void BigWigs.modulePrototype:OnSetup()
void BigWigs.modulePrototype:OnDisengage()
— do not override
void BigWigs.modulePrototype:Engage()
void BigWigs.modulePrototype:Disengage()
void BigWigs.modulePrototype:Victory()
void BigWigs.modulePrototype:Disable()
— synchronize functions, do not override
string BigWigs.modulePrototype:GetEngageSync()
void BigWigs.modulePrototype:SendEngageSync()
string BigWigs.modulePrototype:GetWipeSync()
void BigWigs.modulePrototype:SendWipeSync()
string BigWigs.modulePrototype:GetBossDeathSync()
void BigWigs.modulePrototype:SendBossDeathSync()
— event handler, override only if necessary (e.g. c’thun phase transition requires overriding CheckForWipe())
void BigWigs.modulePrototype:RegisterYellEngage(yell)
void BigWigs.modulePrototype:CheckForEngage()
void BigWigs.modulePrototype:CheckForWipe()
void BigWigs.modulePrototype:CheckForBossDeath(msg)
— override
void BigWigs.modulePrototype:BigWigs_RecvSync(sync, rest, nick)
— test function
void BigWigs.modulePrototype:Test()

Slime Rancher 2

Slime Rancher – одна из лучших фермерских игр за последние несколько лет. У нее великолепный стиль, невероятно странный сеттинг и один из самых занимательных способов взаимодействия с миром на сегодняшний день. 2022 год подарил нам продолжение, в котором вы снова играете за главную героиню Беатрикс ЛеБо, но на этот раз наш фермер отправился на красочный Радужный остров, чтобы открыть для себя еще больше новых и интересных слизней, чем раньше. Выращивайте их, скрещивайте с новыми вариантами и следите за тем, чтобы они были счастливы и сыты. По мере продвижения и открытия новых участков великолепной карты вы также разгадаете тайну, находящуюся на расстоянии нескольких световых лет от Земли.

RareScanner

Никогда больше не пропустите редкого врага поблизости – RareScanner триумфально объявляет о редких монстрах, сокровищах и событиях в непосредственной близости от вас. Каждый раз, когда на карте появляется “виньетка” – звезда, обозначающая редкость, событие или сокровище, – раздается сигнал тревоги, а в центре экрана появляется кнопка с названием редкости и выпадающим с нее лутом. Если вы хотите отправиться за ним, нажмите на кнопку, и над NPC появится череп, чтобы вы могли его разыскать. RareScanner также добавляет иконки для всех редких предметов, которые вы обнаруживаете, и показывает дополнительную информацию о них во всплывающей подсказке.

Этого количества вам хватит надолго. Наслаждайтесь огромным количеством удобств, которые мы вам только что подарили. Мы также рассказали о классе воина WoW Dragonflight Dracthyr и наборе уровней WoW Dragonflight Evoker, который идеально подходит для Драктира.

Аддоны

Аддоны — это мощные инструменты, которые можно использовать как для настройки игрового процесса, начиная от графических изменений, заменяющих панели действий и рамки юнитов / рейдов, так и до улучшений производительности, таких как напоминания о заклинаниях для помощи в выполнении ротации, отслеживание баффов / дебаффов, всплывающих подсказок о скором применении боссом способности. Вот некоторые из настоятельно рекомендуемых и часто используемых дополнений для Охотников на Демонов Истребления, которые безусловно, не требуются для игры, но могут помочь увеличить объем информации, доступной вам в бою или просто для более приятного ее отображения.

DeadlyBossMods / BigWigs — Эти дополнения покажут вам таймеры предстоящих способностей босса и предупредят вас, если вы стоите в огне. Я лично рекомендую использовать BigWigs, а также аддон для подземелий LittleWigs.

WeakAuras 2 — это универсальный аддон, который позволяет отслеживать баффы, дебаффы и многое другое. Вы можете сделать например панель ярости. Я очень рекомендую это аддон. Вы также можете легко импортировать ауры от других игроков.

Счетчик урона: Skada или Details — идеальные дополнения, которые позволят вам проверить урон, который наносите вы и ваш участник группы или рейда. Эти дополнения также полезны для отслеживания прерываний, диспелов или смертей.

Вы можете с помощью аддонов полностью сменить пользовательский интерфейс. Чаще всего используют ElvUI. ElvUI полностью заменяет стандартный пользовательский интерфейс Blizzard, который очень легко настроить и который используют многие высококлассные рейдеры. Вы также можете найти готовые профили для ElvUI от других игроков на wago.io.

Overview

:Sync(sync)
:DelayedSync(delay, sync)
:CancelDelayedSync(sync)
:ThrottleSync(throttle, sync)
:Message(text]]])
table :DelayedMessage(delay, text]]])
:CancelDelayedMessage(text)
:Bar(text, time, icon]]]]]]]]])
:RemoveBar(text)
table :DelayedBar(delay, text, time, icon]]]]]]]]])
:CancelDelayedBar(text)
:Sound(sound)
table :DelayedSound(delay, sound)
:CancelDelayedSound(sound)
:Icon(name)
:RemoveIcon()
:WarningSign(texturePath, duration)
:RemoveWarningSign(texturePath)
:DelayedWarningSign(delay, icon, duration)
:CancelDelayedWarningSign(icon)
:Say(msg)
— KLHThreatMeter
:KTM_Reset()
:KTM_ClearTarget()
:KTM_SetTarget(targetName)

General Features[]

>Specifics as of 12/28/2013. See infobox ‘host’ links for more.

Plug-ins

  • Messages: Can be moved, colored, locked, outputted to all kinds of different text areas.
  • Bars: Can be moved, skinned to different textures (SharedMedia compatible), resized & also have an ’emphasis’ feature to flash and move to a different anchor when they are about to expire.
  • Raid icons: Target painting (put an icon over a player that has been singled out by the boss).
  • Boss Block: Suppress Blizzard boss emotes.
  • Sound: Plays various sounds on different events (SharedMedia compatible).
  • LibDataBroker/Minimap: Button for easy access to the configuration menu, resetting running modules, and seeing what modules are active.

World Of Warcraft: Dragonflight Review — Who Says You Can’t Go Home?

07 December 2022

World of Warcraft: Battle For Azeroth — Come One, Come All

08 October 2018

World of Warcraft: Legion Review

27 September 2016

Extras

  • Proximity: For displaying players within a certain range on certain boss encounters.
  • Test: Test and preview your bars and warnings configuration, and move them around.
  • CustomBar: For ‘pizza timers’, create your own custom bars.
  • Flash: Flash the screen blue when something important happens that directly affects you, such as a debuff.
  • Clickable bars: Lets you define left/middle/right click actions for your timer bars.
  • Super Emphasise: Any encounter ability you want to be extra vigilant of, you can enable Super Emphasise to get a voiced countdown and more.

:Bar(text, length, icon, otherColor, …)

Starts a timer bar that counts down for the specified length of time.

Arguments

  • text stringThe text to show on the bar.
  • length numberThe length of the bar in seconds.
  • icon stringWhat icon to show on the bar.
  • otherColor booleanOptional, if not specified, the configured colors will be used. If specified, you must provide 1 to 10 colors to use as arguments after otherColor.
  • colorOptional, if otherColor is specified, you must provide 1 to 10 colors.

Remarks

«Interface\\Icons\\» is automatically pre-pended to the icon path. If you have to show a bar with an icon that is not part of the default icons provided by WoW, this is still possible using the self:TriggerEvent(«BigWigs_StartBar», …) syntax.

Example

self:Bar(«Adds incoming!», 30, «Spell_Nature_Web»)
self:Bar(«Testing Colors!», 60, «Spell_Nature_Web», true, «red», «yellow», «green»)

Auctioneer

На аукционном доме WoW можно заработать много денег – если вы знаете, что делаете. Аукционист в некоторой степени упрощает этот процесс. Этот аддон для WoW эффективно оценивает предметы, предоставляя вам разумную цену, за которую можно продать товар, что позволяет легко обойти других в аукционном доме.

Но на этом все не заканчивается. Пакет Auctioneer также отслеживает ваши торги, объявления и почту, что позволяет с легкостью размещать множество предметов одновременно. Также имеется широкая поддержка зачаровывания, с фигурками для снятия и продажи зачарований. При правильном использовании эта программа приносит неплохие деньги, при этом избавляя вас от необходимости самостоятельно проводить анализ рынка.

Auctioneer может похвастаться поистине впечатляющим набором инструментов, но он может оказаться непосильным, если вы пользуетесь аукционным домом на нерегулярной основе. Если вы обнаружите, что многие возможности, доступные в Auctioneer, излишни, Аукционатор это легкая альтернатива, которая гарантированно подойдет.

При этом, если вы действительно хотите накормить своего внутреннего гоблина, Мастер торговых навыков это современная программа для отслеживания и размещения аукционов, занижения цены, объединения сырья из аукционного дома в предметы, которые продаются дороже, и тому подобное. Она поставляется с собственным приложением для настольных компьютеров для максимального анализа золотых сделок и требует отдельной загрузки. Этот мод из списка лучшие аддоны WoW, определит хорошие предложения, выставленные на продажу, и скажет вам, сколько вещи должны стоить. Правильное использование TSM – это отдельный навык, поэтому мы не рекомендуем его новичкам.

WoW Auras

WeakAuras 2

An indispensable tool for every player seeking to get the maximum out of the game. It’s easily the most complex addon, but the road to the stars lies through hardships. This multifunctional tool allows an incredible level of customizability for all sorts of visual hints related to buffs, debuffs, abilities, and other status effects. You can set up animations, sound effects, and other visual clues to keep track of player or boss abilities, combinations of spells, item procs, and cooldowns.

Words about the complexity of addon could have frightened you – we assure you, there is nothing to be afraid of. Addon has one more wonderful feature – if you don’t see yourself programming your custom auras, you can import templates from other players. On this website, you can find all sorts of pre-built Weak Auras for all classes, for PvE Scenarios, PvP battles, and other game aspects. Additionally, you can Import WeakAuras from the Wowhead database, right from the spell information page.

To keep track of updates to your weak auras, as you do with other addons using the Twitch client, you can use a simple program called WeakAuras Companion App. This desktop app will help you keep all your complex auras, such as raid warning or Mythic+ related tools, up to date in a few clicks.

TellMeWhen

Similar in its functionality to previously mentioned WeakAuras, yet with a more user-friendly approach. It’s a viable option to consider for beginners, but if you’re not afraid of going through a few difficulties, you can go straight for the Weak Auras. Providing visual, audio and text notifications TMW allows you to keep track of Buffs/Debuffs, cooldowns, enchantment procs, trinket effects, and many other things. You can setup the transparency of icons based on the given conditions, such as an active buff, or combat status. To lock and unlock the addon, you can use the chat commands: /tmw or /tellmewhen.

Decursive

An important addon for classes that can dispel negative effects, such as poisons, diseases, charms, curses, or magic. It will help you remove these effects just in a few clicks. Easy to configure and to use – you can set up addon to filter out afflictions if you think they are not worth dispelling and prioritize the cleansing work by choosing what you can and want to dispel. Additionally, if you’re a Mage, Druid, or a Shaman, the addon will highlight mind-controlled player for you to Polymorph, Cyclone, or Hex them.

PvP Addons

Gladius

Already mentioned earlier, it is by far one of the most important addons for PvP arena players – enemy team unit frames with many customizable features and important information, such as PvP trinket status, Target of Target, cooldown tracker and announcer. 

OmniBar

A crucial tool to keep track of the enemy team’s cooldowns. Easy configuration, you only need to pick which cooldowns you want to track for each class. With this addon, it is going to be much easier to decide when to use offensive or defensive abilities and plan your moves against opponents.

NamePlateCooldowns

A light alternative to Ombinbar, easily customizable to track any abilities, and it’s bound to nameplates, as the name suggests. A solution for those who do not want to look down at OmniBar and stay more focused on the enemy.

Arena Team Tracker

This addon tracks the cooldowns of your party members – such information as trinket status and available defensive cooldowns are important pieces of knowledge for team play. Features include tracking selected cooldowns, attaching icons to party or raid frames, and show dampening percentage during arena matches.

BigDebuffs

Increases the size of CC abilities on the raid frames so you could pay closer attention to your teammates, and replaces unit frame portraits with debuff durations in cases with important debuffs involved. Fully compatible with Z-Perl, Shadowed Unit Frames, and ElvUI.

H.H.T.D.

The name of this addon conveys a cruel truth of World of Warcraft realities – Healers Have To Die. The sole purpose of the addon is to enforce this law in Azeroth and other dimensions – it automatically marks enemy healers nameplates with a special indicator, lets you announce healers in the raid chat, and easily target players, even when they are in a pack. 

Bagnon

Следить за своими запасами – сложное дело, если у вас несколько больших сумок или у вас несколько персонажей. Bagnon является спасителем в этом контексте. Вместо того чтобы просматривать предметы по сумкам, он объединяет все предметы в один простой для просмотра экран инвентаризации.

Каждому предмету присвоен свой цвет в зависимости от его качества, также имеется интеллектуальная система поиска. Это означает, что вы можете сразу увидеть, что находится в ваших сумках, и это облегчит вам наведение порядка в них.

Еще один шаг вперед – аддон WoW также показывает, чем владеют все ваши персонажи, от количества золота, которым они владеют, до того, дублируются ли определенные предметы на нескольких персонажах. Если вы пытаетесь перенести имущество с основного персонажа на альт, это идеальный способ держать все под контролем.

Информация в бою

BigWigs Bossmods — Легкий аддон для рейдов с открытым исходным кодом.
Deadly Boss Mods — Более надежный аддон для подземелий, рейдов, PvP и многого другого.
Details — Настраиваемый счетчик урона и исцеления
Exorsus Raid Tools — Модульный аддон, содержащий инструменты координации рейдов для руководителей и офицеров рейдов.
Omen — Счетчик угрозы.
Pawn — показывает различия между вещами, которые надеты на вашего персонажа и теми, на которые вы навели мышкой.
SimulationCraft — Упрощает симуляцию вашего персонажа, создавая внутриигровой скрипт для вставки в SimCraft или Raidbots.
WeakAuras2 — Очень мощный аддон, который может отображать огромное количество разнообразной информации, индикаторы использования заклинаний, предупреждения об опасных способностях рейдовых боссов и многое другое.

Понравилась статья? Поделиться с друзьями:
Косплей-шоп
Добавить комментарий

;-) :| :x :twisted: :smile: :shock: :sad: :roll: :razz: :oops: :o :mrgreen: :lol: :idea: :grin: :evil: :cry: :cool: :arrow: :???: :?: :!: