Links
Tags
Creators
Details
1.0.0
Compatibility
Changes
Item Pickup Toast
A lightweight Minecraft Forge mod that displays recently picked up items directly on your HUD. Never lose track of what you've collected again!

Features
- Displays items you pick up on your HUD
- Items disappear one by one after a configurable time
- Configurable display position (Top Left, Top Right, Bottom Left, Bottom Right, Bottom Center)
- Configurable display time and remove delay
- Configurable max visible items
Config

Access in-game via Mods → ItemPickupToast → Config
| Option | Default | Description |
|---|---|---|
| Position | Bottom right | Items position on screen |
| Max Visible Toasts | 3 | Max items shown at once |
| Toast Display Time | 3s | Time before items start disappearing |
| Toast Remove Delay | 0.5s | Delay between each item removal |
Requirements
- Minecraft 1.21.1
- Forge 52.1.10 or higher
Installation
- Download the latest jar from Modrinth
- Place it in your
.minecraft/modsfolder - Launch Minecraft with Forge
Note
This is my first mod, there may be some bugs. If you encounter any issues or have any suggestions, feel free to contact me at lianggmc@gmail.com or open an issue on GitHub.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:ddoYxzJf:S3KCQZdT"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:ddoYxzJf:S3KCQZdT"
}

