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

    Addon Lusk

    Jake updated Lusk with a new update entry: 1.2.1 - Major Fixes Read the rest of this update entry...
  2. Jake

    Addon Lusk - 1.2.1-beta1 - Major Fixes

    This beta fixes major issues with 1.2, especially when using it on newer versions, full changelog will be posted when this version goes out of beta. This versiu
  3. Jake

    Addon Lusk

    Jake updated Lusk with a new update entry: 1.2.1-beta1 - Major Fixes Read the rest of this update entry...
  4. Jake

    Addon Lusk - 1.2 - Back on Track

    [!IMPORTANT] ## Back on Track: This is the first update since May and I hope to bring more frequent updates, school and real life had been holding me back a bit but I think I've found a good balance to continue making Lusk better and better, expect more updates in the next months...
  5. Jake

    Addon Lusk

    Jake updated Lusk with a new update entry: 1.2 - Back on Track Read the rest of this update entry...
  6. Jake

    Item Owner

    This can be achieved using nbt, specifically uuid tags: function setOwner(item:item,player:offlineplayer) :: item: set uuid tag "owner" of nbt of {_item} to {_player} return {_item} function deleteOwner(item:item) :: item: delete uuid tag "owner" of nbt of {_item} return {_item}...
  7. Jake

    scoreboard scripts failed 1.20

    I use SkBee for scoreboards, you're not using skBee, so I can't help you since I'm only familiar with the scoreboards from there, sorry
  8. Jake

    scoreboard scripts failed 1.20

    https://skripthub.net/tutorials/50
  9. Jake

    scoreboard scripts failed 1.20

    Using skBee: To toggle completely To only show 2 lines you will effectively need to clear every other line and only keep those, if you need to keep the values of the other lines I suggest storing them in variables or (preferably) metadata, otherwise you can just loop all the other lines and...
  10. Jake

    Solved skript doesnt work

    If this thread is completed you should mark it as solved
  11. Jake

    Addon Lusk - 1.1.1 - Bug Fixes and Small Additions

    "Small" update that fixes some bugs and adds new stuff because of it. Fixed: Bell Ring effect Fake XP and/or Level effect Used Tool expression, it's now lighter on the server as it no longer uses reflection Version objects don't throw console errors anymore fixed some toString() and...
  12. Jake

    Addon Lusk

    Jake updated Lusk with a new update entry: 1.1.1 - Bug Fixes and Small Additions Read the rest of this update entry...
  13. Jake

    On region enter player gets permissions

    I wasn't referring to Skript's permissions expression, i meant Permsk's https://skripthub.net/docs/?id=10118 but apparently the syntax can collide with skript's, so make sure to follow the pattern accordingly, you can in fact add and remove from this expression
  14. Jake

    Addon Lusk 1.3.14

    Lusk is a Misc Skript Addon that adds a lot of useful features to Skript! Click Here to join the Official Lusk Support Discord Server, in this server you will receive support for Lusk among other things! For anything, reach out to me on Discord (@JakeGBLP) or open an Issue about it. ⭐...
  15. Jake

    Addon Lusk

    Jake submitted a new resource: Lusk - Misc, dynamic and unique features in one addon. Read more about this resource...
  16. Jake

    Solved how to loop block correctly?

    you can loop anything thats a list the loop section itself: https://skripthub.net/docs/?id=6350 examples of expressions you can loop: https://skripthub.net/docs/?id=896 https://skripthub.net/docs/?id=2054 https://skripthub.net/docs/?id=907 https://skripthub.net/docs/?id=913...
  17. Jake

    Solved how to loop block correctly?

    what do you mean?
  18. Jake

    On region enter player gets permissions

    nope, you might be out of luck
  19. Jake

    Inventory Search Skript

    opening a player's inventory to another player doesn't make it connected to the actual player's inventory, it creates a new virtual inventory with a copy of the player's, which means that you just effectively duplicated his entire inventory
  20. Jake

    How to make a player take less damage?

    pretty much, if you want SOME damage to be done even if it's maxed then just change the 21 to a 20, basically makes it so the max damage nullification is 95%