Search results

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

  1. T

    Baltop

    Could someone make me a baltop using "player's balance"? thx already
  2. T

    Solved Fishing loot

    Category: fishing Suggested name: Fishing (doesn't matter) Spigot/Skript Version: Skript version 2.6.1 What I want: I want a skript that changes the loot table of fishing (example: when you fish you have a chance to fish oak planks) I can add the drops i want myself, i just need help on how...
  3. T

    Solved Help with enchants

    Solved
  4. T

    Solved Enchant help

    How can i add an enchantment to this? give player unbreakable wooden pickaxe named "&7Competent Pickaxe"
  5. T

    Solved Scoreboard help

    There are no errors in this skript it simply doesn't show a scoreboard: Can anyone help? every 1 second: loop all players: wipe loop-player's sidebar set name of sidebar of loop-player to "Server" set score "&7&m-------------" in sidebar of loop-player to 6
  6. T

    Solved Gui Help

    So i'm basically trying to make something to upgrade your pickaxe with efficiency. command /upgrade: trigger: open virtual hopper named "&aUpgrades" to player if {wooden_efficiency::%player's uuid%} = 0: create a gui slot 0 of player with wooden pickaxe named...
  7. T

    Solved Sell Skript

    Category: Selling Suggested name: Sell Spigot/Skript Version: 1.12.2 Spigot / 2.2-dev36 What I want: A sell skript that will sell Coal Ore for 5$ and Iron Ore for 10$ I want that when you sell you get 1 sell message wich says how many items you sold for how many $ I want to use a variable for...
  8. T

    Split

    What i want is that it says 1,000 instead of 1000 in my variable {gold::%player%} I found this skript: but how do i make it work for my variable? function spaced(n: text) :: text: set {_s::*} to split {_n} at "." if {_s::*} is not set: return a({_n}) else: return...
  9. T

    multiplier

    I have a server wich has a /prestige command what i want is when everytime you prestige it will add +0.5 to your multiplier. {gold::%player%} you get gold when right clicking a gold block.
  10. T

    Solved Shop

    I have a /shop command on my server and when you click on the first item in it it will remove 100 from {gold::%player%} and add 1 to {GPC::%player%} what i want is when you right click on a gold block it will give you the amount of gold that your GPC is (ex GPC = 5 add 5 to gold when right...
  11. T

    Solved Quest

    command /quests: aliases: /quest trigger: open chest with 3 rows named "&6Quests" to player create a gui slot 10 of player with gold ingot named "&6Collect 100 gold!" with lore "&aProgress %{gold::%player%}%/100" to run: if {gold::%player%} >= 100: if...
  12. T

    Solved shop

    command /shop: trigger: open chest with 5 rows named "&6Shop" to player create a gui slot 10 of player with gold block named "&6&l+1GPC" to run: if {gold::%player%} >= 100: remove 100 from {gold::%player%} on right click on gold block: add...
  13. T

    Solved Shop

    command /sshop: trigger: open chest with 5 rows named "&6Shop" to player create a gui slot 10 of player with gold block named "&6&l+1GPC" to run: remove 100 from {gold::%player%} add 1 to {gold::%player%} When i click on the gold block in the shop and i have 99 gold i can still buy it how do i...
  14. T

    Solved Shop

    command /sshop: trigger: open chest with 5 rows named "&6Shop" to player create a gui slot 10 of player with gold block named "&6&l+1GPC" to run: remove 100 from {gold::%player%} add 1 to {gold::%player%} When i click on the gold block in the shop and i have...
  15. T

    Solved Prestige fix

    This is my skript: command /prestige: trigger: {gold::%player%} >= 100 broadcast "%player% has prestiged!" set {gold::%player%} to 0 add 1 to {prestige::%player%} {gold::%player%} <= 100 message "&7You need 100 gold to prestige!" to player Can anyone fix...
  16. T

    Solved Multiplier Clicker skript

    Category: / Suggested name: / What I want: I have a /shop command where it opens a GUI and there are gold blocks in it. I want to make it so when you click on the first gold block you lose 100 gold and you will get +1 gold each time you click on a gold block (so it will be 2 since you start...
  17. T

    Solved Announcement 1000 gold

    Category: automatic system to announce a broadcast Suggested name: i don't care What I want: i want a script where the broadcast will say (playername) got 1000 gold! i use this skript: on first join: set {gold.%player%} to 0 on right click on gold block: play sound "" with volume...
  18. T

    Solved Open chest

    command /shop: trigger: open chest with 5 rows Wich skript upgrade do i need to make this work?