Recent content by Luke_Sky_Walker

  • 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. Luke_Sky_Walker

    Citizens does not work.

    Maybe try: name of event-entity. I'm not sure if that would work however. Alternatively, you can check on right click of entity then the name, without using citizen based expressions (if the issue has to do with your script addons).
  2. Luke_Sky_Walker

    compare player

    if player is {ready::*} set should be if {ready::*} contains player
  3. Luke_Sky_Walker

    filled map id

    Use this for setting NBT values of items: https://skripthub.net/docs/?id=10834.
  4. Luke_Sky_Walker

    player nametags

    I would not recommend doing this. Executing console commands using Skript is inefficient since there's so many expressions that you can use instead of it. I would instead recommend (This is assuming you have LuckPerms + TAB) simply setting the player's group/prefix (Which is a vanilla skript...
  5. Luke_Sky_Walker

    Change Biome of World

    You could probably achieve this with a datapack (It sounds like it should be possible with a datapack, could be wrong). If I'm wrong, you may have to use WorldEdit or some kind of building based plugin.
  6. Luke_Sky_Walker

    I want to make a block that moves with me

    You'll find this resource helpful! You can probably achieve this by summoning a display entity and locking it to the position of the player offset by a few blocks or so: https://skripthub.net/docs/?id=12346. As for right clicking, probably add nbt data to that summoned display entity then when...
  7. Luke_Sky_Walker

    Fishing indicator

    Your main issue though I believe is because you'd have to spawn it at the coords of the hook (Setting it manually ie set {_cord} to location of hook of event-entity). Also a better option for text that would be a tad less laggy would be using text displays (If you're running newer Minecraft). By...
  8. Luke_Sky_Walker

    Head that follows the player

    You could likely do this with block displays (I'm pretty sure block displays support custom heads).
  9. Luke_Sky_Walker

    Solved Cancel event for Zombie picking up dropped items

    Did some digging. The solution seems a little counterintuitive (Since event-entity doesn't work with on entity pickup). Check out the solution found in a similar thread here. You have to use event-creature I believe.
  10. Luke_Sky_Walker

    /Daily Command

    There is a cooldown option for commands and would allow you to write your code without any variables.
  11. Luke_Sky_Walker

    Make note blocks louder

    Firstly, when the song starts playing (Whichever event you have to run it), loop or get all the players in your region. After that, you can just play the note block song at the player.
  12. Luke_Sky_Walker

    Give players rank by a command- LUCKPERMS

    You can do it without needing to run a console command. Ie: set player's group to "GroupName".
  13. Luke_Sky_Walker

    1.21.5 Enchanted book skript help

    It's probably better to use the built in Skript expression to give items: https://docs.skunity.com/syntax/search/id:4978. Solution:
  14. Luke_Sky_Walker

    If beacon is activated

    https://skripthub.net/docs/?id=13319 Here
  15. Luke_Sky_Walker

    How to delete dropped items?

    It should be: if loop-dropped item is unbreakable. To check if it's unbreakable