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

    How to get the real online uuid in a bungeecord server?

    In the spigot.yml, make sure to enable bungeecord and in the bungeecord one, make sure to enable ip_forward. This should get their actual uuids if that above is correct. I don't know if you are running offline mode or not though. If you are running an offline network, you have to get their...
  2. AsuDev

    Script Kill Leaderboard 1.1

    What is this? This script simply has one purpose. To show an example of a fully made kill leaderboard along with other helpful commands and functions. I see people asking for kill leaderboard stuff all the time on the forums and this resource should help with that. Features 1. A very fast...
  3. AsuDev

    Script Kill Leaderboard - New Features #1

    1. Fixed null values when sorting for values. I added in an Offline Player cacher so you can add fake players to the top kills leaderboard for testing purposes. You can see cached online players by using the command /cachedofflineplayers. 2. Added an admin command for changing kill and death...
  4. AsuDev

    Kill Leaderboard

    What is this? This script simply has one purpose. To show an example of a fully made kill leaderboard along with other helpful commands and functions. I see people asking for kill leaderboard stuff all the time on the forums and this resource should help with that. Features 1. A very fast...
  5. AsuDev

    Kill leaderboard

    Take a look at this tutorial I made for toplists based on skript-mirror: https://forums.skunity.com/threads/sorting-method-toplists.9931/
  6. AsuDev

    Skript Sorting Method / Toplists

    Requirements: Skript and Skript-Mirror 2.0 Tested on: 1.8.8, 1.13.2, 1.14.4 Difficulty: Semi-Basic/Complex This is a small tutorial on how to create a toplist with Skript based on a couple expressions made in skript-mirror. The skript-mirror expressions / sorting algorithm: import...
  7. AsuDev

    Solved [RANKING]

    Requires Skript-Mirror 2.0+ Made and tested on 1.8.8 with 2.2 dev-36
  8. AsuDev

    Skript with mods?

    2.2dev36 is the right version, I have tested it with forge/paper and it works fine but only for 1.12.2 (using Mohist most recent version).
  9. AsuDev

    Solved magicspell damage

    Are you referring to the plugin MagicSpells (MS)?
  10. AsuDev

    Tooltips

    Use this: send formatted "<tooltip:&a%player%>%player's prefix% %player%<reset> %message%" to all players
  11. AsuDev

    Multiple Types in One Argument...?

    There is also the On Tab Complete event from several addons. IF you really want to add tabbing for player names, you can use that event and make it to where you can tab player names for specific commands/arguments.
  12. AsuDev

    Multiple Types in One Argument...?

    There is no way that I know of where you can do this. My suggestion to you is to make it a text. With a text you can parse it as a player if needed and do whatever you need to do.
  13. AsuDev

    Sort With Custom Output

    I was wondering if anyone could make the sorting mechanism from MorkazSK in normal Skript with skript-mirror (Without using the addon completely). I've been needing something like it for awhile but I don't want to have another entire addon just for sorting. I am still learning skript-mirror so...
  14. AsuDev

    Can't loop because its only a single value

    The error is correct, you cannot loop a single value. You are not using list variables correctly. add "" to {logschat::%player's uuid%} # This is not a list variable. It is a single value. #Correct list variable usage: add "" to {logschat::%player's uuid%::*} #Correct list variable looping...
  15. AsuDev

    adding items to an inventory

    set {_item} to "%event-block%" parsed as item type add {_item} to block at {chestloc.%player%}'s inventory
  16. AsuDev

    Sell a full stack while player's sneaking

    This could be wrong and not work, but you can try this: on rightclick on sign: if line 1 of event-block is "&8[&cVERKAUFEN&8]": if player is sneaking: set {schildsell.%player%} to line 3 of event-block parsed as number set {ivnsell.%player%} to line 2 of...
  17. AsuDev

    World edit console commands problems

    I believe you cannot run WorldEdit commands in the console.
  18. AsuDev

    Create the quicksort with Skript/Skript-Mirror

    Create the quicksort with Skript/Skript-Mirror
  19. AsuDev

    Pages in GUI

    I made a small example in the tutorial section of the forums. https://forums.skunity.com/threads/paginated-gui-example.9773/#post-42842 This should be able to get you started.
  20. AsuDev

    Skript Paginated GUI Example

    Difficulty: Basic This isn't so much as a tutorial but more of an example of a paginated GUI. This is to help you get an idea of how you yourself can create and format one based off of a list variable. # Paginated GUI Example # Made by AsuDev # What I used: # Skript 2.3.6+ # Tested on...