LeoTweaks TNTRUN Outlines

Just adds a slightly darker outline to all TNT-RUN related blocks to make Single hopping and Area perception a bit easier in the TNT RUN minigame.

TNT Drop All

give explosions (tnt, creeper, etc.) a 100% block drop rate, replacing the 25% drop rate of pre-19w11a, making many farms more efficient and stopping the loss of blocks by creeper explosions

it stands apart as the only mod of it’s kind for legacy fabric

the first mod i made by myself, not very complicated heh

TLobbyCommand

# TLobbyCommand
Simple hub & lobby command

# Features
– Hub & lobby command
– Multiple lobbys

# Commands
– /tlc version

# Permissions
– tlc.version

# Dependencies
– None

TitleInfo

# TitleInfo — The Ultimate Navigation Suite 🚀

![Image Preview](https://cdn.modrinth.com/data/cached_images/44cbedc28e1bcdc10f8140d7ab2b274e9ad39552.png)

✨ Elevate Your Minecraft Experience ✨

Action Bars • Waypoints • Smart Sharing • Developer API

**TitleInfo** is a high-performance, lightweight utility designed to bridge the gap between immersion and information. By leveraging the Action Bar and a robust Waypoint system, it provides essential data without cluttering your chat or screen.

Now featuring a **Full Developer API**, TitleInfo is the perfect foundation for survival servers, RPGs, and competitive factions that want to integrate coordinate and navigation data into their own systems.

## 🌟 Core Features

### 📡 Dynamic Action Bar
Stop typing `/coords`. Keep your eyes on the world with real-time HUD elements:
* **📍 Precision Tracking:** Coordinates (X, Y, Z) and Facing Direction.
* **🌍 World Data:** Current Biome and In-game/Real-world Time.
* **🚩 Active Navigation:** Distance and direction to your selected Waypoint.
* **⚙️ Toggleable:** Use `/ti display` to customize exactly what *you* see.

### 📍 Advanced Waypoint System
* **Set & Forget:** Create waypoints at your feet or specific coordinates.
* **Smart HUD:** Select a waypoint to see a live distance tracker in your action bar.
* **Cross-World Support:** Track locations across dimensions with ease.

### ✉️ Seamless Coordinate Sharing
* **Global/Private:** Share your location with the whole server or a specific friend.
* **One-Click Waypoints:** Recipients can instantly save shared coordinates as their own waypoints.

### 🛠️ Administrative Control
* **Player Support:** Set or remove waypoints for players remotely.
* **UI Management:** Force-toggle display options for specific players or ranks.

## 💻 Developer API
TitleInfo now exposes a powerful API for other plugin developers to hook into the navigation flow.

### 🔌 Quick Start
Add the **TitleInfo.jar** to your project dependencies and access the API via the provider:

> TitleInfoApi api = TitleInfoApiProvider.get();

### 📍 Example: Setting a Waypoint
You can update or create waypoints for any player. It is recommended to use the **Async** methods to keep your main thread healthy:

> UUID playerId = player.getUniqueId();
> Location loc = player.getLocation();
>  
> // Set a waypoint asynchronously
> api.upsertWaypointAsync(playerId, “Home Base”, loc).thenAccept(success -> {
>      if (success) {
>          player.sendMessage(“Waypoint synchronized!”);
>      }
> });

### 📡 Example: Listening for Events
Hook into user actions to add custom logic, such as blacklisting certain names:

> @EventHandler
> public void onWaypointSet(TitleInfoWaypointSetEvent event) {
>      // Prevent players from naming waypoints “Spawn”
>      if (event.getWaypointName().equalsIgnoreCase(“Spawn”)) {
>          event.setCancelled(true);
>          event.getPlayer().sendMessage(“That waypoint name is reserved!”);
>      }
> }

## 🎨 Commands & Permissions

| Command | Description | Permission |
| :— | :— | :— |
| `/ti display ` | Toggle specific HUD elements | `titleinfo.display` |
| `/ti share [player]` | Share your current location | `titleinfo.share` |
| `/ti waypoint ` | Manage your personal waypoints | `titleinfo.waypoint` |
| `/ti admin ` | Administrative overrides | `titleinfo.admin` |

## 🚀 Installation & Tech Specs
1. **Download** the latest release.
2. **Drop** into your `/plugins` folder.
3. **Restart** and enjoy!

* **✅ Compatibility:** Minecraft 1.13 – 1.21.x+
* **📦 Dependencies:** None (Standalone), but supports **Adventure API** for rich text.

Developed with ❤️ by RRS

TitleAnnouncer

# TitleAnnouncer

![GitHub WorkFlow](https://github.com/4drian3d/TitleAnnouncer/actions)
![Latest Version](https://img.shields.io/github/v/release/4drian3d/TitleAnnouncer?style=flat-square)
![Discord](https://discord.gg/5NMMzK5mAn)
![Modrinth Downloads](https://img.shields.io/modrinth/dt/d769vI4q?logo=Modrinth&style=flat-square)
![GitHub Downloads](https://img.shields.io/github/downloads/4drian3d/TitleAnnouncer/total?logo=GitHub&style=flat-square)

A lightweight plugin to send Titles, Actionbars, Bossbars and Chat Announces to Paper servers and Velocity networks.

## Features
– Ability to send announcements by using titles, actionbars, bossbars, and chat messages.
– Send announcements to users in the same world or server you are in.
– Send announcements to a specific user.
– Use of the MiniMessage format throughout the plugin, allowing the maximum possible customization.
– MiniPlaceholders support

![](https://www.bisecthosting.com/4drian3d?r=ModTitleAnnouncer)

## Commands

To use the commands in Velocity, just add a “v” at the beginning of the command, for example: “/vannounce” or “/vtitleannouncer”.

### Announce Command

| Command | Arguments | Permission |
|————————-|————————————————————————————————|————————|
| /announce or /vannounce | [(Format type)](#format-argument) [(Target Argument)](#target-argument) (Format Arguments) | titleannouncer.command |

## Arguments

### Target Argument

When sending an announcement, you can define who to send it to using the target argument.
This argument allows you to select either an online player or the executor themselves, a server, or a world to send the announcement to.
The available targets are:

#### Self Target

This target allows you to send the respective announcement to the same executor of the command.
Keep in mind that if the server console uses this target, it will not be able to receive bossbars, actionbars, titles, or sounds;
it will only be able to receive chat announcements

**Example Usage**

`/(v)announce chat self Some announcement`

#### Player Target

This target allows you to send an announcement to a specific player.

Use the format `“player:PlayerName”`.

As it is an argument that uses a colon character and due to limitations of the Minecraft Vanilla command system,
it must be enclosed in quotation marks.

If executed in-game, online player names will be suggested.

**Example Usage**

`/(v)announce title “player:4drian3d” “TitleAnnouncer” “by 4drian3d”`

#### All Target

This target allows you to send an announcement to all players on the server or proxy.

If you run the command from TitleAnnouncer in Velocity, the announcement will be sent to all players on your network.
If you run it from TitleAnnouncer installed in Paper, the announcement will be sent to players connected to the server where it is run.

**Example Usage**

`/(v)announce actionbar all TitleAnnouncer | `

#### Server Target

> This target is exclusive to Velocity

This target allows you to send an announcement to the specific server where the player executing it is connected, or to a specific server.

For the executor to send the announcement to the server where it is connected, you only need to place `server` as an argument.

But if the executor wants it to be executed on another server, it must be specified with the format `“server:ServerName”`.
Like the player argument, when requiring `:`, it must be enclosed in quotation marks.

**Example Usage**

`/vannounce bossbar server 30 blue notched_12 A big announcement!!!`

`/vannounce bossbar “server:lobby” 30 blue notched_12 A big announcement!!!`

#### World Target

> This target is exclusive to Paper

This target allows you to send an announcement to the world where the player executing the command is located or to a specified world.

If you want to send the announcement to the world where the player is located, you must use the `world` argument.

But if you want to specify another world, you must use the `“world:WorldName”` argument.
Like the player argument, when requiring `:`, it must be enclosed in quotation marks.

**Example Usage**

`/announce bossbar world 30 blue notched_12 A big announcement!!!`

`/announce bossbar “world:lobby” 30 blue notched_12 A big announcement!!!`

### Format Argument

#### Chat Format

| Arguments | Permission |
|————-|—————————–|
| [Message] | titleannouncer.command.chat |

![Self Chat Announcement](https://github.com/4drian3d/TitleAnnouncer/blob/main/img/ChatAnnouncementSelf.png?raw=true)

#### Actionbar Format

| Arguments | Permission |
|————-|———————————-|
| [Message] | titleannouncer.command.actionbar |

![All Actionbar Announcement](https://github.com/4drian3d/TitleAnnouncer/blob/main/img/AllAnnouncementActionbar.png?raw=true)

#### Title Format

| Arguments | Permission |
|—————————————————————–|——————————|
| [Title] [SubTitle] (FadeIn Time) (Stay Time) (FadeOut Time) | titleannouncer.command.title |

![Player Title Announcement](https://github.com/4drian3d/TitleAnnouncer/blob/main/img/PlayerAnnouncementTitle.png?raw=true)

#### BossBar Format

| Arguments | Permission |
|—————————————————|——————————–|
| [Display Time] [Color] [Overlay] [Content] | titleannouncer.command.bossbar |

![Server BossBar Announcement](https://github.com/4drian3d/TitleAnnouncer/blob/main/img/ServerAnnouncementBossbar.png?raw=true)

#### Sound Format

> If running on Velocity, this format will only be able to send sounds to players with versions higher than 1.19.3.

| Arguments | Permission |
|———————————————-|——————————|
| [Sound Key] (Source Type) (Volume) (Pitch) | titleannouncer.command.sound |

TitanLogin

TITAN LOGIN – MASSIVE PLATFORM UPDATE

Release Overview

Titan Login has officially evolved from a simple authentication plugin
into a powerful, modular login platform. This update introduces advanced
GUI systems, new authentication methods, administrative tools, and the
official launch of the Titan Login Extension Store.

————————————–
NEW: LOGIN SELECTOR GUI
————————————–
Players can now choose their preferred
login method through a dedicated Login
Selector GUI.

✔ Permission-based access(needs gui permission) ✔ Remembers
player selection automatically ✔ Opens
chosen login method on future logins ✔
Clean and professional user experience

This feature ensures flexibility while
keeping the system organized and
user-friendly.
————————————–

NEW ADMIN COMMAND

/tl admin reset method

Administrators can now reset a player’s selected login method instantly.
This is useful for support, troubleshooting, or forcing re-selection
when needed.

————————————–
UNIFIED COMMAND HANDLER
————————————–
/tl /titanlogin

Typing either command now displays a
clean list of available subcommands,
making the system more intuitive and
professional.
————————————–

NEW LOGIN METHODS

1) ANVIL GUI LOGIN A modern, immersive login experience using the Anvil
interface. Secure, clean, and difficult to shoulder-surf.

2) PINPAD LOGIN GUI (COMING SOON) An upcoming interactive PIN-based
login system designed for maximum security and usability.

————————————–
OFFICIAL EXTENSION STORE LAUNCH
————————————–
Website:
https://titanlogin-store.netlify.app

Titan Login now supports a full
extension ecosystem.

✔ Developers can build custom
extensions ✔ Server owners can extend
functionality ✔ Modular architecture
for infinite scalability ✔ Full
documentation and guidance available
on the website

Titan Login is no longer just a plugin
— it is now a growing platform.
————————————–

UPCOMING MAJOR UPDATE (After February 28)

A massive update is scheduled to further enhance performance, security,
and customization features. Titan Login is continuously evolving toward
becoming the most advanced authentication solution for Minecraft
servers.

————
FINAL NOTE
————

Titan Login is built with scalability, security, and innovation in mind.
With modular architecture and a growing ecosystem, this project is
setting a new standard for login systems.

This is only the beginning.

Tip4serv Donation Webstore

Tip4serv.com provides gaming communities with a platform to effortlessly set up their virtual store and facilitate the sale of digital goods, including donations.

Managing a community and creating content can be demanding tasks. We aim to streamline the process, enabling managers to efficiently handle donations and automatically reward players.

Our mission is to deliver a user-friendly platform that simplifies the experience for both creators and buyers.

Here are examples of stores that you can customize: https://murga.tip4serv.com, https://neon.tip4serv.com and https://steelcraft.tip4serv.com

## Features for starter plan (only 5% fee)
– Unlimited game servers & commands
– Create subscriptions plan
– Commands status tracking
– Stock management
– Deliver roles & messages on Discord
– Create discount coupon
– Add managers for your store
– Purchase email and invoice
– Sales statistics
– Private flow for subscribers
– Custom sub-domain
– Resend commands
– No ads

## Features for PRO members (subscription required)
– Dynamic Dark/Light theme
– Account linking with avatars
– Product page with gallery & video
– GUI colors editor & additional CSS
– Top customers & related products

## Store available in 15 languages

English, Danish, Dutch, English, French, German, Hungarian, Italian, Norwegian, Polish, Portuguese, Romanian, Russian, Spanish, Swedish and Turkish.

## Payment method

Here are the payment methods you can offer your players: Visa, Paypal, Cash App, Google Pay, Apple Pay, Ideal, GiroPay, BanContact, Sofort, Sepa, EPS, BACS, Amazon Pay, Revolut Pay, Mobile Pay, MultiBanco, BECS, Przelewy24, Boleto, Oxxo, Afterpay, Link.

## How does this work?

Tip4Serv checks if a player has made a donation on your Tip4Serv store and delivers the order in a minute (e.g., group, money, etc.) by executing commands in the server console.

Create your store and connect your Minecraft server in **5 minutes** on Tip4Serv in 4 simple steps:

1. **Store Settings:**
Enter your store name and set the desired URL.

2. **Payment Methods:**
Select your preferred payment options.

3. **Connect Server:**
Link your Minecraft server to Tip4Serv using your API key.

4. **Add Products:**
Create and configure products with executable commands on your server.

## Commands

**tip4serv connect** – Link your server to Tip4Serv (Ensure the API key is correctly set in tip4serv/tip4serv.key).

**tip4serv reload** – Deliver pending orders if there are any.

**/storelink** – Show a link to the store in the server chat.

## Proxy commands (Velocity & Bungeecord)

**tip4proxy connect** – Link your server to Tip4Serv.

**tip4proxy reload** – Deliver pending orders if there are any.

## Need help?
– Documentation
– Contact us

Tiny Tools+

Are the default tools taking up too much screen space? “Tiny Tools+” offers a clean and subtle redesign of all essential items — Sword, Pickaxe, Axe, Shovel, and Hoe — now in smaller, sleeker versions!
This pack retains the vanilla Minecraft feel while making your tools more compact — perfect for PvP or simply a cleaner visual experience.

tiny tools

a resource pack that tools smaller but preserve the vanilla look.

showcase video:

if you want to download every tool individualy

tiny spears:https://modrinth.com/resourcepack/tiny-spear

tiny shears:https://modrinth.com/resourcepack/tiny-shears

tiny mace:https://modrinth.com/resourcepack/tiny-mace

tiny pickaxe:https://modrinth.com/resourcepack/tiny-pickaxe

tiny axe:https://modrinth.com/resourcepack/tiny-axe

tiny swords:https://modrinth.com/resourcepack/tiny-sword

tiny trident:https://modrinth.com/resourcepack/tiny-trident

Tiny bow:https://modrinth.com/resourcepack/tiny-bow

tiny sield:https://modrinth.com/resourcepack/tiny-shield

Tiny crossbow:https://modrinth.com/resourcepack/tiny-crossbow

Tiny shovels:https://modrinth.com/resourcepack/tiny-shovels

Tiny hoes:https://modrinth.com/resourcepack/tiny-hoe

tiny fishing rod:https://modrinth.com/resourcepack/tiny-fishing-rod

tiny buckets:https://modrinth.com/resourcepack/tiny-buckets

all my packs:https://modrinth.com/user/erez43

tiny sword

a resource pack that that make the sword texture smaller but still preserve the vanilla look.

This resource pack is part of my ”tiny tools” series. packs in the series:

tiny spears:https://modrinth.com/resourcepack/tiny-spear

tiny shears:https://modrinth.com/resourcepack/tiny-shears

tiny mace:https://modrinth.com/resourcepack/tiny-mace

tiny pickaxe:https://modrinth.com/resourcepack/tiny-pickaxe

tiny axe:https://modrinth.com/resourcepack/tiny-axe

tiny swords:https://modrinth.com/resourcepack/tiny-sword

tiny trident:https://modrinth.com/resourcepack/tiny-trident

Tiny bow:https://modrinth.com/resourcepack/tiny-bow

tiny sield:https://modrinth.com/resourcepack/tiny-shield

Tiny crossbow:https://modrinth.com/resourcepack/tiny-crossbow

Tiny shovels:https://modrinth.com/resourcepack/tiny-shovels

Tiny hoes:https://modrinth.com/resourcepack/tiny-hoe

tiny fishing rod:https://modrinth.com/resourcepack/tiny-fishing-rod

tiny buckets:https://modrinth.com/resourcepack/tiny-buckets

all my packs:https://modrinth.com/user/erez43