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

    Hiring 5$ for a easy work with Javascript

    Hi, I need someone who is able to create a javascript that automatically creates Fortnite offers on Gameflip. Thanks :emoji_slight_smile: https://github.com/gameflip/gfapi
  2. N

    5$ for a easy work with Javascript

    Hi, I need someone who is able to create a javascript that automatically creates Fortnite offers on Gameflip. Thanks :) https://github.com/gameflip/gfapi
  3. N

    Idk how to describe this... ¯\_(ツ)_/¯

    Hi, I have a problem with this ... Explanation: On my server there are bosses, and the health of the boss appears in the action bar. So far so good if there is only 1 boss, but when there are 2 or more, it looks like this: https://gyazo.com/2e6bf27b92110269b066f143c4feee03 How could I do it so...
  4. N

    How to avoid unload entities?

    How can I prevent entities from "ceasing to exist" when the chunk is unloaded? Example: while {_entity} exists: At the moment that the chunk is unloaded, skript no longer recognized the entity even if it loaded again EDIT: Of moment it seems that this works, if someone has something better...
  5. N

    Solved Check lore

    How can I detect the line in which the lore contains a text? Example lore: 1º line: Test 2º line: Hello 3º line: Test Any way to detect that "Hello" is on the second line?
  6. N

    Solved Delete

    Delete
  7. N

    Solved RGB on EffectLib particles

    How is RGB used? display 10 of redstone particle at location of loop-value offset by 0.0, 0.0, 0.0 at speed 0.5 Where i put the RGB? (Example: 10,10,10) Solved by myself
  8. N

    Solved Rotate an entity 360° around player?

    What would be the math operation to spawn an armor stand and rotate (teleport) it 360° around the player?
  9. N

    Solved id of entity?

    Any way to know the id (or uuid) of an entity? %id of entity% changes when chunk is unloaded... The purpose of this is to be able to detect at any time that particular entity
  10. N

    Solved Variable in quantity of items in a GUI?

    How can I change the amount of an item depending on a variable? format gui slot 11 of player with {variable::%uuid of player%} experience bottle <...> How can I make it work?
  11. N

    Solved Countdown formatted?

    Any way to convert 300 seconds to 5:00? (To put in a countdown variable) And then continue with 4:59, 4:58 ...
  12. N

    Solved I try to add coordinates to a variable list and this happened... (GONE WRONG)

    Hello, why doesn't work this? command /slime1: permission: slime.slime trigger: delete {slime1::*} loop blocks in radius 10 around player: if loop-block is slime block: add location of loop-value to {slime1::*} broadcast...
  13. N

    Solved Block counter per pickaxe

    I want to do a block counter (per picaxe) but every time I peak a block does not add up and stays in 1 on mine: if player's tool is a pickaxe: set {_lore} to lore of player's tool set {_split::*} to {_lore} split at " " set {_exp} to {_split::2} parsed as number...
  14. N

    Spawn an spider angry?

    Spawn spider angry? The nbt {Anger:1} or {Angry:1} doesn't work :(
  15. N

    Only once

    How can I do that by doing damage to a mob this does something only once? And that only serves for that mob.
  16. N

    Solved How to continue executing the code with a loop in process

    How to continue executing the code with a loop in process? loop 100 times: show 30 of enchantment table particle at location of {_loc} offset by 0.0, 0.0, 0.0 at speed 5 wait 1 tick broadcast "Hello" # And...
  17. N

    Solved Detect variable on lore

    Example: I have an egg with a lore something like "Health: 15378" (the number is generated randomly) and when you click generate a mob with that life. How can I detect that number and then apply it to the mob?
  18. N

    On right click on any block? And place heads

    Hello, How can I detect when to do rightclick on any block? And how can I make it put a head of a player in the block the player has clicked? Like this: /setblock ~ ~1 ~ minecraft:skull 1 replace...
  19. N

    Detect when spawned mob touches the ground?

    How can I detect when a mob spawned in the air touches the ground? Idk, this doesn't work :emoji_sweat: spawn a spider at {_loc2} set {_b} to the last spawned spider apply resistance 10 to {_b} for 10 seconds push {_b} upwards at speed 3 wait 1 tick push {_b} (direction...
  20. N

    Solved Drop item and push in a direction?

    How can I do that when spawning a drop item, this is push in some direction, like dropped diamonds of Hypixel Delivery Man?