Page 1 of 1

MMOViper Lotro and FFXIV updated 2.3.5.9

Posted: Tue Aug 12, 2025 4:31 am
by PitViper
========= MMOViperBot Change Notes =========
============================================
August 11, 2025 MMOViperBot Version 2.3.5.9

All Bots:
-- Bugfix: Hotkey combos were not using modifiers correctly
-- Tweak: Plugin Folders that end in .bak will not be loaded/scanned

EQ2:
-- Bugfix: Working with latest patch

Lotro:
-- Bugfix: IHotkey.PressKey working now
-- Bugfix: IHotkey.Index working too
-- Bugfix: NPC's showing up as resources

Final Fantasy XIV (FFXIV) Bot:
-- Bugfix: Working with latest patch
-- Tweak: Flying algorithms
-- Tweak: Chat log optimizations
-- Added: Scripting API: ISynthesis (for all your crafting needs)


Here is the scripting API's that were added this patch for FFXIV:
public interface ISynthesis
{
// Text
string ItemName { get; }
string Condition { get; }
string HQLiteral { get; }
string CraftEffectOverflow { get; }

// Numbers
int CurrentQuality { get; }
int MaxQuality { get; }
int CurrentProgress { get; }
int MaxProgress { get; }
int CurrentDurability { get; }
int StartingDurability { get; }
int HQPercentage { get; }
int StepNumber { get; }
int CollectabilityLow { get; }
int CollectabilityMid { get; }
int CollectabilityHigh { get; }

// Lists
IReadOnlyList<ICraftEffect> Effects { get; }
}
public interface ICraftEffect
{
string Name { get; } // raw Name node text
int StepsRemaining { get; } // raw StepsRemaining node text
string HoverText { get; } // tooltip text from hover Utf8String
}