Mod

Find me

Quick rating

Find me

No reviews yet

This mod adds a complete system for vehicles, mounts, and pets to Minecraft.

Mod Loaders
Forge
NeoForge
Minecraft

Community voices

Reviews

Filter by exact patch versions
Loading exact versionsโ€ฆ
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Required

About

Project Details

Type
Mod
License
All Rights Reserved
Latest Version
Find me-1.2.4.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

This mod adds a complete system for vehicles, mounts, and pets to Minecraft.
description_20332732-adf3-43ee-9b69-3d1481f0c32f.gif

1. Mounts and Vehicles

Function
Store, summon, and rescue mounts (horses, dragons, etc.) and vehicles (boats, minecarts, other vehicle mods). Only one mount or vehicle can be summoned at a time.

Controls
ยท Short press R: Summon the currently selected mount/vehicle; if already summoned, perform aerial rescue (the mount automatically catches a falling player).
ยท Long press R: Open the mount/vehicle selection wheel.
ยท Inside the wheel: Hover your mouse over a creature to select it; left-click to immediately summon/rescue that creature.
ยท Store: Summoned creatures are shown with a blue circle in the wheel, left-click to store them.
ยท Switch category: Press Tab while the wheel is open to switch between mount and vehicle wheels.
description_74325b62-8e3f-4d54-a928-36500d5cd144.gifdescription_c9060c5b-c2c4-4628-9814-8ae76796d6c4.gif

2. Companions
Function
Store and summon pets (wolves, cats, and third-party mod pets), with a maximum of two summoned at the same time.
Operations
ยท Tap V: Summon the currently selected companion;
ยท Hold V: Open the companion selection wheel, works just like the mount wheel (hover to preview, left-click to summon/store).
ยท Companions also support the blue circular icon for storing.
description_cce7a860-0d44-449d-b82a-6bbc326f1f22.gif

3. Management Interface (Press G)

Functions:
- View a 3D preview of creatures
- Remove registered mounts, vehicles, or companions
- Switch creatures between mount and companion lists

Operations:
- Press G to open the management interface, right-click menu to delete and remove vehicles or creatures
- Left-click to open a creature preview
- Hold left-click and drag: up and down to sort, left and right to switch lists
- Press Tab to switch to the vehicle management interface

4. Rescue System
1. When a player falls from a height, the summoned mount acts as a rescue summon. The creature will automatically run over from a distance and catch the player before they land. Different mounts have unique animations (like a horse running or a dragon hovering mid-air).
2. When a player is targeted by a creature's hate, the summoned companion becomes a rescue summon. It will give both the player and the summoned creature a positive buff, and the summoned creature will taunt the enemy targeting the player, actively attacking it.

description_00e52b56-7b16-400f-aa7e-4848234f2834.gif

5. Pet Resurrection

After a pet dies, there is a chance for it to be resurrected when the player sleeps in bed.

6. Pet Home (Little Nest)

You can set up a 'home' spot for your companion. Once set, your pet will appear from its home when summoned and automatically return there when stored.

description_5bc808e0-eb40-4f1d-afe0-2979208c50a6.gif

7. Others
Most settings can be changed in the configuration files.
The mod has a dialogue system, and interested players can enable it in the config to give it a try.

8. Compatibility
Supports most pet vehicle mods
Some mods with their own implementation won't work
If you want to store vehicles from Create: Aeronautics, you need to download the Sable Schematic Tool
description_083611d6-16be-4e97-8ebc-ef8f5ffe5709.gif
### Mount Swap Protection
When switching mounts, the old mount is kept until the new one arrives and accepts you, preventing falls into the void.

### Deceased Creatures & Revival
- Registered creatures that die move to the **Deceased List**, with a preview and removed from active wheels.
- If **Sleep Revival** is enabled, each time you wake up there is a chance (default 70%, 10-min cooldown) that a deceased companion respawns nearby.
- Creatures can also be recovered via the **Emergency Vault** or **Auto-Backups**.

### Emergency Vault & Auto-Backups
- **Vault**: Automatically saves a creature snapshot before dangerous operations. Holds up to 30 snapshots.
- **Auto-Backups**: Periodically saves your full mount, companion, and deceased lists (default every 30 min, keeping 6 copies).
- Restore with commands:
ย  ```
ย  /findme vault list
ย  /findme vault restore <index>
ย  /findme backup list
ย  /findme backup restore <index>
ย  ```

## Command Reference
All commands use the prefix `/findme`.

| Command | Description |
|---------|-------------|
| `/findme mount list` | List all mounts and their indices |
| `/findme mount summon` | Summon / dismiss current mount |
| `/findme mount return` | Send current mount back to its saved position |
| `/findme mount remove <index>` | Remove a mount |
| `/findme companion list` | List all companions and their indices |
| `/findme companion summon` | Summon / dismiss current companion |
| `/findme companion return` | Send current companion back to its saved position |
| `/findme companion remove <index>` | Remove a companion |
| `/findme vault list` / `restore <index>` | Manage emergency vault snapshots |
| `/findme backup list` / `restore <index>` | Manage full list backups |

## Common Configuration
Config file: `config/find_me-common.toml` (requires restart after changes).

### Safety & Backups
```toml
enableVault = true
vaultCapacity = 30
enableAutoBackups = true
backupIntervalMinutes = 30
backupCapacity = 6
postTeleportInvulnerabilitySeconds = 1.5 ย # Invulnerability after forced teleport
```

### Revival
```toml
enableSleepRevive = true
sleepReviveCooldownMinutes = 10
sleepReviveChance = 0.7
sleepReviveSpawnEntity = true ย  # Set to false for modpacks with giant creatures
```

### Summon Cooldowns (20 ticks = 1 second)
```toml
mountCooldownTicks = 60
companionCooldownTicks = 40
combatMountCooldownTicks = 40 ย  # During combat
returnCooldownTicks = 40
rescueMinFallDistance = 5
safeSearchRadius = 12 ย  ย  ย  ย  ย  # Increase for large creatures
```

### Combat
```toml
enablePvpSummon = true
enableCombatSpeedBoost = true
combatSpeedBoostPercent = 0.2
combatSpeedBoostTicks = 60
```

### Compatibility Overrides
If a modded creature is not recognized correctly as a mount/companion, or its movement type is wrong:
```toml
customMounts = ["modid:entity_id"]
customCompanions = ["modid:entity_id"]
customMoveTypes = ["modid:entity_id=fly"] ย  # Valid: walk, swim, companion
previewScaleOverrides = ["modid:entity_id=0.75"] ย # Adjust GUI preview size
```

## Troubleshooting Checklist
1. Press `G` and check which list the creature is in (Mounts / Companions / Deceased).
2. Use `/findme mount list` or `companion list` to verify the server-side lists.
3. Creature died? Try sleep revival, or check `/findme vault list` and `/findme backup list` to restore.
4. Creature in wrong list? Dismiss it first, then drag it to the other list in the management screen.
5. Modded creature behaves oddly? Add a `customMounts` or `customMoveTypes` override.
6. When testing modpacks, always keep `enableVault` and `enableAutoBackups` enabled to prevent accidental loss.

This mod adds a complete system for vehicles, mounts, and pets to Minecraft.

find me

1. Mounts and Vehicles

Function Store, summon, and rescue mounts (horses, dragons, etc.) and vehicles (boats, minecarts, other vehicle mods). Only one mount or vehicle can be summoned at a time.

Controls ยท Short press R: Summon the currently selected mount/vehicle; if already summoned, perform aerial rescue (the mount automatically catches a falling player). ยท Long press R: Open the mount/vehicle selection wheel. ยท Inside the wheel: Hover your mouse over a creature to select it; left-click to immediately summon/rescue that creature. ยท Store: Summoned creatures are shown with a blue circle in the wheel, left-click to store them. ยท Switch category: Press Tab while the wheel is open to switch between mount and vehicle wheels.

find me find me

2. Companions

Function Store and summon pets (wolves, cats, and third-party mod pets), with a maximum of two summoned at the same time. Operations ยท Tap V: Summon the currently selected companion; ยท Hold V: Open the companion selection wheel, works just like the mount wheel (hover to preview, left-click to summon/store). ยท Companions also support the blue circular icon for storing.

find me

Spoiler

3. Management Interface (Press G)

Functions:

  • View a 3D preview of creatures
  • Remove registered mounts, vehicles, or companions
  • Switch creatures between mount and companion lists

Operations:

  • Press G to open the management interface, right-click menu to delete and remove vehicles or creatures
  • Left-click to open a creature preview
  • Hold left-click and drag: up and down to sort, left and right to switch lists
  • Press Tab to switch to the vehicle management interface

4. Rescue System

  1. When a player falls from a height, the summoned mount acts as a rescue summon. The creature will automatically run over from a distance and catch the player before they land. Different mounts have unique animations (like a horse running or a dragon hovering mid-air).
  2. When a player is targeted by a creature's hate, the summoned companion becomes a rescue summon. It will give both the player and the summoned creature a positive buff, and the summoned creature will taunt the enemy targeting the player, actively attacking it.

find me

5. Pet Resurrection

After a pet dies, there is a chance for it to be resurrected when the player sleeps in bed.

6. Pet Home (Little Nest)

You can set up a 'home' spot for your companion. Once set, your pet will appear from its home when summoned and automatically return there when stored.

7. Others

Most settings can be changed in the configuration files. The mod has a dialogue system, and interested players can enable it in the config to give it a try.

8. Compatibility

Supports most pet vehicle mods Some mods with their own implementation won't work If you want to store vehicles from Create: Aeronautics, you need to download the Sable Schematic Tool

Emergency Vault & Auto-Backups

  • Vault: Automatically saves a creature snapshot before dangerous operations. Holds up to 30 snapshots.
  • Auto-Backups: Periodically saves your full mount, companion, and deceased lists (default every 30 min, keeping 6 copies).
  • Restore with commands:
    /findme vault list
    /findme vault restore <index>
    /findme backup list
    /findme backup restore <index>
    

Command Reference

All commands use the prefix /findme.

Command Description
/findme mount list List all mounts and their indices
/findme mount summon Summon / dismiss current mount
/findme mount return Send current mount back to its saved position
/findme mount remove <index> Remove a mount
/findme companion list List all companions and their indices
/findme companion summon Summon / dismiss current companion
/findme companion return Send current companion back to its saved position
/findme companion remove <index> Remove a companion
/findme vault list / restore <index> Manage emergency vault snapshots
/findme backup list / restore <index> Manage full list backups

Common Configuration

Config file: config/find_me-common.toml (requires restart after changes).

Safety & Backups

enableVault = true
vaultCapacity = 30
enableAutoBackups = true
backupIntervalMinutes = 30
backupCapacity = 6
postTeleportInvulnerabilitySeconds = 1.5  # Invulnerability after forced teleport

Revival

enableSleepRevive = true
sleepReviveCooldownMinutes = 10
sleepReviveChance = 0.7
sleepReviveSpawnEntity = true   # Set to false for modpacks with giant creatures

Summon Cooldowns (20 ticks = 1 second)

mountCooldownTicks = 60
companionCooldownTicks = 40
combatMountCooldownTicks = 40   # During combat
returnCooldownTicks = 40
rescueMinFallDistance = 5
safeSearchRadius = 12           # Increase for large creatures

Combat

enablePvpSummon = true
enableCombatSpeedBoost = true
combatSpeedBoostPercent = 0.2
combatSpeedBoostTicks = 60

Compatibility Overrides

If a modded creature is not recognized correctly as a mount/companion, or its movement type is wrong:

customMounts = ["modid:entity_id"]
customCompanions = ["modid:entity_id"]
customMoveTypes = ["modid:entity_id=fly"]   # Valid: walk, swim, companion
previewScaleOverrides = ["modid:entity_id=0.75"]  # Adjust GUI preview size

Troubleshooting Checklist

  1. Press G and check which list the creature is in (Mounts / Companions / Deceased).
  2. Use /findme mount list or companion list to verify the server-side lists.
  3. Creature died? Try sleep revival, or check /findme vault list and /findme backup list to restore.
  4. Creature in wrong list? Dismiss it first, then drag it to the other list in the management screen.
  5. Modded creature behaves oddly? Add a customMounts or customMoveTypes override.
  6. When testing modpacks, always keep enableVault and enableAutoBackups enabled to prevent accidental loss.

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Modrinth
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched and imported data for this project from CurseForge or Modrinth. High-traffic and active projects are checked more often.
Next pipeline sync