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

    summon item at entity

    set {_item} to chicken with nbt "{SomeTag:""true""}"* xD
  2. Pierrelasse

    Block states/data values of water

    # Levels are 0 to 15. 15 is max if blockhere is water[level=15]:
  3. Pierrelasse

    Beacon Rename Skript

    Uhhhhhhhhhhhhh on rightclick: execute player command "beaconstuff" command /beaconstuff [<string>]: cooldown: 10 seconds cooldown message: &r trigger: target block is beacon player's tool is any sword set {_name} to random element of "gf" and "gg" and...
  4. Pierrelasse

    Land SK

    It might be possible but very annoying to make. Yo would need to do list of all blocks placed by players and then loop all blocks in radius of player and check if any of these blocks are in the list Wich would be quite some lag if players placed much blocks. Then if no block is in this list you...
  5. Pierrelasse

    forge unable to plant/grow nether wart

    Forge forums: https://forums.minecraftforge.net/ Minecraft forums: https://www.minecraftforum.net/forums
  6. Pierrelasse

    Solved How to check for permission true and false in the same line

    Maybe that? if player has permission "someperm": if player does not have permission "anotherperm": send "ok"
  7. Pierrelasse

    Async Pre Login Disallow in Skript

    Yo mean that? on connecting: kick player due to "You cant join since youre too ඞ"
  8. Pierrelasse

    Skript doesn't work, what did I do wrong?

    I think the world in the location is the problem location -105, 60, -2 location -105, 60, -2 in world "world"
  9. Pierrelasse

    On painting destory ???

    How do i know when a painting gets hit / destoryed?
  10. Pierrelasse

    Mail Script

    Oh boe
  11. Pierrelasse

    Solved Help with loop-player

    Change {suspect.list} to {suspect.list::*}
  12. Pierrelasse

    Get the description of an item.

    I think you can't get it since this is client side
  13. Pierrelasse

    Can't understand this condition/effect

    Btw instead of doing this you can just # Formatting codes: https://minecraft.fandom.com/wiki/Formatting_codeshttps://minecraft.fandom.com/wiki/Formatting_codes send "&4&lDo you want to go to the next level?" send "<cmd:/wave 7>&2&lYES<reset>" that should do it
  14. Pierrelasse

    Send own tab completions

    Its not possible with normal skript and i dont know if there is an addon wich can do stuff like this
  15. Pierrelasse

    Help with a skript

    Bruh why downloading another addon when you can just on join: set player's max health to 50
  16. Pierrelasse

    /clone in skript

    The error is cuz the chunks are not loaded. This is a minecraft error that is useless i think but ye it is what it is
  17. Pierrelasse

    Fill 0

    I hope this helps you command /fillstuff: trigger: loop blocks between location(0,0,0, player's world) and location(0,0,0, player's world): set loop-block to air
  18. Pierrelasse

    pumpkin on head

    You can try do: on rightclick: player's tool is diamond horse armor # named "Test" set player's helmet to carved pumpkin named
  19. Pierrelasse

    Uncolored text keeping the "&"

    If i do send "&ctest" test in red comes if i do send uncolored "&ctest" only test comes and not &ctest How can i get &ctest instead of only test?
  20. Pierrelasse

    Solved Random Number Generator

    send "%random number between 1 and 2%" # Gives 1, 1.4, 1.8, bla bla send "%random integer between 1 and 5%" # Gives 1, 3, 4, 2, bla bla (if you want to get a integer)