Rapid-fire your requests :)

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

@RealStrike

Here's a scoreboard because your image didn't work. Requires SkBee.
AppleScript:
on join:
    while player is online:
        set {_mined} to mine block stat of player
        set {_deaths} to deaths stat of player
        set {_kills} to mob kills stat of player
        set {_health} to player's health
        set {_world} to player's world
        set {_ping::*} to player's ping
        set {_placed} to {placed::%player's uuid%}
        set title of player's scoreboard to "&aStats"
        set line 12 of player's scoreboard to "&c"
        set line 11 of player's scoreboard to "&b&lPlayer----"
        set line 10 of player's scoreboard to "&6Username: &a%player%"
        set line 9 of player's scoreboard to "&6Health: &a%{_health}%"
        set line 8 of player's scoreboard to "&6World: &a%{_world}%"
        set line 7 of player's scoreboard to "&6Ping: &a%{_ping::*}%"
        set line 6 of player's scoreboard to "&c"
        set line 5 of player's scoreboard to "&b&lGeneral----"
        set line 4 of player's scoreboard to "&6Blocks Placed: &a%{_placed}%"
        set line 3 of player's scoreboard to "&6Blocks Mined: &a%{_mined}%"
        set line 2 of player's scoreboard to "&6Mob Kills: &a%{_kills}%"
        set line 1 of player's scoreboard to "&6Deaths: &a%{_deaths}%"
        wait 10 ticks

on place:
    add 1 to {placed::%player's uuid%}
The link works but its not showing and i mean like while typing /stats a gui will open and show stats in items
 
How's this, @Yushaa?

AppleScript:
options:
    pearl: 8
    gaps: 64
    delay: 20 #in ticks

on join:
    while player is online:
        amount of ender pearls in player's inventory > {@pearl}:
            while amount of ender pearls in player's inventory > {@pearl}:
                remove 1 ender pearl from player
                chance of 25:
                    wait 1 tick
        amount of golden apple in player's inventory > {@gaps}:
            while amount of golden apple in player's inventory > {@gaps}:
                remove 1 ender pearl from player
                chance of 25:
                    wait 1 tick
        wait {@delay} ticks
Also for this skript, the pearl limit works but the gap limit doesnt.
 
Well you can make the gui but I made the thing to fetch all the stats for you
Oh thanks i'll do it myself but can you assist me to make the items layout like this. Can you do a single item as layouted like this
 

Attachments

  • 2024-04-24_19.45.11.png
    2024-04-24_19.45.11.png
    289.6 KB · Views: 22
That's easy, yeah. I don't know the color gradient but it'd be
Code:
compass with all item flags with lore "&7Player Stats%nl%nl%&7&l:&7 Current Deaths: &r4" named "Deaths"
 
I know i'm asking you too much but can you troubleshoot this if you are ok to do it.
 
I know i'm asking you too much but can you troubleshoot this if you are ok to do it.
Try this
AppleScript:
on break:
    player's tool is a netherite pickaxe
    player has permission "drill.pickaxe"
    loop blocks in radius 1.75 of event-block:
        break loop-block using tool
        add block 1 behind loop-block to {_blocks2::*}
        break {_blocks2::*} using tool
 
Try this
AppleScript:
on break:
    player's tool is a netherite pickaxe
    player has permission "drill.pickaxe"
    loop blocks in radius 1.75 of event-block:
        break loop-block using tool
        add block 1 behind loop-block to {_blocks2::*}
        break {_blocks2::*} using tool
Ik something u definitely cant make.
Make a binding vow [jujutsu kaisen item]

Example:

Make a nether star with the name ''&cᴄʟᴇᴀᴠᴇ ᴄʟᴇᴀᴠᴇ ʙɪɴᴅɪɴɢ sʜᴀʀᴅ'' when u hit someone with it, they take 5 hearts of damage but the person who used it will lose the shard they used to activate it and take 3 hearts of damage. make the binding shard have a 300 second cooldown between use.
 
I didn't watch much jujutsu kaisen
Anyway here's your nether star. Requires skript 2.8+

AppleScript:
on damage:
    name of 1 of attacker's tool contains "&cᴄʟᴇᴀᴠᴇ ᴄʟᴇᴀᴠᴇ ʙɪɴᴅɪɴɢ sʜᴀʀᴅ":
        attacker has attacker's tool on cooldown:
            stop
        damage victim by 5
        damage attacker by 3
        remove 1 of attacker's tool from attacker
        set item cooldown of attacker's tool for attacker to 5 minutes
 
Oh and here's a skript for giving it
AppleScript:
command giveshard <player=%player%>:
    permission: *
    trigger:
        give arg 1 of nether star named "&cᴄʟᴇᴀᴠᴇ ᴄʟᴇᴀᴠᴇ ʙɪɴᴅɪɴɢ sʜᴀʀᴅ"
 
Oh and here's a skript for giving it
AppleScript:
command giveshard <player=%player%>:
    permission: *
    trigger:
        give arg 1 of nether star named "&cᴄʟᴇᴀᴠᴇ ᴄʟᴇᴀᴠᴇ ʙɪɴᴅɪɴɢ sʜᴀʀᴅ"
OK BRO WHAT