Skip to content
home/templates/daily reward (/daily)
economyBeginnermc 1.20.x – 1.21.x9 lines

daily reward (/daily)

players can claim a reward once per 24 hours. tracks per-player using a Skript variable.

vanilla Skriptno addons required.
daily-reward.sk9 lines
command /daily:
    trigger:
        if difference between {daily.%uuid of player%} and now is less than 24 hours:
            send "&cYou already claimed your daily reward!" to player
            stop
        set {daily.%uuid of player%} to now
        give 1 diamond to player
        send "&aDaily reward claimed! Come back in 24 hours." to player

get it running

daily-reward.sk · 9 lines · vanilla Skript
  1. 1

    copy or download

    grab the .sk file with the buttons up top.

    daily-reward.sk· ready to drop in
  2. 2

    drop it in your scripts folder

    save it exactly here on your server — no typos, just copy the path:

    …/plugins/Skript/scripts/daily-reward.sk
  3. 3

    reload in-game

    run this in chat or console — your script goes live instantly:

    /sk reload daily-reward
that's it — your script is live. hop in-game to try it.
/ related templates

more economy templates

comments