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

    Not much of a fan of Skript anymore.

    Not much of a fan of Skript anymore.
  2. CormanYT

    Solved Skript-Mirror 2.0

    Alright, well still, it's good to have it just in case another one comes. Thanks for the help!
  3. CormanYT

    Addon skript-mirror

    Yes, you have to use methods from the event expression.
  4. CormanYT

    Solved Skript-Mirror 2.0

    Thanks! Do you know where I can get other snapshots? Is there a discord server for it?
  5. CormanYT

    Solved Skript-Mirror 2.0

    Is there any way I can use the skript-mirror 2.0 beta release as a jar? I tried to compile it but that didn't work, and there's no publicly available skript-mirror 2.0 jar that is on the github, or skunity page for skript-mirror. I'm on Skript 3.6 (latest full release), Spigot 1.12.2, and...
  6. CormanYT

    Addon skript-mirror

    Why does it spam me with 'log handler' errors?
  7. CormanYT

    API SimpleSK - RELEASE 1.6 > Plugin Management, World Creation, Server Features, and More!

    THIS RELEASE HAS NOT BEEN FULLY BUG TESTED. PLEASE REPORT ISSUES IF YOU SEE ANY. So, I started work on Release 1.6 and added plenty of new features. Plugin Management List of all plugins, enable/disable/reload plugins, reload/save plugin configuration, and just play around with these...
  8. CormanYT

    Skript won't let me use a player %arg 1% in my script.

    1. You don't need to use percents in that statement, percentages only go around strings (text) and variable names. So, %arg 1% becomes arg 1 2. You don't need the extra number in arg 1, since you only have one argument. So use just "arg". 3. I think an easier method would just be increasing the...
  9. CormanYT

    Solved Skript Lists Request

    I can always change the syntax a bit, but if its able to be done in skript-mirror I'll create a skript-mirror script for it. Thanks!
  10. CormanYT

    Solved Skript Lists Request

    Category: Skript Addon / Script with Skript-Mirror Suggested name: AdvSK Spigot/Skript Version: 1.8 to 1.13.2 should work, but 1.12.2 preferred. What I want: This is probably a very difficult request, but it would be extremely useful. Lately I've been using Python and it has an amazing...
  11. CormanYT

    Making Mobs Run Away

    Skript Version: 2.3.3 Skript Author: Bensku Minecraft Version: 1.12 Yes, I did search the Skunity docs. I also searched through both the SKUnity and Spigot (in case skript mirror could do it from a java method) Forums to find an answer. So, the question. How can you make mobs run away from a...
  12. CormanYT

    I'm glad I could help you with skript-mirror. Thanks for the review though!

    I'm glad I could help you with skript-mirror. Thanks for the review though!
  13. CormanYT

    API SimpleSK - RELEASE 1.5 > CONNECTION IPS!

    Release 1.5 was one of the hardest ones, but it was the best one. Anyways, there's a lot so I'll summarize it. SIMPLESK NOW REQUIRES SKQUERY SimpleSK now needs SkQuery to access things from files. The reason why? Well, we added vpn scores. This will return a value by seeing if two sources...
  14. CormanYT

    Solved Create a expression with skript-mirror

    You are welcome! Thanks for the best answer and have a good day!
  15. CormanYT

    Solved Little problem

    You're welcome :D
  16. CormanYT

    Skript-Mirror Effects

    Skript Version (do not put latest): Skript 2.3.6 Skript Author: Bensku Minecraft Version: 1.12.2 Addons: skript-mirror So, I have a couple of questions relating to skript-mirror effects. 1. How can I make it specify conditions in an effect? E.X: create quest "Name" for player with goal...
  17. CormanYT

    Player switch position

    You're welcome. It should work but I didn't test it, good luck!
  18. CormanYT

    Player switch position

    You're not getting the code in two weeks, you're getting it now. (This code is untested). on right click with a snowball: name of player's tool is "&5&lSwap!" {swap.cooldown::%player%} isn't true set {swap.cooldown::%player%} to true shoot a snowball from player wait 16...
  19. CormanYT

    Solved Create a expression with skript-mirror

    You could very easily make the expression return a json function. It'll work like this: expression json %string% with ttp %string% for [player] %player%: get: return jsonFormat("%expression-3%", "%colored expression-1%||ttp:"%colored expression-2%") That should allow you to use...
  20. CormanYT

    Solved Little problem

    Here you go then. on inventory click: if cursor item is a book: if clicked item is pickaxe: cancel event set lore of clicked item to "asd" set clicked item to glowing clicked item set cursor item to air cancel event Let me...