RDQ v6.0.0-Alpha-Build-14

Cross Server | Quests | Ranks | Tree | Passives/Unlocks | Stats | Achievements
Implement Spigot Chat API calls for all console log messages.

New command:
/rq MythicTop {player_name | mob_name} - display top 10 mythic kills for specified player
/rq
MythicCount <PlayerName> <MobName> - Get kill count of a mythic mob
Fixed ranking up without groups created in LuckPerms
Fix showing potion name in Rank Up GUI instead of potion ID
Updated kill counting to properly manage in database
Updated /rq killcount to require proper syntax

New Command: /rq killtop {PlayerName | MobName}

/rq KillTop PlayerName - display top 10 kills for specified player
/rq KillTop MobType - display top 10 kills for specified mob (for PVP kills use MobType "Player")
Bug fixes to ranks and deprecated all Bukkit legacy player message methods replacing them with Spigot Chat API components for better integration with Spigot/Paper servers.
Added support for potions to rank cost
Added support for damageable items. i.e. can no longer turn in damaged items for rank up
Fixed NPC listener null error
Fixed PassiveGUI and PassiveNPC permission node
Fixed Rank and RankManager null errors
Fixed available rank checks to check LuckPerm group

Example config for potions:

Potion Item ID : amount requiremed
splash_potion{Potion:strong_healing}:1

Item IDs can be found at https://minecraftitemids.com/

Check out the wiki for config examples https://plugins.amzmcwiki.com/
SQLite bug fix when initially creating tables.
Fix for Citizens listeners throwing null
Items.yml added to allow you to change the condensed dirt and stone items

Code:
################################################
#                                              #
#                     Items                    #
#                                              #
#          Developed by ItsRainingHP           #
#  Join 1.19.3 server at AntiMatterZoneMC.com  #
#        https://discord.gg/PqqXNNBs9Z         #
#                                              #
#                   Support                    #
#         https://discord.gg/pqG9DWm           #
################################################
LooseDirt:
  Name: "Loose Dirt"
  Material: Dirt
  Lore:
    - "The weakest of the dirt."
    - "Most people would say its useless"
    - "but seasoned miners will know better."
RockyDirt:
  Name: "Rocky Dirt"
  Material: Dirt
  Lore:
    - "Difficult to dig through."
    - "Upon closer inspection, theres not actually"
    - "that many rocks in here, it is just fairly dense."
PackedDirt:
  Name: "Packed Dirt"
  Material: Dirt
  Lore:
    - "Packed tighter than ever."
    - "It is only natural that dirt found so deep"
    - "underground would be tougher than even some rocks."
HeavyDirt:
  Name: "Heavy Dirt"
  Material: Dirt
  Lore:
    - "Filled with heavy minerals."
    - "The mixture of soil at this level makes it"
    - "more difficult than even to mine the stuff."
DenseDirt:
  Name: "Dense Dirt"
  Material: Dirt
  Lore:
    - "The densest dirt there is."
    - "Not the toughest material, but most"
    - "definitely the toughest of the dirt."
WeakStone:
  Name: "Weak Stone"
  Material: Cobblestone
  Lore:
    - "The weakest of the stones."
    - "Most people would say its useless"
    - "but seasoned miners will know better."
PettyStone:
  Name: "Petty Stone"
  Material: Cobblestone
  Lore:
    - "Slightly better than weak stone."
    - "Seems pretty useless."
HardStone:
  Name: "Hard Stone"
  Material: Cobblestone
  Lore:
    - "Rock Solid."
    - "No, seriously. Nothing that was in the wagon could"
    - "even put a scratch on this."
RoofRock:
  Name: "Roof Rock"
  Material: Cobblestone
  Lore:
    - "Extra solid and heavy."
    - "Everyone knows that roof rock is only good for 2 things:"
    - "Roofs and being in the way"
BrimStone:
  Name: "Brimstone"
  Material: Cobblestone
  Lore:
    - "Heavy with the weigh of..."
    - "...actually, I am not sure. There is just something"
    - "odd feeling about a sample pulled from so deep..."
Updated all maven dependencies
Changed from 1.19.2 to 1.19.3
Deprecated old inventory methods
Updated java docs
Fixed Passives GUI to not require LuckPerms
Fixed passives GUI to show enchanted icons with owned description when player owns passive.
Fixed AutoMelons null pointer error
Several permission nodes had typos that have been updated.
Potion passive cool downs now properly update in the database.
Added the option to show "[Town Rank] of [Town Name]" as a prefix/suffix to the config. If false will only display "[Town Rank]".

Some bug fixes to the towny suffixes.
Update 2.0.0 is available for download! Testing and development of this update is done on 1.19.3, 1.18.2, and 1.17.1. The update brings a brand new GUI to the plugin, adds a Tree Style (requires connecting ranks) or Free-Style (no previous rank requirements) rank up system, bug fixes, and new commands. The update will add new configs (and permissions) as well as change the current config files. Config files will be posted for review so you can implement any changes on your current server. Additionally, there are new commands including reload, rankup, prefix, suffix and more. You can view the configs and test the jar at the discord link under Support.

This update brings so many new features and bug fixes its almost difficult to name them all. Tons of config changes and new configs to review. See main page for configs!

Some notable changes:

Loads configs after server finishes loading all other plugins to ensure softdepends are loaded.
New GUIs (Main GUI, Ranks, Prefix, Suffix)
GUI Reworks (Quests, Passives)
New Ranks Management System
New NPCs (Main, Ranks, Prefix, Suffix)
Players can select their own prefix/suffix using the GUI. Server owners can set which prefix/suffixes are available in the configs.
Players can select their town "title/staff title" as a prefix/suffix title in GUI. Server owners can enable/disable this. - Requires Towny.
Jobs Requirements, Kill Requirements (MythicMobs enabled), mcMMO level requirements, item requirements, economy and custom plugin currency requirements to rank up.
Kill counters (You can set which enemies are to notify in ranks/messages.yml)
Enable/Disable counting spawner kills

RaindropQuests.command.passivesgui - formerly storegui
RaindropQuests.command.passivesnpc - Formerly storenpc
RaindropQuests.command.passgui - this appears in Command Managers (i.e. LuckPerms) but it is RaindropQuests.command.PassiveGUI
RaindropQuests.quests.<QuestName> - formerly ".quest." by mistake


RaindropQuests.command.callmod - call a mod to help (non-emergency)
RaindropQuests.command.ems - emergency call mod (i.e. permission issue, lost items, stuck)
RaindropQuests.command.rankup - required to use rankup command
RaindropQuests.command.tree - required to run tree command
RaindropQuests.command.<BaseCommand> - required to run base command (default is rq)
RaindropQuests.command.reload - required to run reload command
RaindropQuests.command.creategroups - required to create LuckPerm groups
RaindropQuests.command.prefix - required to use prefix command to open the GUI
RaindropQuests.command.suffix - required to use suffix command to open the GUI
RaindropQuests.command.maingui - required to open the main gui
RaindropQuests.ranks.rankup - required to rank up
RaindropQuests.ranks.bypass.economy - bypass requiring and removing economy money when ranking up
RaindropQuests.ranks.bypass.jobs - bypass requiring and removing jobs levels when ranking up
RaindropQuests.ranks.bypass.mcMMO - bypass requiring and removing mcMMO levels when ranking up
RaindropQuests.ranks.bypass.items - bypass requiring and removing items when ranking up
RaindropQuests.command.KillCount - required to run kill count on yourself
RaindropQuests.command.KillCountOthers - required to run kill count on other players

/rq maingui - opens the main gui
/rq prefix - opens the prefix gui
/rq suffix - opens the suffix gui
/rq callmod - calls a support/mod set in discord
/rq ems - calls a support/mod notifying emergency game failure (i.e. stuck, lost inventory, etc)
/rq tree - displays set tree in structures.yml (still beta and not yet complete)
/rq reload - reloads config files
/rq creategroups - automatically create LuckPerms groups from Ranks.yml (You apply your own upgrades through permissions using /lp editor
/rq killcount <PlayerName> <MobName>
EULA: Free EULA
2,086 Views
36 Downloads
Dec 27, 2022 Published
Mar 30, 2026 Updated
Not yet rated
2.8 MB File size
Open source
  1. No
DRM-free
  1. Yes
Unobfuscated
  1. No
Type
  1. Gameplay
Supported software
  1. Bukkit
  1. Spigot
  1. Paper
  1. Folia
Supported versions
  1. 1.21.11
  1. 1.21.8
  1. 1.21.5
  1. 1.21.4
  1. 1.21.2
  1. 1.21
Supported languages
  1. English
  1. Spanish
  1. Russian
  1. German
  1. French
  1. Portugese
  1. Polish
  1. Turkish
  1. Chinese
  1. Indonesian
  1. Italian
  1. Vietnamese
  1. Dutch
  1. Korean
  1. Czech
  1. Thai
  1. Hungarian
  1. Arabic
  1. Japanese
  1. Ukrainian
  1. Swedish
  1. Danish
  1. Romanian
  1. Slovak
  1. Hebrew
  1. Lithuanian
Includes DRM
No
Source access (legacy)
Closed source & unobfuscated
Creator
Recommended for you
#1 BuiltByBit Plugin ~ Protects your server from crash packet exploits ~ Folia Support
5.00 star(s) 141 ratings
4,198 purchases
Create items, blocks, mobs, emojis, and more with automatic resourcepack generation!
5.00 star(s) 53 ratings
3,155 purchases
Protect your server from crash/dupe/packet exploits with the ultimate security fix plugin.
5.00 star(s) 44 ratings
3,086 purchases
High Performance | Customizable | Cross-Version | GeyserMC | Folia Support
4.50 star(s) 71 ratings
2,811 purchases
All-in-one dungeon creator. Create unlimited, timed dungeon experiences with your own builds
4.50 star(s) 72 ratings
2,578 purchases
2,086 Views
36 Downloads
Dec 27, 2022 Published
Mar 30, 2026 Updated
Not yet rated
2.8 MB File size
Open source
  1. No
DRM-free
  1. Yes
Unobfuscated
  1. No
Type
  1. Gameplay
Supported software
  1. Bukkit
  1. Spigot
  1. Paper
  1. Folia
Supported versions
  1. 1.21.11
  1. 1.21.8
  1. 1.21.5
  1. 1.21.4
  1. 1.21.2
  1. 1.21
Supported languages
  1. English
  1. Spanish
  1. Russian
  1. German
  1. French
  1. Portugese
  1. Polish
  1. Turkish
  1. Chinese
  1. Indonesian
  1. Italian
  1. Vietnamese
  1. Dutch
  1. Korean
  1. Czech
  1. Thai
  1. Hungarian
  1. Arabic
  1. Japanese
  1. Ukrainian
  1. Swedish
  1. Danish
  1. Romanian
  1. Slovak
  1. Hebrew
  1. Lithuanian
Includes DRM
No
Source access (legacy)
Closed source & unobfuscated
Creator
Recommended for you
#1 BuiltByBit Plugin ~ Protects your server from crash packet exploits ~ Folia Support
5.00 star(s) 141 ratings
4,198 purchases
Create items, blocks, mobs, emojis, and more with automatic resourcepack generation!
5.00 star(s) 53 ratings
3,155 purchases
Protect your server from crash/dupe/packet exploits with the ultimate security fix plugin.
5.00 star(s) 44 ratings
3,086 purchases
High Performance | Customizable | Cross-Version | GeyserMC | Folia Support
4.50 star(s) 71 ratings
2,811 purchases
All-in-one dungeon creator. Create unlimited, timed dungeon experiences with your own builds
4.50 star(s) 72 ratings
2,578 purchases
Top