Customizable Scoreboard & Clear Inventory With Armor

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

Clucx

Member
Jun 17, 2017
2
0
0
21
Hello can anyone help me make a Customizable Scoreboard like
Host:
Type:
Scenarios:
But i also can customizable with command like "/hostadd Text"
so "Host:" bar change to "Host:Text"
And make clear inventory even armor script
 
code_language.skript:
clear inventory of player's current inventory
or
code_language.skript:
clear player's inventory

For scoreboard
http://skunity.com/search?search=scoreboard

Do that by yourself.

Tip:
code_language.skript:
every 2 seconds:
       loop all players:
             set name of sidebar of loop-player to "&eScoreboard"
            if {host.text} is not set:
                   set {host.text} to "Text"
             set score "&aHost %{host.text}%" in sidebar of loop-player to 1

command /hostadd [<text>]:
      trigger:
            if arg-1 is not set:
                 send "/hostadd TEXT"
            if arg-1 is set:
                 set {host.text} to arg-1

Not tested, writen now..