Solved I need help with particles (skDragon)

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

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

TheDavidMC_YT

Member
Aug 31, 2017
4
2
3
24
Hello! I am developing a Valorant in Minecraft with Skript. I get to the point, I need to make the skDragon particles get on the target block and not on the player. This is the current code I have:


Code:
drawSphere style 1, particle "cloud", center player, id "%player%.esferajett1", rainbowMode true, radius 2.5, density 999, visibleRange 100, pulseDelay 1

Sorry for my basic English, I am Spanish. Thanks in advance.
 
  • Like
Reactions: Maicon jair hansen
Hello! I am developing a Valorant in Minecraft with Skript. I get to the point, I need to make the skDragon particles get on the target block and not on the player. This is the current code I have:


Code:
drawSphere style 1, particle "cloud", center player, id "%player%.esferajett1", rainbowMode true, radius 2.5, density 999, visibleRange 100, pulseDelay 1

Sorry for my basic English, I am Spanish. Thanks in advance.
Hi! You could do it like that: (Im pretty sure you can do it without variable but this one is working)
Code:
        set {_loc} to location of targeted block
        drawSphere style 1, particle "cloud", center {_loc}, id "%player%.esferajett1", rainbowMode true, radius 2.5, density 999, visibleRange 100, pulseDelay 1
 
  • Like
Reactions: fsanchir
Status
Not open for further replies.