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

    Countdown formatted for box?

    in that periodical add set {lastreset} to now to get the remaining time usedifference between {lastreset} and now
  2. Jake

    how do i set a variable to the block below the player's current location?

    set {_below} to block below player set {_below} to block at location 1 meter below player set {_below} to player's location ~~ vector(0,-1,0)
  3. Jake

    I need help

    dont use dots in variables, use lists. example: {kills::%player's uuid%} also you dont need to set a variable to the message, it's literally the same event just one line later on chat: {var} is true send message to player
  4. Jake

    Scoreboard doesnt appear

    Click here to learn how to make scoreboards or to clear any doubts regarding them!
  5. Jake

    Add lore to a varible

    1. you need to set a LIST to a split, a split will return more than 1 string 2. you can't split the entire lore, thats already multiple strings
  6. Jake

    Solved give an item to the player using variable

    debug those values, broadcast the list and name list and the id list and check if the values actually match what you're putting in them
  7. Jake

    Solved How can I make a command that runs skript code?

    in the config file, set the 2 effect commands related options to true, save the file, then run /sk reload config once you've done that you can just type in chat !send "lol" or any other effect like !push player upwards or !give an apple to the player
  8. Jake

    Solved telekinesis

    no problem, if the issue is solved, mark the thread as solved and the answer that helped you the most as best answer
  9. Jake

    How do you add to a player's total mined blocks

    mine_block statistic of player this will return the total amount of blocks you've broken, it has been added in skbee 1.17
  10. Jake

    Solved telekinesis

    on mine: #condition for telekinesis cancel drops give drops of event-block using player's tool to player
  11. Jake

    Opening an anvil gui to a player

    ^
  12. Jake

    Opening an anvil gui to a player

    open an anvil inventory to player
  13. Jake

    Solved Loop entity, location

    :emoji_heart:
  14. Jake

    can someone fix my simple skript

    only set the max health, the actual health will regen over time
  15. Jake

    list variable

    loop (size of {Slot.%{slotname}%::*}) times: delete {Slot.%{slotname}%::%loop-number%} if {Slot.%{slotname}%::%loop-number%} = air set {Slot.%{slotname}%::*} to {Slot.%{slotname}%::*}
  16. Jake

    Not being able to send to player

    Remove Tuske and it will work.
  17. Jake

    Loop

    read the docs, this is easy
  18. Jake

    Opening an anvil gui to a player

    Always better to check first, tuske is for 1.8.
  19. Jake

    Solved Loop entity, location

    looping all the entities is a bad ideas for many reasons, it will loop entities such as item frames and armor stands etc which you probably don't want to loop (this can be fixed with a filter anyway), even with that fixed you still shouldn't loop ALL OF THEM, chances are performance will drop...