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

    Script Target Selectors [ALPHA!]

    Hello, I'm making some skript on a server running 1.12.2. Could you please make this API or maybe Skript addon to be compatible to at least 1.12 or above? Thank you!
  2. M

    Skript Vanilla GUIs

    What is the expression to get or modify cursor slot?
  3. M

    Skript Vanilla GUIs

    It is so long, but I already put "cancel event" under ALL tab of my custom GUIs, without considering the click type. Even if I do something like this: on inventory click: if event-inventory is not player's inventory: if event-click type = left mouse button: cancel event...
  4. M

    Skript Vanilla GUIs

    But I am already using the latest version of skript, which is v2.5-alpha2. So is there another solution?
  5. M

    Skript Vanilla GUIs

    Sorry but I have a concern using the skript vanila GUI. I tried to prevent stealing from all type of clicking, but it seems that the expression cancel event only works with left click, while the other click type can still steal the item. How can I solve that?
  6. M

    Issue on UNIX Time

    So as you add arg-2 to the variable, you need to type the time in second in arg-2 Did you try that?
  7. M

    Issue on UNIX Time

    First, variables with "_" in front is a temporary variable, which will be deleted automatically after all the codes in the command finished running Like {_test} is a temp. variable, {abc} is not. If you need to retrieve a time in {_UNIXTime}, I think you should try this: 1. set...
  8. M

    Can I prevent minecart push using skript?

    MineStileXDD#0513
  9. M

    Can I prevent minecart push using skript?

    Skript Version (do not put latest): Skript v2.5-alpha2 Skript Author: Bensku Minecraft Version: 1.12.2 I don't have any code yet, but how can I prevent player pushing minecart outside it, or moving it by using WASD when the player is in the cart? So that I can make something like traincart...
  10. M

    Solved loop entities in radius around command sender not working in command block

    Skript Version (do not put latest): Skript 2.4.1 Skript Author: Bensku Minecraft Version: 1.12.2 Code: command /test: trigger: broadcast "1" loop all entities in radius 5 around command sender: broadcast "%loop-entity%" if "%loop-entity%" is...
  11. M

    Got severe error on loading TuSKe 1.8.2

    That's is the copy mistakenly put into plugins folder, I already deleted it now.
  12. M

    Got severe error on loading TuSKe 1.8.2

    # Card Overtime # function overtimeCard(p: player, blockdata: block): wait 0.1 second open virtual chest inventory with size 1 named "逾時出閘 Exceed Permitted Time" to {_p} wait 0.1 second format gui slot 0 of {_p} with air format gui slot 1 of {_p} with air format gui slot...
  13. M

    Got severe error on loading TuSKe 1.8.2

    There are about 40 functions in it, but I don't think that's the case. As it requires about 25 seconds to load ausually. After I added 1 function in it yesterday, it becomes 13 minutes. I would like to figure out how to reduce the loading time.
  14. M

    Got severe error on loading TuSKe 1.8.2

    Okay this is actually my test server for my own skript, I mistakenly put a copy in the plugins folder. I'll delete it. But does it related to the long loading time? EDIT: I just tried again, nearly 13 minutes is needed to load the skript, what's wrong? [22:12:23] [Server thread/INFO]: Done...
  15. M

    Got severe error on loading TuSKe 1.8.2

    Why I can’t find this version in the download page lol I try it later, thx EDIT: Also, could I solve the long loading time by redownloading this version? Thx Okay I finally updated TuSKe and gave it a try to turn on the server. The error disappeared, but it still need more than 10 minutes to...
  16. M

    Got severe error on loading TuSKe 1.8.2

    Console Errors: [01:51:35] [Server thread/INFO]: [Skript] Enabling Skript v2.4.1 [01:51:37] [Server thread/INFO]: [Skript] Loaded 18237 aliases in 2036ms [01:51:37] [ForkJoinPool.commonPool-worker-1/INFO]: [0;37;22m[[0;33;22mSkript[0;37;22m][m You're currently running the latest stable version...
  17. M

    Solved Failed to check if player is holding an enchanted item

    Skript Version: Skript 2.4.1 Skript Author: Bensku Minecraft Version: 1.12.2 I want to check if a player is holding an item as follow: on right click: if player's tool is Name Tag of Unbreaking 5: (do something) But when I use a Name Tag with Unbreaking 5 enchantment to right...