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

    How to parse teleport flags?

    I am sending a teleport packet to the player but there is a parameter that I am having trouble with. command /test: trigger: #/tp Player ~ ~ ~ 10 10 //the command that i type to recieve these packets #0, 0, 0, 10, 10, [X, Y, Z], 38, false //these are the values that are...
  2. H

    Change player's game state in 1.18

    How do I change a player's game state in 1.18? I know this is possible using the packet Change Game State and but I am unsure how to send NMS packets in 1.18. I tried using skript reflect, but i'm not sure how to import NMS on 1.18.
  3. H

    /top command

    Loop the blocks above player, if block isn't air, if block above loop-block is air, teleport player
  4. H

    Help

    player's current inventory
  5. H

    Help

    set the inventory of chest please just read that. ;-; player, not chest
  6. H

    Help

    on right click on a player: if player's gamemode is spectator: set {_Chest} to the player inventory add helmet of player to {_Chest} add chestplate of player to {_Chest} add leggings of player to {_Chest} add boots of player to {_Chest} add off...
  7. H

    Capture Point Capping

    You can either add this to the while loop if distance between player and {KOTH::Location} is less than 4: or do this: if distance between player and {KOTH::Location} is less than 4: if {capping::*} contains player: stop else: remove player...
  8. H

    why dont work

    Do you have any errors?
  9. H

    Help with addon

    You can use vanilla skript and use: on death of player: send "Kill message" to attacker send "Death Message" to victim
  10. H

    Adding Variables Error

    We need to be able to see the error to be able to help you...
  11. H

    Most efficient way to draw on blocks?

    I want to be able to paint in minecraft but I can't figure out a efficient way to draw without gaps in between. Here is my skript: on rightclick with shield: wait 10 ticks while player is blocking: test(player) wait 1 tick function test(p:player): set block at...
  12. H

    on mob rename

    Is there an event that is triggered when a mob is renamed? ex: on creature rename: cancel event broadcast "you cannot rename mobs" if not is there a different way to do this?
  13. H

    set player's prefix in world "world"

    yes it is
  14. H

    set player's prefix in world "world"

    I am using skript? but I checked and it is setting it in my permissions ex folder. (If I didn't use permissions ex would this still happen?)
  15. H

    set player's prefix in world "world"

    it's not much but: on join: if player's prefix is "": set player's prefix to "&7[Member] " Still no response... Is this possible?
  16. H

    set player's prefix in world "world"

    Okay, so I am have a skript that does set's the player's prefix when they type a command. I also want the prefix to be set in the nether. Right now if you do set player's prefix to "test". Their prefix only works in the world that they were in when the prefix was assigned. How do I give...
  17. H

    Detect if particle reaches targeted block

    It works but how do i make it move fasted and how do i make it more than 1 particle so it creates a full line from me to the targeted block Can anyone help me out with this?
  18. H

    Detect if particle reaches targeted block

    Wondering if there is a way to detect when a particle created from DrawLine (sk dragon) reaches targeted-block: command /test: trigger: make the player shoot an arrow at speed 1000 loop 100 times: wait 1 tick #if particle hasn't reached targeted...
  19. H

    Solved sk dragon stop effect random integer

    Thank you. This works.
  20. H

    Solved sk dragon stop effect random integer

    How should I do this without setting Id's to random integers? If i do only 1 ID only 1 set of particles will spawn.