Skip to content

Commit

Permalink
Added Lesser Invisibility / Bug Fixes
Browse files Browse the repository at this point in the history
Added missing lesser invisibility and some bug fixes, also added check for equipped fishing rod when entering a raid - you know you have been there  :)
  • Loading branch information
Softrix committed May 21, 2023
1 parent 9b6ce6b commit 894d3ec
Show file tree
Hide file tree
Showing 11 changed files with 110 additions and 24 deletions.
2 changes: 1 addition & 1 deletion SmartBuff.globals.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SMARTBUFF_TTC_G = 1;
SMARTBUFF_TTC_B = 1;
SMARTBUFF_TTC_A = 1;

SMARTBUFF_OPTIONSFRAME_HEIGHT = 800;
SMARTBUFF_OPTIONSFRAME_HEIGHT = 770;
SMARTBUFF_OPTIONSFRAME_WIDTH = 500;

SMARTBUFF_ACTION_ITEM = "item";
Expand Down
44 changes: 35 additions & 9 deletions SmartBuff.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
-- Cast the most important buffs on you, tanks or party/raid members/pets.
-------------------------------------------------------------------------------

SMARTBUFF_DATE = "200523";
SMARTBUFF_DATE = "210523";

SMARTBUFF_VERSION = "r41."..SMARTBUFF_DATE;
SMARTBUFF_VERSION = "r42."..SMARTBUFF_DATE;
SMARTBUFF_VERSIONNR = 30401;
SMARTBUFF_TITLE = "SmartBuff";
SMARTBUFF_SUBTITLE = "Supports you in casting buffs";
Expand All @@ -25,7 +25,7 @@ local SmartbuffCommands = { "SBCVER", "SBCCMD", "SBCSYC" }
local SmartbuffSession = true;
local SmartbuffVerCheck = false; -- for my use when checking guild users/testers versions :)
local buildInfo = select(4, GetBuildInfo())
local SmartbuffRevision = 41;
local SmartbuffRevision = 42;
local SmartbuffVerNotifyList = {}

-- Using LibRangeCheck-2.0 by Mitchnull
Expand Down Expand Up @@ -868,9 +868,9 @@ function SMARTBUFF_SetTemplate()
if (InCombatLockdown()) then return end
if (SmartBuffOptionsFrame:IsVisible()) then return end
local newTemplate = currentTemplate
cDisableTrackSwitch = false; -- on unless otherwise changed
if O.AutoSwitchTemplate then
newTemplate = SMARTBUFF_TEMPLATES[Enum.SmartBuffGroup.Solo];
cDisableTrackSwitch = false; -- on unless otherwise changed
local name, instanceType, difficultyID, difficultyName, maxPlayers, dynamicDifficulty, isDynamic, instanceID, instanceGroupSize, LfgDungeonID = GetInstanceInfo()
if IsInRaid() then
newTemplate = SMARTBUFF_TEMPLATES[Enum.SmartBuffGroup.Raid];
Expand All @@ -880,10 +880,8 @@ function SMARTBUFF_SetTemplate()
-- check instance type (allows solo raid clearing, etc)
if instanceType == "raid" then
newTemplate = SMARTBUFF_TEMPLATES[Enum.SmartBuffGroup.Raid];
cDisableTrackSwitch = true;
elseif instanceType == "party" then
newTemplate = SMARTBUFF_TEMPLATES[Enum.SmartBuffGroup.Party];
cDisableTrackSwitch = true;
end
end
-- if autoswitch on instance change is enabled, load new instance template if any
Expand All @@ -894,7 +892,7 @@ function SMARTBUFF_SetTemplate()
local i = instances[zone]
if i and SMARTBUFF_TEMPLATES[i + Enum.SmartBuffGroup.Arena] then
newTemplate = SMARTBUFF_TEMPLATES[i + Enum.SmartBuffGroup.Arena]
isRaidInstanceTemplate = true
isRaidInstanceTemplate = true
end
end
if currentTemplate ~= newTemplate then
Expand All @@ -918,7 +916,17 @@ function SMARTBUFF_SetTemplate()
cClassGroups = { };
local name, server, rank, subgroup, level, class, classeng, zone, online, isDead;
local sRUnit = nil;

-- do we want to disable the gathering switcher?
if O.TrackDisableGrp and O.TrackSwitchActive then
cDisableTrackSwitch = true;
SMARTBUFF_AddMsg("Raid -> Auto gathering tracker disabled while in a raid, switching to preset (if any).");
end
-- do we have a fishing rod equipped and entered a raid?
if SMARTBUFF_IsFishingPoleEquiped() and O.WarnGroupFishingRod then
-- warn the player he/she is in combat with a fishing pole equipped.
DEFAULT_CHAT_FRAME:AddMessage("|cffff0000Smartbuff Warning: |cffff6060"..SMARTBUFF_OFT_FRINSWARN)
PlaySound(12197);
end
j = 1;
for n = 1, maxRaid, 1 do
name, rank, subgroup, level, class, classeng, zone, online, isDead = GetRaidRosterInfo(n);
Expand Down Expand Up @@ -965,10 +973,19 @@ function SMARTBUFF_SetTemplate()
-- Party Setup
elseif (currentTemplate == (SMARTBUFF_TEMPLATES[Enum.SmartBuffGroup.Party])) then
cClassGroups = { };
if O.TrackDisableGrp and O.TrackSwitchActive then
cDisableTrackSwitch = true;
SMARTBUFF_AddMsg("Party -> Auto gathering tracker disabled while in a party, switching to preset (if any).");
end
-- do we have a fishing rod equipped and entered a party?
if SMARTBUFF_IsFishingPoleEquiped() and O.WarnGroupFishingRod then
-- warn the player he/she is in combat with a fishing pole equipped.
DEFAULT_CHAT_FRAME:AddMessage("|cffff0000Smartbuff Warning: |cffff6060"..SMARTBUFF_OFT_FRINSWARN)
PlaySound(12197);
end
if (B[CS()][currentTemplate].SelfFirst) then
SMARTBUFF_AddSoloSetup();
end

cGroups[1] = { };
cGroups[1][0] = "player";
SMARTBUFF_AddUnitToClass("player", 0);
Expand Down Expand Up @@ -3006,6 +3023,7 @@ function SMARTBUFF_Options_Init(self)
if (O.LinkGrpBuffCheck == nil) then O.LinkGrpBuffCheck = true; end
if (O.AntiDaze == nil) then O.AntiDaze = true; end
if (O.WarnCombatFishingRod == nil) then O.WarnCombatFishingRod = true; end
if (O.WarnGroupFishingRod == nil) then O.WarnGroupFishingRod = true; end
if (O.ScrollWheel ~= nil and O.ScrollWheelUp == nil) then O.ScrollWheelUp = O.ScrollWheel; end
if (O.ScrollWheel ~= nil and O.ScrollWheelDown == nil) then O.ScrollWheelDown = O.ScrollWheel; end
if (O.ScrollWheelUp == nil) then O.ScrollWheelUp = true; end
Expand All @@ -3026,6 +3044,7 @@ function SMARTBUFF_Options_Init(self)
if (O.TrackSwitchDelay == nil) then O.TrackSwitchDelay = 2; end
if (O.TrackMaxPosition == nil) then O.TrackMaxPosition = 1; end
if (O.TrackPosition == nil) then O.TrackPosition = 1; end
if (O.TrackDisableGrp == nil) then O.TrackDisableGrp = true; end
-- leaving this here in classic just in case we even need it, its possible blizzard make the same
-- changes to the secure action button as they did in the retail version..
if (O.SBButtonFix == nil) then O.SBButtonFix = false; end
Expand Down Expand Up @@ -3422,6 +3441,12 @@ end
function SMARTBUFF_OTrackSwitchFish()
O.TrackSwitchFish = not O.TrackSwitchFish;
end
function SMARTBUFF_OTrackDisableGrp()
O.TrackDisableGrp = not O.TrackDisableGrp;
if not O.TrackDisableGrp then
cDisableTrackSwitch = false;
end
end

function SMARTBUFF_OToggleBuff(s, i)
local bs = GetBuffSettings(cBuffs[i].BuffS);
Expand Down Expand Up @@ -3746,6 +3771,7 @@ function SMARTBUFF_Options_OnShow()

SmartBuffOptionsFrame_cbGatherAutoSwitch:SetChecked(O.TrackSwitchActive);
SmartBuffOptionsFrame_cbGatherAutoSwitchFish:SetChecked(O.TrackSwitchFish);
SmartBuffOptionsFrame_cbGatherAutoDisableTracker:SetChecked(O.TrackDisableGrp);

SmartBuffOptionsFrameRebuffTimer:SetValue(O.RebuffTimer);
SmartBuff_SetSliderText(SmartBuffOptionsFrameRebuffTimer, SMARTBUFF_OFT_REBUFFTIMER, O.RebuffTimer, INT_SPELL_DURATION_SEC);
Expand Down
2 changes: 1 addition & 1 deletion SmartBuff.toc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Interface: 30401
## Title: |TInterface\Addons\Smartbuff\Icons\IconEnabled:0|t SmartBuff |cffffffff(WOTLK)|r by |cff00ff00Codermik & Aeldra|r
## Version: 41.30401
## Version: 42.30401
## Author: |cff20d2ffCodermik & Aeldra|r (EU-Proudmoore)
## Contributing Author: |cff20d2ffSpeedwaystar
## Notes: Cast the most important buffs on you or party/raid members/pets. Use /sbm for options menu.
Expand Down
45 changes: 37 additions & 8 deletions SmartBuff.xml
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@
</Button>
<Frame name="SmartBuffOptionsFrame" hidden="true" parent="UIParent" toplevel="true" movable="true" frameStrata="DIALOG" enableMouse="true">
<Size>
<AbsDimension x="560" y="800" />
<AbsDimension x="560" y="770" />
</Size>
<Anchors>
<Anchor x="30" y="-42" point="CENTER" />
Expand Down Expand Up @@ -1245,7 +1245,7 @@
</Size>
<Anchors>
<Anchor point="TOPLEFT" relativeTo="SmartBuffOptionsFrame_cbInCombat" relativePoint="BOTTOMLEFT">
<Offset y="-107" />
<Offset y="-119" />
</Anchor>
</Anchors>
<HitRectInsets>
Expand Down Expand Up @@ -1414,7 +1414,7 @@
</Button>
<ScrollFrame name="SmartBuffOptionsFrame_ScrollFrameBuffs" inherits="FauxScrollFrameTemplate">
<Size>
<AbsDimension x="240" y="620" />
<AbsDimension x="240" y="600" />
</Size>
<Anchors>
<Anchor point="TOPLEFT">
Expand Down Expand Up @@ -1535,14 +1535,14 @@
</Button>
<EditBox name="SmartBuffOptionsCredits_lblText" letters="2000" multiLine="true" autoFocus="false">
<Size>
<AbsDimension x="240" y="188" />
<AbsDimension x="240" y="147" />
</Size>
<Anchors>
<Anchor point="TOPLEFT" relativeTo="$parent" relativePoint="TOPLEFT">
<Offset x="30" y="-540" />
<Offset x="30" y="-557" />
</Anchor>
</Anchors>
<FontString inherits="GameFontNormalSmall" justifyH="LEFT" />
<FontString inherits="GameFontNormalTiny" justifyH="LEFT" />
</EditBox>
<Button name="SmartBuffOptionsFrame_btnPlaySound" inherits="UIPanelButtonTemplate" text="&gt;">
<Size x="27" y="16" />
Expand Down Expand Up @@ -1624,7 +1624,7 @@
</Size>
<Anchors>
<Anchor point="TOPLEFT" relativeTo="SmartBuffOptionsFrame_cbBuffInCities" relativePoint="TOPLEFT">
<Offset y="-90" />
<Offset y="-84" />
</Anchor>
</Anchors>
<HitRectInsets>
Expand Down Expand Up @@ -1653,7 +1653,7 @@
</Size>
<Anchors>
<Anchor point="TOPLEFT" relativeTo="SmartBuffOptionsFrame_cbBuffInCities" relativePoint="TOPLEFT">
<Offset x="10" y="-110" />
<Offset x="10" y="-104" />
</Anchor>
</Anchors>
<HitRectInsets>
Expand All @@ -1676,6 +1676,35 @@
</OnLeave>
</Scripts>
</CheckButton>
<CheckButton name="SmartBuffOptionsFrame_cbGatherAutoDisableTracker" inherits="UICheckButtonTemplate">
<Size>
<AbsDimension x="24" y="24" />
</Size>
<Anchors>
<Anchor point="TOPLEFT" relativeTo="SmartBuffOptionsFrame_cbBuffInCities" relativePoint="TOPLEFT">
<Offset x="10" y="-124" />
</Anchor>
</Anchors>
<HitRectInsets>
<AbsInset left="0" right="0" top="0" bottom="0" />
</HitRectInsets>
<Scripts>
<OnEnter>
GameTooltip:SetOwner(self, "ANCHOR_RIGHT");
GameTooltip:SetText(SMARTBUFF_OFTT_AUTOGATHOFF, SMARTBUFF_TTC_R, SMARTBUFF_TTC_G, SMARTBUFF_TTC_B, SMARTBUFF_TTC_A);
</OnEnter>
<OnLeave>
GameTooltip:Hide();
</OnLeave>
<OnLoad>
getglobal(self:GetName().."Text"):SetText(SMARTBUFF_OFT_AUTOGATHOFF);
getglobal(self:GetName().."Text"):SetFontObject(GameFontNormalSmall);
</OnLoad>
<OnClick>
SMARTBUFF_OTrackDisableGrp();
</OnClick>
</Scripts>
</CheckButton>
</Frames>
<Scripts>
<OnLoad>
Expand Down
3 changes: 3 additions & 0 deletions localization.cn.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ SMARTBUFF_OFT_REQ_RELOAD = "新版本需要重新加载 GUI\n准备就绪后

-- fishing rod check
SMARTBUFF_OFT_FRODWARN = "您正在使用装备好的钓鱼竿进行战斗。";
SMARTBUFF_OFT_FRINSWARN = "你带着你的钓鱼竿进入了一个聚会或突袭。";

-- tracking switcher
SMARTBUFF_TRACKSWITCHMSG = " 已检测到,但自动切换跟踪已打开。 键入 /sbm 以查看选项并关闭个人跟踪或自动切换。";
Expand All @@ -36,6 +37,8 @@ SMARTBUFF_OFT_MINERALS = GetSpellInfo(2580)
SMARTBUFF_OFT_HERBS = GetSpellInfo(2383)
SMARTBUFF_OFTT_GATHERER = "在“寻找草药”、“寻找矿物质”和“寻找鱼”之间切换(如果可用并已选择)。"
SMARTBUFF_OFTT_GATHERERFISH = "切换收集追踪器时包括“寻找鱼”。"
SMARTBUFF_OFT_AUTOGATHOFF = "成群结队时关掉"
SMARTBUFF_OFTT_AUTOGATHOFF = "在聚会或突袭中自动关闭此功能,并切换到您当前的模板首选项。"

-- wrong version
SMARTBUFF_NOTINTENDEDCLIENT = "此版本的 Smartbuff 不适用于此客户端,请下载正确的版本。";
Expand Down
3 changes: 3 additions & 0 deletions localization.de.lua
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ SMARTBUFF_OFT_REQ_RELOAD = "Neue Versionen erfordern ein Neuladen der GUI\nK

-- fishing rod check
SMARTBUFF_OFT_FRODWARN = "Sie befinden sich mit ausgerüsteter Angelrute im Kampf.";
SMARTBUFF_OFT_FRINSWARN = "Sie befinden sich in einer Gruppe mit ausgerüsteter Angelrute.";

-- tracking switcher
SMARTBUFF_TRACKSWITCHMSG = " wurde erkannt, aber die automatische Umschaltverfolgung ist aktiviert. Geben Sie /sbm ein, um Optionen anzuzeigen und die individuelle Nachverfolgung oder automatische Umschaltung zu deaktivieren.";
Expand All @@ -70,6 +71,8 @@ SMARTBUFF_OFT_MINERALS = GetSpellInfo(2580)
SMARTBUFF_OFT_HERBS = GetSpellInfo(2383)
SMARTBUFF_OFTT_GATHERER = "Wechselt zwischen „Kräuter suchen“, „Mineralien suchen“ und „Fisch suchen“ (falls verfügbar und ausgewählt)."
SMARTBUFF_OFTT_GATHERERFISH = "Schließen Sie „Fische finden“ ein, wenn Sie durch Gathering Trackers wechseln."
SMARTBUFF_OFT_AUTOGATHOFF = "In der Gruppe AUSschalten"
SMARTBUFF_OFTT_AUTOGATHOFF = "Schalten Sie diese Funktion aus, wenn Sie sich in einer Gruppe oder einem Raid befinden, und wechseln Sie zu Ihrer aktuellen Vorlageneinstellung."

-- wrong version
SMARTBUFF_NOTINTENDEDCLIENT = "Diese Version von Smartbuff ist nicht für diesen Client gedacht. Bitte laden Sie die richtige Version herunter.";
Expand Down
23 changes: 18 additions & 5 deletions localization.en.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

-- Whats new info
SMARTBUFF_WHATSNEW = "\n\n|cffffffff Whats new:|r\n\n"
.." |cffffffffClassic version by Codermik, additional coding\n"
.." by Speedwaystar.|cff00e0ff\n\n\n"
.." |cffffffffClassic version by Codermik, additional retail coding\n"
.." by Speedwaystar.\n\n\n"
.." Changes in r41.200523:\n\n"
.." * Classic versions now use the codebase from the\n"
.." retail version with other additional changes to\n"
Expand All @@ -19,9 +19,20 @@ SMARTBUFF_WHATSNEW = "\n\n|cffffffff Whats new:|r\n\n"
.." report if you find anything not showing up.\n\n"
.." * Added automatic gathering switcher toggled by\n"
.." alt-left clicking minimap icon or in options.\n\n"
.." * Tons of fixes, too many to mention here.\n\n"
.." * Tons of fixes, too many to mention here.\n\n\n"
.." Changes in r42.210523:\n\n"
.." * In addition to above released yesterday, Ive \n"
.." added an option to automatically switch off\n"
.." the automatic tracking switch in raids etc.\n\n"
.." * Added check for fishing rod in party/raids.\n\n"
.." * Added missing Lesser Invisibility for Warlocks.\n\n\n"
.."\n"
.." |c0000FF96Many thanks to Chris S., Samantha R. and\n"
.." |cffffff00I currently play on the Mirage Raceway EU\n"
.." classic WOTLK server as Alliance, I play Mik,\n"
.." Gabella, Castanova, Amarantine and various\n"
.." alts... too many actually :)\n\n"
.." Please feel free to say hello!\n\n\n"
.." |cff00FF7FMany thanks to Chris S., Samantha R. and\n"
.." Twilight's Sundries for their kind donations.\n"
.."\n\n"
;
Expand Down Expand Up @@ -91,7 +102,8 @@ SMARTBUFF_OFT_MINERALS = "Find Minerals"
SMARTBUFF_OFT_HERBS = "Find Herbs"
SMARTBUFF_OFTT_GATHERER = "Switches through your Find Herbs, Find Minerals and Find Fish (if available and selected)."
SMARTBUFF_OFTT_GATHERERFISH = "Include Find Fish when switching through Gathering Trackers."

SMARTBUFF_OFT_AUTOGATHOFF = "Auto switch OFF in Party/Raids"
SMARTBUFF_OFTT_AUTOGATHOFF = "Automatically switch this feature OFF when in a party or raid and switch to your current template preference."

SMARTBUFF_OFT = "SmartBuff On/Off";
SMARTBUFF_OFT_MENU = "Show/hide options menu";
Expand Down Expand Up @@ -149,6 +161,7 @@ SMARTBUFF_OFT_FONTSTYLE = "Font";
SMARTBUFF_OFT_FONTSIZE = "Font Size";
SMARTBUFF_OFT_ICONSIZE = "Icon Size";
SMARTBUFF_OFT_FRODWARN = "You are in combat with your fishing rod equipped.";
SMARTBUFF_OFT_FRINSWARN = "You have entered a party or raid with your fishing rod equipped.";


-- Options Frame Tooltip Text
Expand Down
3 changes: 3 additions & 0 deletions localization.es.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ SMARTBUFF_OFT_REQ_RELOAD = "Las nuevas versiones requieren una recarga de la

-- fishing rod check
SMARTBUFF_OFT_FRODWARN = "Estás en combate con tu caña de pescar equipada.";
SMARTBUFF_OFT_FRINSWARN = "Has entrado en una fiesta o incursión con tu caña de pescar equipada.";

-- tracking switcher
SMARTBUFF_TRACKSWITCHMSG = " ha sido detectado pero el seguimiento de cambio automático está activado. Escriba /sbm para ver las opciones y desactivar el seguimiento individual o el cambio automático.";
Expand All @@ -67,6 +68,8 @@ SMARTBUFF_OFT_MINERALS = GetSpellInfo(2580)
SMARTBUFF_OFT_HERBS = GetSpellInfo(2383)
SMARTBUFF_OFTT_GATHERER = "Cambia entre Buscar hierbas, Buscar minerales y Buscar pescado (si está disponible y seleccionado)."
SMARTBUFF_OFTT_GATHERERFISH = "Incluya Find Fish cuando cambie a través de Gathering Trackers."
SMARTBUFF_OFT_AUTOGATHOFF = "Desactivar esta función en Grupo"
SMARTBUFF_OFTT_AUTOGATHOFF = "Desactive automáticamente esta función cuando esté en un grupo o redada y cambie a su preferencia de plantilla actual."

-- wrong version
SMARTBUFF_NOTINTENDEDCLIENT = "Esta versión de Smartbuff no está diseñada para este cliente, descargue la versión correcta.";
Expand Down
3 changes: 3 additions & 0 deletions localization.fr.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ SMARTBUFF_OFT_REQ_RELOAD = "Les nouvelles versions nécessitent un rechargem

-- fishing rod check
SMARTBUFF_OFT_FRODWARN = "Vous êtes au combat avec votre canne à pêche équipée.";
SMARTBUFF_OFT_FRINSWARN = "Vous êtes en groupe ou en raid avec votre canne à pêche équipée.";

-- Weapon types
SMARTBUFF_WEAPON_STANDARD = {"Dagues", "Haches", "Ep\195\169es", "Masses", "B\195\162tons", "Armes de pugilat", "Armes d\'hast", "Armes de jet"};
Expand Down Expand Up @@ -68,6 +69,8 @@ SMARTBUFF_OFT_MINERALS = GetSpellInfo(2580)
SMARTBUFF_OFT_HERBS = GetSpellInfo(2383)
SMARTBUFF_OFTT_GATHERER = "Bascule entre vos options Trouver des herbes, Trouver des minéraux et Trouver du poisson (si disponible et sélectionné)."
SMARTBUFF_OFTT_GATHERERFISH = "Inclure Find Fish lors du passage à Gathering Trackers."
SMARTBUFF_OFT_AUTOGATHOFF = "Éteindre en groupe"
SMARTBUFF_OFTT_AUTOGATHOFF = "Désactivez automatiquement cette fonctionnalité lorsque vous êtes dans un groupe ou un raid et passez à vos préférences actuelles."

-- wrong version
SMARTBUFF_NOTINTENDEDCLIENT = "Cette version de Smartbuff n'est pas destinée à ce client, veuillez télécharger la bonne version.";
Expand Down
3 changes: 3 additions & 0 deletions localization.ru.lua
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ SMARTBUFF_OFT_REQ_RELOAD = "Новые версии требуют пере

-- fishing rod check
SMARTBUFF_OFT_FRODWARN = "Вы находитесь в бою со своей удочкой.";
SMARTBUFF_OFT_FRINSWARN = "Вы находитесь в группе или рейде с вашей удочкой.";

-- tracking switcher
SMARTBUFF_TRACKSWITCHMSG = " был обнаружен, но включено отслеживание автоматического переключения. Введите /sbm, чтобы просмотреть параметры и отключить индивидуальное отслеживание или автоматическое переключение.";
Expand All @@ -66,6 +67,8 @@ SMARTBUFF_OFT_MINERALS = GetSpellInfo(2580)
SMARTBUFF_OFT_HERBS = GetSpellInfo(2383)
SMARTBUFF_OFTT_GATHERER = "Переключение между функциями «Найти травы», «Найти минералы» и «Найти рыбу» (если они доступны и выбраны)."
SMARTBUFF_OFTT_GATHERERFISH = "Включите функцию «Найти рыбу» при переключении через средства отслеживания сбора."
SMARTBUFF_OFT_AUTOGATHOFF = "Выключить в группе"
SMARTBUFF_OFTT_AUTOGATHOFF = "Автоматически выключайте эту функцию, когда находитесь в группе или рейде, и переключайтесь на текущие настройки шаблона."

-- wrong version
SMARTBUFF_NOTINTENDEDCLIENT = "Эта версия Smartbuff не предназначена для этого клиента, загрузите правильную версию.";
Expand Down
Loading

0 comments on commit 894d3ec

Please sign in to comment.