Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Player Database
  • Skin Browser
  • Cape Gallery
  • Community Hub
  • Seed Vault

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Wanted Players
PluginMIT

Wanted Players

Add wanted stars like gta based on killstreak and gain money depends of your wanted level

40
Downloads
1
Followers
2 months ago
Updated
📦
6
Versions
economygame-mechanicsminigamepaper
Download Latestvv1.4View on Modrinth

📖About Wanted Players

Logo

WantedPlayers is a Paper plugin that adds a Wanted Level system based on player killstreaks.
It rewards bounty hunters with money via Vault and displays Wanted stars using PlaceholderAPI.


🔌 Dependencies

  • Vault – economy handling
  • PlaceholderAPI – placeholders
  • LuckPerms – groups and permissions (optionnal)
  • PvPStats Plugin – or other killstreak tracking plugin for plugin version 1.2+
  • MythicMobs - for MythicMobs reward sources (optional)

⚙️ Configuration (config.yml)

# ============================
# WantedPlayers Configuration
# ============================

# Killstreak placeholder used to get player killstreak.
# Change it with a valid killstreak placeholder from any plugin or expansion.
killstreak-placeholder: "%pvpstats_killstreak%"

# Killstreak thresholds for each Wanted level.
# Example: level 1 requires 1 killstreak, level 2 requires 3, etc.
wanted-levels:
  1: 1
  2: 3
  3: 5
  4: 10
  5: 20

# Symbols used to display stars in placeholders or messages.
stars:
  full: "★"   # Full star for achieved level
  empty: "☆"  # Empty star for levels not reached

rewards:
  # Base reward ranges for each Wanted level.
  # A random value between min and max will be chosen.
  ranges:
    1:
      min: 5
      max: 10
    2:
      min: 10
      max: 20
    3:
      min: 20
      max: 40
    4:
      min: 40
      max: 80
    5:
      min: 80
      max: 150

  # Reward sources for entities.
  # Add a mob here to make it give a reward.
  # Example: killing a player multiplies reward by 3.
  # Multiplier is optional, defaults is 1.
  reward-sources:
    player: 3
    zombie: 1
    iron_golem: 2
    # fire_dragon: 5  #Example MythicMobs entity reward source


  # Multipliers applied based on Wanted level.
  # Example: level 3 multiplies the base reward by 2.0.
  level-multipliers:
    1: 1.0
    2: 1.5
    3: 2.0
    4: 2.5
    5: 3.0

  # Multipliers applied based on LuckPerms primary group.
  # Example: vip group multiplies the reward by 2.5.
  group-multipliers:
    default: 1.0
    vip: 2.5
    vip_plus: 3

  #Reward commands
  #Available placeholders are: %player% -> return player username, %amount% -> return reward amount in decimal.
  #Add as many as you want !
  reward-command:
    - 'eco give %player% %amount%'

messages:
  # Message sent to the killer when they receive coins.
  # Placeholders:
  #   %amount% = final reward amount
  #   %stars%  = star display for Wanted level
  #   %group%  = LuckPerms group name
  kill-reward: "&aYou earned %amount% coins thanks to your Wanted level (%stars%) and your group (%group%)!"

  # Message sent when the config is reloaded with /wantedreload.
  reload: "&aConfig reloaded successfully."

📜 Commands

  • /wantedreload → reloads the configuration (config.yml)
    • Permission: wanted.reload

🪧 Placeholders (via PlaceholderAPI)

1.0 and 1.1

  • %wanted_level% → current Wanted level (1–5)
  • %wanted_stars% → star display (★/☆)
  • %wanted_multiplier% → total multiplier (Wanted × group)

1.1.1+

  • %wantedplayers_level% → current Wanted level (1–5)
  • %wantedplayers_stars% → star display (★/☆)
  • %wantedplayers_multiplier% → total multiplier (Wanted × group)

🎮 How it works

  1. Each kill increases your killstreak (via PvPStats Plugin).
  2. Your Wanted level is calculated based on thresholds.
  3. On each kill, you receive a random reward (min–max) × Wanted multiplier × group multiplier.
  4. Coins are added directly to your balance via Vault.
  5. A custom message is sent with the amount, stars, and group.

👥 Team & Contributors

Toni_4819
Toni_4819Owner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
paper
Minecraft Versions
1.211.21.11.21.21.21.31.21.41.21.51.21.61.21.7+4 more

🔗 Links

Modrinth Page