luckperms prefix in scoreboard

  • 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 community!

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

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

completeidiot

Member
May 5, 2024
46
1
8
so. uh. i have placeholder api, skript-placeholders, skript and skbee all fully updated

i have installed the luckperms extention thing with placeholder api

code:
Code:
on join:
    if {kills::%player's uuid%} is not set:
        set {kills::%player's uuid%} to 0
    if {deaths::%player's uuid%} is not set:
        set {deaths::%player's uuid%} to 0
    if {bal::%player's uuid%} is not set:
        set {bal::%player's uuid%} to 0

on load:
    loop all players:
        if {kills::%loop-player's uuid%} is not set:
            set {kills::%loop-player's uuid%} to 0
        if {deaths::%loop-player's uuid%} is not set:
            set {deaths::%loop-player's uuid%} to 0
        if {bal::%loop-player's uuid%} is not set:
            set {bal::%loop-player's uuid%} to 0

every 0.5 seconds:
    loop all players:
        if loop-player is online:
            #clear fastboard of loop-player
            set title of loop-player's fastboard to "<##0030FB>r<##0038FB>a<##0040FC>n<##0049FC>d<##0051FC>o<##0059FC>m <##0061FD>t<##0069FD>e<##0072FD>s<##007AFD>t <##0082FE>s<##008AFE>e<##0092FE>r<##009BFE>v<##00A3FF>e<##00ABFF>r"

            set line 1 of loop-player's fastboard to "&r&r "
            set line 2 of loop-player's fastboard to "&7&lPlayer:"
            set line 3 of loop-player's fastboard to "  &8• &r%%luckperms_prefix%% &8&l%loop-player%"
            set line 4 of loop-player's fastboard to "  &8• <##FB3500>&lKills: <##FB5300>%{kills::%loop-player's uuid%}%"
            set line 5 of loop-player's fastboard to "  &8• <##CB0000>&lDeaths: <##FF0000>%{deaths::%loop-player's uuid%}%"
            set line 6 of loop-player's fastboard to "  &8• <##00FB12>&lBalance: <##76FB00>%{bal::%loop-player's uuid%}%"
            set line 7 of loop-player's fastboard to "&r       "
            set line 8 of loop-player's fastboard to "&7&lServer:"
            set {_mem} to placeholders "  &8• &6Memory Usage: <##FBF800>%%server_ram_used%%MB&e/<##FBF800>%%server_ram_max%%MB" for loop-player
            set line 9 of loop-player's fastboard to "%{_mem}%"
           
command testprefix:
    trigger:
        send "%%luckperms_prefix%%" to player

anyways yeah thanks
this is what it returns by the way (check attached)
1762570475993.png