Recent content by thomas_nietoke

  • 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

    Solved Fishing loot

    Thanks man! I appreciate it.
  2. T

    Baltop

    Could someone make me a baltop using "player's balance"? thx already
  3. 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...
  4. T

    Solved Help with enchants

    Solved
  5. T

    Solved Enchant help

    That works ty!
  6. T

    Solved Enchant help

    How can i add an enchantment to this? give player unbreakable wooden pickaxe named "&7Competent Pickaxe"
  7. 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
  8. 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...
  9. 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...
  10. T

    Pets

    The plugin works really good! Keep up the good work man :D
  11. 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...
  12. T

    multiplier

    i'll try https://pastebin.com/G04yhjN2 I use these skripts where should i put the {gold::%player%}+{gold::%player%}*0.5 ?
  13. 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.
  14. 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...
  15. 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...