
3D model coming soon
iAfarIdea guy
Description
For Players
Anita-UI is a centralized settings hub that allows you to fine-tune your favorite mods in real-time.
Say goodbye to the chore of installing multiple versions of the same mod just to change a single setting.
With Anita-UI, you can customize your experience exactly how you like it, directly in-game.
Installation:
Place the Anita-UI VPK into your game/citadel/addons folder.
Ensure it has a higher number if you use other UI mods (98 by default), and you're good to go!
IMPORTANT: This mod is currently under active development .
Persistent storage is not yet available. This means settings will revert to their defaults every time you restart the game. I am working on a solution for future updates!
For Developers
Empower your users by giving them choices. Use Anita-UI as a bridge to let players customize your mod's behavior. This saves you from creating multiple VPKs for different edge cases.
How to Integrate (3 Easy Steps)
Integrating your mod takes less than 5 minutes.
Here is how to do it using one of my mods "Minimap Reminder" as an example:
1. Expose your Data
Organize your settings into a CONFIG object at the top of your script.
var CONFIG = {
MIN_INTERVAL: 10.0,
IS_DEV: 0
};
2. Define your UI Schema
Create the menuConfig object.
The id of each element must match the name of the variable in your CONFIG object .
3. Paste the Integration Snippet
Paste this block at the very end of your script.
It handles the handshake, real-time synchronization, and automatic variable updates.
(function () {
var menuConfig = {
title: "Minimap Reminder", // Your Mod Title
description: "Audio reminders for minimap awareness.",
elements: [
{
type: "stepper",
label: "Minimum Interval",
id: "MIN_INTERVAL", // Matches CONFIG.MIN_INTERVAL
min: 1, max: 120,
defaultValue: CONFIG.MIN_INTERVAL
},
{
type: "toggle",
label: "Developer Mode",
id: "IS_DEV", // Matches CONFIG.IS_DEV
defaultValue: CONFIG.IS_DEV === 1
}
]
}; $.RegisterForUnhandledEvent("ClientUI_FireOutput", function(payload) {
try {
var data = JSON.parse(payload);
if (data.magic_word === "ANITA_ALIVE") { _anitaConnect.done = false; _anitaConnect(); }
if (data.magic_word === "ANITA_HANDSHAKE" && data.mod_title === menuConfig.title) { _anitaConnect.done = true; }
if (data.magic_word === "ANITA_UPDATE" && data.mod_title === menuConfig.title) {
if (typeof CONFIG !== "undefined" && CONFIG.hasOwnProperty(data.setting_id)) {
var val = data.value;
// Auto-convert Boolean to Number (1/0) if needed
if (typeof CONFIG[data.setting_id] === "number" && typeof val === "boolean") val = val ? 1 : 0;
CONFIG[data.setting_id] = val;
// Trigger the optional callback
if (typeof anitaCallback === "function") anitaCallback(data.setting_id, val);
}
}
} catch(e) {}
});
function _anitaConnect() {
if (_anitaConnect.done) return;
$.DispatchEvent("ClientUI_FireOutput", JSON.stringify({ magic_word: "ANITA_REGISTER", config: menuConfig }));
$.Schedule(1.0, _anitaConnect);
}
_anitaConnect();
})();
// OPTIONAL: Use this callback for instant reactions (like UI refreshes)
function anitaCallback(id, value) {
if (id === "IS_DEV") UpdateUI();
}
Complete documentation will be aviable in a few days
About Anita-UI
Anita-UI is a community HUD in Deadlock.
Creation
Anita-UI was made by the community. The current version is 2.2.3.
Popularity
Anita-UI has been downloaded 2.1k times, liked 12 times and viewed 10k times on GameBanana.
Installation
Install Anita-UI in one click with the Deadlock Mod Manager, or download the files and install it manually. Community mods on Skintel are always free.
Availability
Anita-UI is a free Deadlock mod. Community mods on Skintel are free to download and install, so you can get Anita-UI without spending anything.
Updates
Anita-UI was last updated Feb 8, 2026.
Frequently asked questions
How do I install Anita-UI?
Use Install with Mod Manager to open the Deadlock Mod Manager, or download the 15 KB archive.
Is Anita-UI free?
Yes. Community mods on Skintel are free to download and install.
How popular is Anita-UI?
Anita-UI has been downloaded 2.1k times and liked 12 times on GameBanana.









![Top Bar Plus [Beta] image 2](https://assets.skintel.gg/upstream/gamebanana/29674b96150aa66b8d6018424419c8a78007235d8d328d00b4e7883ad7a43575.jpg)
![Top Bar Plus [Beta] image 3](https://assets.skintel.gg/upstream/gamebanana/5c66ea0fed88b2849a06ac464bfac8ee1a0c81bda4ddb1555532d43fdd497ffa.jpg)
![Top Bar Plus [Beta] image 4](https://assets.skintel.gg/upstream/gamebanana/4d036ffd43a30d28a373be9c675648905e44a5677ab6eef84e4ca5fc9a379b0e.jpg)
![Top Bar Plus [Beta] image 5](https://assets.skintel.gg/upstream/gamebanana/8e0484c084c0e4be8f50fb6bff9dd607e15034752078118eff637d9193c330f5.jpg)




















![[OLD GODS NEW BLOOD] DARKEST DEADLOCK Portraits](https://assets.skintel.gg/upstream/gamebanana/678089821b6baed29ec029529582de5f5eacb40a8b74f29d086eb5bdb6319225.jpg)
![[OLD GODS NEW BLOOD] DARKEST DEADLOCK Portraits image 2](https://assets.skintel.gg/upstream/gamebanana/eecb6672adc7f5717dcfdd60ca922cf98b70ca80758a67c1a427072edfec9332.jpg)
![[OLD GODS NEW BLOOD] DARKEST DEADLOCK Portraits image 3](https://assets.skintel.gg/upstream/gamebanana/a890a9becabdee04a01511f9e22ea5aa4e53c61fe857c995331fad813e1d28ac.jpg)
![[OLD GODS NEW BLOOD] DARKEST DEADLOCK Portraits image 4](https://assets.skintel.gg/upstream/gamebanana/3ea1d86c17d353a2b65effe9ec609aa7a8bcd6e2f9f26ec2f392d25b22a62825.jpg)
![[OLD GODS NEW BLOOD] DARKEST DEADLOCK Portraits image 5](https://assets.skintel.gg/upstream/gamebanana/615ad94d0c6bb40d77129f80ba95e34cb8585b9d13ec8d84a3d17fedbb950a40.jpg)
![[OLD GODS NEW BLOOD] DARKEST DEADLOCK Portraits image 6](https://assets.skintel.gg/upstream/gamebanana/3ca8b489c746d109168376599f7286ce77a37c763f4e4c1771565ec21b4beb72.jpg)
![[OLD GODS NEW BLOOD] DARKEST DEADLOCK Portraits image 7](https://assets.skintel.gg/upstream/gamebanana/f3e89e1cba8dc54d38d8444b33b8a2a136cec6b56e443bdb1d59fdbbdaa1e545.jpg)





















![robo's Deadlock Portraits [V3 UPDATE! NEW HEROES!]](https://assets.skintel.gg/upstream/gamebanana/92c9d6bc7c56055fa9fedd90d8e78b0d21a184b0ff3c9da01a6bef2921358339.jpg)
![robo's Deadlock Portraits [V3 UPDATE! NEW HEROES!] image 2](https://assets.skintel.gg/upstream/gamebanana/45455033ea8aaa3f7390e6922edf21ce0aa8aebf0ba260fc6a489049ab4b6b1e.jpg)
![robo's Deadlock Portraits [V3 UPDATE! NEW HEROES!] image 3](https://assets.skintel.gg/upstream/gamebanana/5609b175042be7643a85390230ace4db64dddc8c3435288ccb015993e19f2e08.jpg)
![robo's Deadlock Portraits [V3 UPDATE! NEW HEROES!] image 4](https://assets.skintel.gg/upstream/gamebanana/cd3f5b146466d7bea51727facc5593da211ff2d73c8d74f285a44944d9a4fd6d.jpg)
![robo's Deadlock Portraits [V3 UPDATE! NEW HEROES!] image 5](https://assets.skintel.gg/upstream/gamebanana/7728887fbeda3067002fcd88502a242f056fe81ee4f836aca4fc59f776005b87.jpg)
![robo's Deadlock Portraits [V3 UPDATE! NEW HEROES!] image 6](https://assets.skintel.gg/upstream/gamebanana/8bb09869aa54fb1ed0d96fdf63d09abb8d271d52115076dc63ff6a8cb0d35814.jpg)


