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

    Addon Lusk 1.1

    Lusk is a Misc Skript Addon that adds a lot of useful features to Skript! A lot is planned for Lusk, stay tuned. Contact me on discord @JakeGBLP or open an issue in case there's one. SkriptHub Docs SkUnity Docs
  3. Jake

    Addon Lusk

    Jake submitted a new resource: Lusk - Misc, dynamic and unique features in one addon. Read more about this resource...
  4. 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...
  5. Jake

    Solved how to loop block correctly?

    what do you mean?
  6. Jake

    On region enter player gets permissions

    nope, you might be out of luck
  7. 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
  8. 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%
  9. Jake

    Inventory Search Skript

    this wouldn't work and would cause a dupe glitch
  10. Jake

    Help with fortune skript

    function Fortune(l:integer) :: integer: loop {_l} times: add 1 to {_r} if chance of (100/({_l}+2))% return {_r} on break: player's gamemode is not creative clear drops set {_fortune} to level of fortune of tool if player has fire charge named "&c3x Fortune": set {_fortune}...
  11. Jake

    skript for teleport

    Keep in mind that if no world is specified it will use the default world on load: set {RTP::*} to location(3393, 79, -5702), location(6620, 68, -8957), location(6611, 70, -7618), location(4101, 118, -2005) and location(4951, 71, 3051) command /rtp: trigger: teleport player to random...
  12. Jake

    how to make a sphere of particles around the player with skbee?

    https://skripthub.net/docs/?id=849
  13. Jake

    Solved how to loop block correctly?

    loop blocks within block ~ vector(-1,0,-1) and block ~ vector(1,1,1):
  14. Jake

    Animated text

    Anybody can re-invent the wheel, don't put other people down for wanting to make things themselves.
  15. Jake

    Animated text

    Requires SkBee command animated: trigger: loop 100 times: set title of player' board to mini message from "<gradient:red:gold:%loop-number/50-1%>Your Server's Name</gradient>" wait tick
  16. Jake

    How to make a player take less damage?

    Fixed your typo. Use by player Changed attacker to victim since that's what you meant. Idk what you wanted to do with *0.15, so I made a formula that makes it so if the victim's persistance is 20 they'll take no damage and if it's 1 they'll take the full damage. on damage of player by player...
  17. Jake

    On region enter player gets permissions

    Using PermSk: on region enter: wait tick if player is in region "red_aetius" or "blue_aetius": add "bw.shop" and "bw.upgrades" to permissions of player else: remove "bw.shop" and "bw.upgrades" from permissions of player
  18. Jake

    Script Chunk Load Checker

    Jake submitted a new resource: Chunk Load Checker - Alerts you if too many chunks are being loaded [WITH CONFIG] Read more about this resource...
  19. Jake

    Script Chunk Load Checker 1.0

    Chunk Load Checker or (CLC) is a script that makes sure the Staff is notified when a Chunk Load Overload happens by alerting them with a report, reports are also viewable through the main command, data can be cleared though the same command, everything is configurable in the config...
  20. Jake

    Dividing the players into 2 teams

    The docs have all the functions, there are a lot of math functions, check them out, also happy to see it was all you needed, np :D