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

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

  1. Jakkeren

    Action bar doesn't work

    We're using it like this on our network: send action bar "%{_honormsg}%" to attacker So I'm guessing it's either a spacing error, or your addon/skript version being unfunctional.
  2. Jakkeren

    I'm sure there's a better way of doing this ...

    Basically I'm making a skript, making players able to exhange their gold nuggets into ingots, and ingots into blocks. What I'm trying to achieve: Using the exchange function linked below, should convert all of the selected currency (nugget, ingot, block) into either nuggets, ingots or block...
  3. Jakkeren

    Getting the player's uuid in a function

    Not very helpful. You have to use uuid of {_p} rather than {_p}'s uuid. Tested, working perfectly
  4. Jakkeren

    Skript loading error

    What version is your server running?
  5. Jakkeren

    Event - On variable = another variable

    What are you expecting? No one here is gonna make you anything, before you've tried making it yourself. What you're trying to do is one of the most straight forward things to do with skript. Simply reading the docs for 10 minutes would've resolved your issue...
  6. Jakkeren

    function error says "unexpected entry"

    Please link an image of your error. When running function from a GUI slot, I'm almost certain you have to use "to run function (name)"
  7. Jakkeren

    hi i need help

    Did you actually try to make the skript yourself? This forum is for questions, not for requests. Please come back when you have actually used google and- or youtube to try and resolve your problem first
  8. Jakkeren

    Skript Not Working

    Make sure you're running the latest version of skript(2.5.3) If you already are, try to see if any plugins are causing the error. Remove them one by one, until you find the one that is causing the problem.
  9. Jakkeren

    help detect lore

    Pretty sure this should work: if lore of player's tool contains "xxx"
  10. Jakkeren

    Conquerer not hooking into FactionsUUID

    Basically what the title says. Conquerer is not hooking into FactionsUUID - previously worked perfectly with LegacyFactions. Any ideas?
  11. Jakkeren

    Skript Problem - Can't figure out how to detect numbers

    My bad! Mark you thread as solved, if you're satisfied :emoji_grinning:
  12. Jakkeren

    Skript Problem - Can't figure out how to detect numbers

    Pardon me if I misunderstood you, but it seemed to me like you were gonna use square brackets on all your commands in the future:
  13. Jakkeren

    Skript Problem - Can't figure out how to detect numbers

    In your case it would, yes. I was simply trying to explain what square brackets do in general. Example: #Adding square brackets, the command would return <none>. We want players only able to use the command if they specify an argument. Example: command /hi <text>: trigger: send...
  14. Jakkeren

    hallo i need help with something

    Google exists: https://www.spigotmc.org/resources/skript-warps-gui.73478/ https://forums.skunity.com/threads/warp-gui-help.9575/ https://mcskripts.net/view/id/111
  15. Jakkeren

    Click on a item to open something

    You need to use: on right click with nether star: Also, triggers are only used for commands, meaning you shouldn't put it there.
  16. Jakkeren

    Skript Problem - Can't figure out how to detect numbers

    Using square brackets([ ]) just means that the extra arguments aren't vital. Therefore you won't necessarily need to put your code in squares, unless the other argument(s) are specifically required. #Example: command /stats [<player>]: trigger: if arg-1 is set: send {stats.%arg-1%}...
  17. Jakkeren

    Solved Possible name conflict of variables.

    When directing variables to a player, you need to use the % expression on each side of the target. By that, you need to change: {kills.player} to {kills.%player%} The same goes when using arguments.
  18. Jakkeren

    i need help with break thing

    If he's new, I'm sure that learning about variables would benefit him greatly in the long run. In case he'd want the skript to work with other blocks than just cobblestone my code would save him a lot of time, and if not, yours should be good, which is why I referenced it in my comment:
  19. Jakkeren

    Solved Trading system

    No problem at all Mark your thread as solved, thanks :emoji_blush:
  20. Jakkeren

    Enchant item help

    No need to make it complicated: on rightclick: player's tool is any pickaxe: enchant player's tool with efficiency (level of efficiency on player's tool + 1) Also, this has already been covered here