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. Wynnevir

    Is there a way to force the player to leftclick?

    Clicking is clientside, you can detect it but you can't make it happen. Though you could make the player damage a mob or block, you can't execute it with the animation and such.
  2. Wynnevir

    I need Help with a skript

    For the first question try loop-block instead of block, that's working for me. For the second, it doesn't seem that expression is client-side, but maybe try this one: https://docs.skunity.com/syntax/search/id:1459 That one is only to the player's you specify.
  3. Wynnevir

    Help with skript-holo

    Is it just the position of the hologram you're having trouble with? If so try this, assuming you're using skript holo addon from the syntax. create a new hologram with lines "&fCity &8| &6%{civ.u}%" and "&7This is a city" 3 blocks above player
  4. Wynnevir

    On click on this recipe book event?

    From what I'm gathering looking into this, I don't think it's possible exactly the way you'd like. It's not a slot type or an inventory type, and is client-side. This thread here mentions that's there's no reference to it in the click events of the api. Though there is this expression in the...
  5. Wynnevir

    Server crashes after spawning monster.

    Not a solution but just to add information as i was trying to test it: I definitely think It's your "while loop" that's causing it. Without that present it spawns just fine for me and doesn't crash. With it present, it crashes like you say, but the zombie is properly spawned once the server...
  6. Wynnevir

    Solved Getting custom item in a quantity

    I'm having issues referencing a custom item in a quantity greater than 1. for example this works: command /invtest: trigger: if player's inventory contains player head named "test": #if player's inventory contains {test}: <--also works send "success"...
  7. Wynnevir

    Solved Skript with Worldguard doesn't work

    Do you need World Edit for it to work? Also ran into this issue today, I have Fast Async WE.
  8. Wynnevir

    Solved New Line question for json.sk

    Ah! Thank you that's the piece I was missing.
  9. Wynnevir

    Tuske crashes my server

    post the console error on crash maybe? Might give more insight into whats going on
  10. Wynnevir

    Solved New Line question for json.sk

    I do have SkQuery, and its up to date. though ive tried other versions too. as soon as I add the %newline% expression it reloads without errors, but stops sending I get either white space errors in console or incorrect argument errors. Specifically, argument errors for %nl% and white space...
  11. Wynnevir

    Solved New Line question for json.sk

    I've been trying a few different versions of skript to get the %new line% expression in any of its variations to work in tooltip. It's on a 1.15.2 server, but regardless of version it cant understand the new line expression on reload. Does anyone know if there is a version that works,a...
  12. Wynnevir

    how to do "on damage" when weapon is bow with enchant idk for example power 2

    Try this maybe: tool of the attacker is enchanted with power 2 I'm pretty sure it was attacker and victim for damage events
  13. Wynnevir

    Solved Skript mirror MCMMO ranks

    Thank you java angel <3 I didn't realize you could make it an expression too that is really awesome
  14. Wynnevir

    Solved Skript mirror MCMMO ranks

    Category: Depression Suggested name: MCMMO Ranks Spigot/Skript Version: 1.15 What I want: I'd really like a script that can evaluate MCMMO's powerlevels and on a command, rank someone up based off them. The addon I used a long time ago is depreciated. And while I understand Skript mirror can...
  15. Wynnevir

    Make entity break wooden slabs like in Hypixel Zombies

    The best way i can think to do it would be to either do it on the zombie spawn event, wait a few seconds(so it can walk to the window) then loop the blocks in its radius and and if its wooden slab break it. Or making a worldguard region in front of the window and using the entry of that to...
  16. Wynnevir

    Solved I need a help 3

    The first 3 lines go right after your permission check for the 24-hr perm. the 4th line can go at the end, but still indented under your if statement, as you want that variable set to when they last successfully used the command. You are comparing a variable containing the time it was...
  17. Wynnevir

    Solved I need a help 3

    set {_cooldown} to difference between {cooldown.last::%player%} and now if {_cooldown} is less than 24 hours: stop set {cooldown.last::%player%} to now
  18. Wynnevir

    On rightclick with item

    Yeah it'll work if you have it execute the command, but again, what errors are you getting? With vault and essentials and your exact code it works for me so whether its working for me doesn't help you. so it has to be something else and the errors it gives you will help point in the right...
  19. Wynnevir

    On rightclick with item

    No the cocoa beans aren't the issue, that alias for the item works fine. But you do need an economy plugin and vault for the money expression to work. His code works just fine for me
  20. Wynnevir

    Making a command that does nothing

    you could check for permission when they execute any command, so long as you give all your commands a permission. If they don't have permission, send " " - nothing. https://docs.skunity.com/syntax/search/id:2054