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

    Mobs spawn near player every 10 seconds

    Please open a new thread next time, you can fix this by using the contains condition instead of "is in". Replace if {_id} is in {blocked::id::*}: with if {blocked::id::*} contains {_id}:
  2. sluhtie

    Help about nbts

    Sk-NBeeT is a depricated skript addon and is no longer supported. Use SkBee instead. Also you should really take a look in the wiki what nbt is and how it works. As the name says, (Named Binary Tags). They consist of "Tags" with specific values.You will not have something like an "nbt". When...
  3. sluhtie

    How to make a Health Bar with Skript?

    Really just delete all files from your server-resourcepack folder in ur minecraft folder, then join the server. A new file will be generated. Then just rename the file and add .zip to it. Then u can just open it and all the resourcepack files will be in there
  4. sluhtie

    How to execute MmoItems Give command through other plugin

    This is not skript related at all
  5. sluhtie

    Solved Player gets a item

    Heres an code example, although obviously It's not the best solution to loop all players every 2 ticks. Other ways would be to use a while loop or listen for each event a player gets an item (on command "give", on pickup, on inventory click etc etc). Heres my example with the every 2 ticks...
  6. sluhtie

    announce skript

    If it should have worked and you don't have any more Issues, please mark this thread as solved.
  7. sluhtie

    How to execute MmoItems Give command through other plugin

    You will have to check the Mysteryboxes documentation for that. I think this is what you are looking for: https://xerickerspigot.gitbook.io/mysteryboxes/menus-and-items/click-commands
  8. sluhtie

    open inventory with 3 rows - Skript would not work

    The code provided originally had nothing to do with skQuery. SkQuery GUIs work using the format inventory slot effect The only difference between your code and the code originally provided, is that instead of setting a local var to an inventory, you don't do this, but much rather set it in the...
  9. sluhtie

    How to execute MmoItems Give command through other plugin

    this is not skript, this is not the right channel for this. This is not how you would use it.
  10. sluhtie

    announce skript

    %colored arg-1%
  11. sluhtie

    Solved How to remove mob?????

    no problemo, please add solved as tag to the post
  12. sluhtie

    Can someone help me?

    Perfect example on how not to use skript...
  13. sluhtie

    Clickable Models

    You can try doing that using skBee and Interaction Entities, creating a custom hitbox https://docs.skunity.com/syntax/search/id:11033
  14. sluhtie

    load chunk

    Technically this is very possible using skBee and the following effect https://docs.skunity.com/syntax/search/id:11102
  15. sluhtie

    Every tick doesn't work with variable

    Instead of using %player% you have to use %loop-player%. I also suggest not to use it in the way you did, much rather update the action bar every 2 seconds and each time the player health bar changes. every 2 seconds: loop all players: updateHealthBar(loop-player) on heal...
  16. sluhtie

    Please i need to use Skript variable in another plugin

    Wrong. This is indeed possible using the skript-placeholders addon. Download: https://github.com/APickledWalrus/skript-placeholders/releases See https://github.com/APickledWalrus/skript-placeholders/wiki/Registering-Placeholders#registering-placeholders-through-placeholderapi for more...
  17. sluhtie

    How to make a Health Bar with Skript?

    You will need to recreate each number as it's own texture and configure an offset in the Texturepack default.json. The numbers are still in the action bar but just as special characters that get replaced with the custom offset numbers from the Texturepack.
  18. sluhtie

    Skript-GUI on click event

    The nice thing about skript gui is that you don't need another click event to check for inventory clicks View this example here: https://github.com/APickledWalrus/skript-gui/wiki/2.-Modifying-the-contents-of-a-GUI#making-items-run-code
  19. sluhtie

    Is it possible to cancle the death event and send the player to spawn?

    on damage of player: final damage >= victim's health cancel event heal victim teleport victim to location(0,0,0)