BETA!
For feedback Join to discord: https://discord.gg/9vw92aec
⭐ Description:
With this plugin you can reward player with some materials/items/effects/money to players via database.
Just insert new row in database table and user receive notification about reward!
Useful for some
Discord bots , website donations (
$$$ ), mobile applications and other.
⭐ Features:
✔️ 1.8.x - 1.19 minecraft version support ✔️ Customize all messages to your likings ✔️ Effects, items, money, heal, exp or permissions available as reward! ✔️ AuthMe and Vault integration ⭐ ✔️ LuckPerms integration ⭐
⭐ Commands:
/claim - get all player rewards (default permission)
⭐ Examples:
Give 64 diamonds for player with uuid 3630a9c7-1b18-3c4d-9cc9-462674d3795e
Code (Text):
INSERT INTO minecraft.idl_items (uuid, type, value, qty, status) VALUES ('3630a9c7-1b18-3c4d-9cc9-462674d3795e', 'ITEM', 'DIAMOND', 64, 0)
Apply speed effect (for 99.9 seconds) for player with uuid 3630a9c7-1b18-3c4d-9cc9-462674d3795e
Code (Text):
INSERT INTO minecraft.idl_items (uuid, type, value, qty, status) VALUES ('3630a9c7-1b18-3c4d-9cc9-462674d3795e', 'EFFECT', 'SPEED', 999, 0)
Full heal and remove all bad potion effects player with uuid 3630a9c7-1b18-3c4d-9cc9-462674d3795e
Code (Text):
INSERT INTO minecraft.idl_items (uuid, type, value, qty, status) VALUES ('3630a9c7-1b18-3c4d-9cc9-462674d3795e', 'HEAL', 'Heal', 1, 0)
Give 150$
Code (Text):
INSERT INTO minecraft.idl_items (uuid, type, value, qty, status) VALUES ('3630a9c7-1b18-3c4d-9cc9-462674d3795e', 'MONEY', 'Vault', 150, 0)
Give
test.perm permission with 150 seconds expiration
Code (Text):
INSERT INTO minecraft.idl_items (uuid, type, value, qty, status) VALUES ('3630a9c7-1b18-3c4d-9cc9-462674d3795e', 'PERMISSION', 'test.perm', 150, 0)
Spoiler: config.yml
Code (YAML):
general :
configVersion
: 8
dropIfInventoryIsFull
: true
addDescriptionToItems
: false
description
: 'From the Void'
checkTicks
: 3600
# 20 ticks in one second
chatPrefix
: '&r
[ &7IDL&r
] '
integration :
AuthMe
: false
LuckPerms
: false
mysql :
host
: localhost
port
: 3306
database
: minecraft
user
: root
password
: 1234
autoMigration
: true
messages :
item_claimed
: '&2&lDone! &r&bCheck your inventory!'
item_droped
: '&2&lDone! &r&bItems on ground near you!'
inventory_full
: '&c&lOops! &6Please clear your inventory first.'
effect_claimed
: '&2&lDone! &r&bAre you already feeling the effect?'
money_claimed
: '&2&lDone! &r&bYou were given &6&l
%amount% &r&band now have &6&l%balance%'
heal_claimed
: '&2&lDone! &r&bYou are completely healed and completely full!'
experience_claimed
: '&2&lDone! &r&bExperience increased!'
permission_claimed
: '&2&lDone! &r&bNew permission in your pocket!'
new_rewards
: '&2
%amount% &6new rewards waiting for you. Use &f&l/claim &r&6command to claim it!'
no_rewards
: '&2No
any rewards available =
( '