TISAM — There Is Still A Mod
A gentle nudge, not a hard shove. — TISAM helps modpack authors remind players about optional mods through official download channels only.
✨ Introduction
TISAM is a lightweight, compliance-friendly mod recommender for NeoForge 1.21.1 modpacks. On every launch, it scans the player's mods folder, compares the installed jars against a configured list of optional mods, and — when something is missing — opens a small, non-intrusive dialog on the title screen pointing the player to the official download page.
TISAM links out to mod authors' original release pages on Modrinth, CurseForge, or GitHub. The player can browse the missing list, view per-mod install instructions, or permanently dismiss the prompt with a 5-second confirmation cooldown.
Built for modpack authors who want a discoverability layer that respects both licensing and player agency.
📖 Mod Details
🎯 What It Does
On every game launch, TISAM:
- Scans
.minecraft/mods/and matches jar filenames against yourmodules.jsonid list. - Computes the missing set — the recommended mods the player hasn't installed yet.
- Decides whether to show the prompt using a three-layer gate:
- Is every recommended mod already installed? → silent.
- Has the player confirmed "Never Remind Again"? → silent.
- Is the reminder decay timer due? → silent.
- Otherwise → show a small first-prompt card on the title screen.
- Renders the prompt UI with three buttons:
- View Mods — opens a scrollable, sortable list with badges.
- Later Reminder — closes; increments the decay counter.
- Never Remind Again — opens a disclaimer (5s cooldown) before committing.
🛠️ Features
- 🔍 Filename-based detection — no manifest parsing, no class-loading; lightweight and version-tolerant (
sodium-0.5.0.jar,Sodium-0.6.0-mc1.21.1.jar, etc. all matchid: "sodium"). - 📋 Three-step in-game flow — concise prompt → scrollable list → collapsible install guide with custom instructions.
- ⏱️ Decay-based reminder frequency —
reminder_frequency: [1, 1, 3, 3, 3, 7, 7, 7, 7, 15](every launch → every 3 launches → every 7 → every 15) configurable per modpack. - 🏷️ Priority tags —
featured★,critical⚠,normal,optional↓ with sort order, color borders, and labels. - 🛡️ 5-second confirmation cooldown on the "Never Remind Again" disclaimer — prevents mis-clicks.
- 🔌 Public API —
com.tisam.api.TisamApifor other mods to integrate with TISAM. - ⌨️ Client command —
/tisam show | preview | resetfor FancyMenu buttons and debugging. - 🧪 Preview mode —
"preview": trueforces the prompt on every launch for modpack-author previews, with in-memory-only click handling (writes nothing to disk while the modpack author is testing). - 💾 Local-only data — everything lives in
config/tisam/preferences.json; zero network calls.
📦 Configuration
config/tisam/modules.json:
{
"modules": [
{
"id": "sodium",
"name": "Sodium",
"description": "Modern rendering engine, dramatically better FPS.",
"license": "LGPL-3.0",
"url": "https://modrinth.com/mod/sodium",
"can_ignore": true,
"priority": "critical"
}
],
"reminder_frequency": [1, 1, 3, 3, 3, 7, 7, 7, 7, 15],
"install_guide_text": "...",
"disclaimer_text": "...",
"preview": false
}
config/tisam/preferences.json (auto-managed by TISAM):
{
"permanently_skipped": false,
"reminder_count": 0,
"last_reminder_date": ""
}
🚀 Quick Start
Players:
- Drop
There-Is-Still-A-Mod-1.0.0.jarinto.minecraft/mods/. - Launch once — TISAM auto-generates the config files under
.minecraft/config/tisam/. - Restart. The prompt will appear if your modpack author configured any recommended mods.
Modpack Authors:
- Include the TISAM jar in your modpack.
- Ship a pre-filled
config/tisam/modules.jsonlisting your recommended optional mods. - Set
"preview": truewhile authoring, then flip it tofalsefor release. - (Optional) Add the compliance statement to your modpack description.
🔐 Compliance Statement
TISAM is licensed under Apache-2.0. It ships only its own bytecode; all recommended-mod files stay with their original authors. Every external link in the prompt UI points to the mod author's official release page.
Modpack authors shipping TISAM should add this to their modpack description:
This modpack uses TISAM (or There Is Still A Mod) for downloading optional mods.
📋 Requirements
- ☕ Java 21+
- 🟢 NeoForge 21.1.x for Minecraft 1.21.1
You could include this mod inm modpack
