Author: JFFK

0

BugCatcher Keybinds – Adds Custom Keybinds (20260609-0001)

Change Log:——————–20260609-0001- Initial commit: Added files.Description:——————–https://byhumannotai.com/icons/written_by_human_not_ai_light_rect.svgDependencies:LibAddonMenu-2.0 and BugCatcher Donations: Please send Columbine, Bugloss, Mountain Flower or Essence of Health Potion (Tri-Pot). I am completely broke. ^_^ Thx! @Duesentrieb BugCatcher KeybindsPatch for BugCatcher Updated.Adds five custom keybinds:Open/Close Panel (Menu)Previous BugNext BugDismiss BugWipe All BugsIf you enjoy BugCatcher Keybinds, consider sharing your feedback or supporting its development. I really appreciate it!

0

Powerful ESO Scribing Build – No Class Skills Mage!

The INVINCIBLE MAGE Build uses exactly ZERO class skills for a unique and off-meta approach to combat in ESO! With a simple, one bar set up and no trials gear needed this build works great on ANY class!!

0

Don’t Marker Me – Removes Target Markers From You (20260608-0001)

Change Log:——————–20260608-0001- Initial commit: Added files.Description:——————–https://byhumannotai.com/icons/written_by_human_not_ai_light_rect.svgOptional Dependencies:None! Donations: Please send Columbine, Bugloss, Mountain Flower or Essence of Health Potion (Tri-Pot). I am completely broke. ^_^ Thx! @Duesentrieb Don’t Marker Me!Automatically removes target markers from you.Please note: The removal is triggered by looking away from a target into empty space.Target markers can only be removed from you if your crosshair is empty.Works on all client languages. No dependencies.Slash Commands/dontmarkerme → Toggles the addonIf you enjoy Don’t Marker Me, consider sharing your feedback or supporting its development. I really appreciate it!

0

Bureau of Acceptable Views (1.0.08062316)

Bureau of Acceptable ViewsA lightweight camera addon for The Elder Scrolls Online. It gives you back control over the third-person camera in situations where the game normally takes it away, and layers a few optional cinematic touches on top. Dynamic FOV is on out of the box for an eased zoom feel; everything else stays out of your way until you turn it on.Compatibility: API: LIVE 101050 / PTS 101050 Optional: LibAddonMenu-2.0 (>= 43) for the settings panel.────────────────────────────────────────────────────────────────────────────────────────────────────────────────────What it doesThe core feature is free zoom in restricted states. ESO locks the camera to a fixed distance (or forces first person) in certain situations. This addon lets you zoom freely between maximum zoom and first person in those states, with optional persistence so your framing survives zone changes and relogs.On top of that, two optional systems can shape the camera further. Dynamic FOV is enabled by default (it does nothing on clients where the FOV property is unsupported); context presets stay disabled until you switch them on.────────────────────────────────────────────────────────────────────────────────────────────────────────────────────FeaturesFree zoom in restricted statesZoom anywhere between max zoom and first person while the game would normally lock the camera.Configurable persistence: keep your zoom across zone changes and logins, or let it reset your choice.Controller input safely falls back to the game’s default camera handling, so nothing breaks if you play on a gamepad.Dynamic FOV (optional, on by default)Ties your third-person field of view to the current zoom distance: tighter when zoomed in, wider when zoomed out, smoothly interpolated in between.Only recalculates when the zoom distance actually changes there is no per-frame work so the framing stays consistent without ever touching a hot path.When disabled, your manual FOV is left exactly as the game set it.Context presets (optional, off by default)Applies a fixed cinematic camera bundle for the state you are in combat, werewolf, stealth, mounted, or sprinting and restores your own framing the moment you leave it.Exactly one state is active at a time, resolved by priority (werewolf → combat → stealth → mounted → sprint), so states never fight each other.A single global intensity slider scales every bundle, and each state has its own enable toggle.Your pre-preset camera is snapshotted the first time a preset takes over and persisted, so a /reloadui, logout, or crash while a preset is active hands your real camera back next session instead of baking the preset’s offsets into your settings.An emergency restore button in the settings panel instantly returns the camera to your control if anything ever feels stuck.Self-check diagnosticsA passive reliability layer that validates the addon’s own invariants and watches the footprint of BAV-owned tables for runaway growth, so a silent regression surfaces as a one-line warning instead of a mystery bug report.Costs nothing during play: it never runs per frame and never polls. Checks fire only at naturally-quiet moments (load, zone change) or on demand via /bav selfcheck, and the automatic pass stays completely silent unless something is actually wrong.Skips itself entirely while you are in combat, so a check never lands on a busy moment.────────────────────────────────────────────────────────────────────────────────────────────────────────────────────Why it’s built wellNo surprises. Context presets stay off until you enable them, and any disabled module is fully inert it registers no events, runs no polling, and never writes to the camera. Dynamic FOV ships on, but a single toggle returns the camera to exactly what the game set.One source of truth for engine I/O. All camera reads and writes go through a single CameraSettings layer that handles the engine’s value formatting and verifies every write by reading it back. A future client change needs fixing in exactly one place.No FOV tug-of-war. A dedicated FovArbiter makes field-of-view precedence explicit, so dynamic FOV and context presets can never overwrite each other depending on load order or timing.Nothing on the per-frame path. Work happens only in response to real events a zoom change, a state transition never every frame.Recovers gracefully. The pre-preset camera snapshot is persisted, so an interrupted session never leaves cinematic offsets baked into your settings.Catches its own regressions. A pull-based self-check validates internal invariants and watches the footprint of its own tables at quiet moments, turning silent bugs into a single readable warning without adding any per-frame cost.Localized with English and Russian strings, and a clean LibAddonMenu settings panel.────────────────────────────────────────────────────────────────────────────────────────────────────────────────────Architecture at a glanceThe addon is split into layers with one-way dependencies: upper layers know about lower ones, never the reverse. Two rules anchor the whole design only CameraSettings talks to the engine, and only FovArbiter decides who owns the field of view. Everything else is a consumer of those two contracts. Settings.lua UI + SavedVariables wires everything │ Configure(…) ┌─────────────┼────────────────┐ ▼ ▼ ▼DynamicFov ContextPresets Free-zoom core (BureauOfAcceptableViews.lua) │ │ ▲ │ │ ╎ GetDiagnostics() read-only ┌──────────────┐ │ │ └╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤ SelfCheck │ └──────┬──────┘ └──────────────┘ ▼ passive observer writes nothing FovArbiter single owner of FOV precedence │ ▼ CameraSettings the only verified engine I/O │ ▼ GetSetting / SetSetting raw engine APISelfCheck deliberately sits beside the I/O hierarchy: it is a read-only observer that never writes to the camera or settings. It lazily polls the other modules’ diagnostics accessors and counts the entries in BAV-owned tables, so it depends on no one and its absence changes nothing.────────────────────────────────────────────────────────────────────────────────────────────────────────────────────Module overviewModule Responsibility—————————– ————————————————–BureauOfAcceptableViews.lua Core: free-zoom logic, event wiring, saved-variable lifecycle, slash commands.CameraSettings.lua The single, verified access layer for every engine camera setting.DynamicFov.lua Optional zoom-dependent field of view.FovArbiter.lua Single owner of third-person FOV precedence.ContextPresets.lua State-driven cinematic bundles with snapshot/restore and persistence.SelfCheck.lua Passive, pull-based invariant and heap diagnostics; warn-only by default.Settings.lua SavedVariables, defaults, and the LibAddonMenu panel.────────────────────────────────────────────────────────────────────────────────────────────────────────────────────How it worksA few small maps of the moving parts. None of this is required reading to use the addon it is here for the curious and for anyone reading the source.State priority only one preset winsContext presets never fight each other. At most one state is active at a time, resolved top-down by priority and gated by each state’s enable toggle: the first state that is both physically active and enabled wins. physical state(s) active ──▶ resolve by priority ──▶ one winner ┌───────────────────┐ highest │ werewolf ───────▶│ first active & │ │ combat ───────▶│ enabled state │──▶ apply bundle │ stealth ───────▶│ wins; the rest │ │ mounted ───────▶│ are ignored │ lowest │ sprint ───────▶│ │──▶ none? → restore └───────────────────┘ your framingWerewolf deliberately outranks combat a transformation should win even mid-fight.Dynamic FOV zoom drives the lensWhen enabled, your field of view tracks the zoom distance: tight when zoomed in, wide when zoomed out, linearly interpolated between. It recalculates only when the distance actually changes never per frame and yields to a preset hold. zoom in ◀─────────────── distance ───────────────▶ zoom out │ │ ▼ ▼ narrow FOV ◀───── linear interpolation (near ↔ far) ─────▶ wide FOV │ │ └──────────────▶ request to FovArbiter ◀────────────────────┘ (applied only if no preset hold owns FOV)────────────────────────────────────────────────────────────────────────────────────────────────────────────────────Snapshot & restore surviving a crashThe first time a preset takes over, your real camera is snapshotted and persisted to SavedVariables. So even a /reloadui, logout, or crash mid-preset hands your genuine framing back next session never the preset’s offsets. preset takes over session ends abruptly next login ┌──────────────┐ ┌──────────────────┐ ┌──────────────┐ │ snapshot live│ │ /reloadui crash│ │ recover from │ │ camera ─────┼──persist──▶│ logout while a │──saved──▶│ persisted │ │ to SavedVars │ │ preset is active │ │ snapshot, │ └──────────────┘ └──────────────────┘ │ then clear it│ │ └──────────────┘ └─ back to default in-session ──▶ restore + clear ─────────┘This breaks the drift cycle where a dirty (offset) camera would otherwise be saved as the new baseline.Self-check quiet until something’s wrongA pull-based reliability pass: it runs at load and zone change (or on demand via /bav selfcheck), validates internal invariants, samples the footprint of BAV-owned tables, and stays completely silent unless something is actually broken. It skips itself in combat and never touches the camera. trigger (PULL only) checks (read-only) output ┌────────────────────┐ ┌────────────────────┐ │ load / zone change │ │ orphaned FOV hold │ healthy │ → in combat? skip │───────▶│ snapshot coherence │──────▶ silence │ /bav selfcheck │ │ sprint-poll leak │ │ → verbose report │ │ slot leak │ problem └────────────────────┘ │ footprint growth │──────▶ one-line └────────────────────┘ warningVerbose mode (/bav selfcheck) additionally prints footprint figures and an explicit “all invariants OK”.────────────────────────────────────────────────────────────────────────────────────────────────────────────────────A note on AI assistanceDuring the development of this addon, the AI assistant Claude Opus 4.8 was utilized in a strictly technical capacity. Its role was limited to debugging, Lua optimization, performance tuning, and preventing potential memory leaks or unsafe code practices. All AI-assisted code has been manually reviewed, tested, and verified by the developer.P.S. If the mere mention of AI makes you panic, this addon might not be for you. Otherwise, rest assured: stability and performance are polished to the highest standard, ensuring zero noticeable impact on your FPS or game memory.

0

NoSpin Continued (1.4.0)

Do you idle in town playing an instrument? Stand around emoting with friends? The moment you open your inventory or skills menu, your character snaps to face the camera and breaks your whole vibe.NoSpin Continued fixes that. It removes the character rotation that triggers when you open menus, so your emotes and instrument animations stay uninterrupted.This is a fork and revival of the original NoSpin by SFBryan18 & Garkin, updated for the current API and extended with a settings menu.FeaturesStops character spin on menu open.Toggle the entire addon on/off with a single master switchPer-category control – Inventory, Skills, Social, Crafting, etc.All changes apply instantly – no reload requiredSlash command: /nospin (toggle, on, off, reset, scene)Known LimitationThe ESC > Settings menu cannot be controlled. ESO handles that panel internally in a way this addon cannot intercept. Your character will still face the camera in settings, but will return to normal the moment you close it.Optional DependencyInstall LibAddonMenu-2.0 for a settings panel in ESO’s addon menu. Without it the addon still works fully – use /nospin to manage settings from chat.CreditsOriginal NoSpin concept and code by SFBryan18 & Garkin (2015).Fork maintained by @Jimaba.Code written with the assistance of ClaudeAI.

0

zFeder Gamepad Camera Boost (1.0.2)

Small ESO addon for PC players using a controller or gamepad. It boosts camera sensitivity by applying the current X and Y gamepad camera settings plus related ESO CVars. Default sensitivity is 2.15. Settings are available through LibAddonMenu if installed, and chat commands work with /zfgamepad. Useful commands: /zfgamepad status, /zfgamepad set 5, /zfgamepad apply. Disable other gamepad camera tuner addons while testing so they do not overwrite each other. Optional support: https://www.buymeacoffee.com/zFeder Project website: https://z-feder.github.io Changelog 1.0.2: added support metadata and support link.

0

Vermilion (0.8.0)

Developed with AI assistanceVermilionhttps://cdn-eso.mmoui.com/preview/pvw16249.pngA real-time damage analytics windowVermilion tracks where your damage actually goes:Damage that landed on enemy health.Damage swallowed by the enemy’s shields.Then it combines them into a single metric: EOS, and breaks your output down by skill line, by outcome, and by crit live, in one window. It’s the crimson twin of Verdant.This is a public beta (0.8.0). It works, and it’s been tested in real fights, but feedback is very welcome while it matures.MetricseDPS Effective Damage Per Second. Damage that landed on the enemy’s health.ShDPS Shield Damage Per Second. Your damage is absorbed by an enemy’s damage shields.EOS Effective Output Score. eDPS + ShDPS combined. Shown live in the window header.ViewsCycle with the arrows on the window:SKILL your damage stacked and colored by source: class lines, weapons, guilds, status effects, item procs.OUTCOME eDPS (landing on health) vs ShDPS (eaten by shields), so you can see how much of your output is actually dropping HP.CRIT your landed damage split into a non-critical base and a critical cap, scaled so the crit ratio reads at full resolution.https://cdn-eso.mmoui.com/preview/pvw16230.pnghttps://cdn-eso.mmoui.com/preview/pvw16231.pngSkill colors & Unknown ContributionsVermilion classifies each hit by its class/skill line and colors it accordingly. The handful of hits it can’t place (some set procs, generic-icon enchants) land in a gray ■ bucket.An Unknown Contributions window lets you tag those gray hits to the right group live, with no reload your tags persist across sessions.https://cdn-eso.mmoui.com/preview/pvw16223.pnghttps://cdn-eso.mmoui.com/preview/pvw16233.pngSettingsThe gear icon on the window opens the panel.Sampling rate 1 to 10 Hz in 1 Hz steps (how often the graph takes a sample)Time window how much combat history the graph holds (default 1 min)Viewport alpha graph background transparencyRecommended valuesThe defaults work for most setups:Sampling rate 12 Hz is plenty for combat analysis.Time window 13 min covers most fights.Careful with extreme values. A high sampling rate combined with a long time window makes the graph hold thousands of samples and can cost FPS in busy fights the window warns you in chat when a combination gets heavy. The defaults are safe. If you see a drop, lower Sampling rate first, then Time window ;)UsageType /vermilion to toggle the window, or /vermilion help for the list. A keybinding is available under Controls → Vermilion. A movable floating logo button can also toggle it.https://cdn-eso.mmoui.com/preview/pvw16250.pngColor legend (skill colors)■ Light / Heavy Attack■ Templar■ Dragonknight■ Sorcerer■ Nightblade■ Warden■ Necromancer■ Arcanist■ Two Handed■ Dual Wield■ Bow■ One Hand & Shield■ Destruction Staff■ Restoration Staff■ Fighters Guild■ Mages Guild■ Undaunted■ Soul Magic■ Alliance War■ Scribing■ Psijic Order■ Vampire■ Werewolf■ Status Effect■ Item Set / Enchant■ UnclassifiedNotesNo addon or library dependencies.Per-server settings EU, NA, and PTS are kept separate for the same @account.Some abilities aren’t recognized yet, so you may see gray ■ segments. Use the Unknown Contributions window to tag them, or wait for the classifier to improve.This is a beta.Combat-tracking concepts informed by LibCombat (Solinur), thanks for the inspirationWhat’s comingA smarter skill identification systemUser-savable settings presetsPerformance work for very long recordingsNo release dates :oContactIn-game: @vergelli

0

KeybindCombos (1.0.0)

Keybind CombosAllows assigning key combinations in the Controls menu.ExamplesCtrl + KeyAlt + KeyShift + KeyCtrl + Alt + KeyPurposeKeybind Combos is a minimal modern replacement for the original Emacs addon.The original addon is no longer actively maintained and requires manual fixes to work with current ESO API versions.This addon preserves the same functionality in a minimal standalone form.FeaturesNo settingsNo dependenciesNegligible overheadNotesTo disable key combinations, simply disable the addon.CreditsSpecial thanks to Ayantir, author of the original Emacs addon.Without Emacs, this addon would not exist.AI DisclosureAI assistance was used during the initial addon creation and review process.The addon was reviewed, tested, and published by the author.LicenseMIT