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

    Skript Sorting Method / Toplists

    Try using skript 2.2-dev36 as it is the most recent working version for 1.8.8. You can find it here: https://github.com/SkriptLang/Skript/releases/download/dev36/Skript.jar I have tested this on 1.8.8 with that Skript version so it should work.
  2. AsuDev

    Skript Sorting Method / Toplists

    What version of Spigot and Skript are you using? The syntax is from Skript 2.0+ https://skripthub.net/docs/?id=942
  3. AsuDev

    Solved Help with a skript

    I'll make it. Give me a couple hours and I'll send it in this post. :emoji_slight_smile: This should work on all Spigot and Skript versions from 1.8.8-1.14.4 Report any bugs by messaging me on discord: AsuDev#0714 Code is attached to post and so is a file you can download. There is one CAVEAT...
  4. AsuDev

    Cant understand this event

    What spigot version are you using?
  5. AsuDev

    Player holding nothing

    I always used: if player's held item is air: I believe tool works too.
  6. AsuDev

    line or line?

    You can also turn off this warning in the Skript config if you want.
  7. AsuDev

    Give random blocks to players

    set {_blocks::*} to 64 cobblestone, 64 glass #etc give a random item out of {_blocks::*} to player
  8. AsuDev

    Solved Send List Variable Without Conjunctions?

    I don't think so. The best you could probably do would be to join the list into one string: set {_example} to join {_nn::*} using "," I don't think you will ever reach the limit for how long a text could be in Skript.
  9. AsuDev

    loop and give player items

    Example: command /saveinv: trigger: delete {test.lvl.1::*} set {_slot} to 0 loop 36 times: add slot {_slot} of player's inventory to {test.lvl.1::*} add 1 to {_slot} command /retrieve: trigger: set {_c} to 0 loop...
  10. AsuDev

    Solved Staff Chat.

    This is what I came up with. on join: {staffchat.%uuid of player%} is not set set {staffchat.%uuid of player%} to false command /staffchat: permission: admin.chat permission message: &cSorry, you do not have enough permissions! trigger: if {staffchat.%uuid of...
  11. AsuDev

    Staff Chat.

    I would move this to the requests section. If you do that, I will send you an example. If you want to try and make it yourself, use the 'on chat event'. It will have everything you need to make something like staff chat: https://skripthub.net/docs/?id=1005
  12. AsuDev

    SimpleClicker || Incremental simple game

    Go to resources tab.
  13. AsuDev

    Command Help.

    Surround your code in the right format:
  14. AsuDev

    Messages!

    You can change the unknown command message in the spigot.yml file for your server.
  15. AsuDev

    Solved skungee/bungeecord > Problem with Variables need any help

    I just setup a bungeecord server and skungee and I tested the network variables and they work perfectly fine. Make sure that Skungee is setup correctly for the bungee instance and all of the spigot servers. I can't think of anything else that would help your problem. Tested it on 1.14.4 paper...
  16. AsuDev

    Solved skungee/bungeecord > Problem with Variables need any help

    You have to have skungee setup on the bungeecord instance and also on all of the servers. Also, I may be wrong but when using network variables, you have to specify that its a network variable. Example: broadcast "%network variable {bungee.hardcore}%" Also LimeGlass provided a way to get the...
  17. AsuDev

    Solved skungee/bungeecord > Problem with Variables need any help

    Use Skungee. It should have everything you need related to bungee events/effects/expressions/conditions. https://forums.skunity.com/resources/skungee-1-bungeecord-addon-for-skript.87/
  18. AsuDev

    Discord: AsuDev#0714

    Discord: AsuDev#0714
  19. AsuDev

    every 5 seconds

    Also, if you are looking for the permission "sk.tos" then the right format for the condition would be: if loop-player has permission "sk.tos": Don't surround it in curly brackets.
  20. AsuDev

    Skript Sorting Method / Toplists

    While it is originally from Mirrorutils, I will simply state that it was originally from Mirrorutils but I am not saying that you need it as a requirement. This is a standalone piece of code that was edited and credit was given.