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

    Entering numbers in text messages

    This isn't directly explained in the docs, but examples of it are very common, including on the home page: https://docs.skriptlang.org/ It's also explained in this guide: https://docs.skunity.com/guides/guide/texts.6 and in this tutorial...
  2. Sovde

    Solved I don't know how to use more than 1 command with a space in it

    yes, player arguments will automatically complete, and you can add custom completions with skbee
  3. Sovde

    Solved I don't know how to use more than 1 command with a space in it

    No, that's how minecraft commands work. The first word is the command name, anything after a space is an argument. You should use the argument system that Skript provides.
  4. Sovde

    Creating a magic circle with skript

    you may find this useful: https://github.com/sovdeeth/skript-systems/blob/main/particles/particles.sk
  5. Sovde

    Solved how do you get this (read)

    haha losers i was first
  6. Sovde

    Solved how do you get this (read)

    That's called "effect commands". Check your config.sk to enable them.
  7. Sovde

    Setting tool to as many items as a variable skript

    A more general version would be set item amount of player's tool to {_your-variable}
  8. Sovde

    Format Timespans

    Requires SkBee for the ticks of %timespan% expression, though this could be swapped out for skript-reflect or another addon. This script allows you to format timespans in a similar way to how you can format dates (%date% formatted as "hh:mm:ss"). the main function is formatTimespan(timespan...
  9. Sovde

    Script [Deleted] Format Timespans

    Sovde submitted a new resource: Format Timespans - A function for formatting timespans like you would format a date. Read more about this resource...
  10. Sovde

    Script Format Timespans 1.0

    Requires SkBee for the ticks of %timespan% expression, though this could be swapped out for skript-reflect or another addon. This script allows you to format timespans in a similar way to how you can format dates (%date% formatted as "hh:mm:ss"). the main function is formatTimespan(timespan...
  11. Sovde

    Inventory Restoration

    Inventory Backups **Requires: SkBee (tested on 2.8.2+, should work on 2.5.0+), skript-gui 1.3+** You can view the source code at the github page: https://github.com/sovdeeth/skript-systems/tree/main/inventory-backup This script automatically saves a backup of a player's inventory when they...
  12. Sovde

    Script [Deleted] Inventory Restoration

    Sovde submitted a new resource: Inventory Restoration - A script for storing and restoring backups of player inventories. Read more about this resource...
  13. Sovde

    Script Inventory Restoration 2.0

    Inventory Backups **Requires: SkBee (tested on 2.8.2+, should work on 2.5.0+), skript-gui 1.3+** You can view the source code at the github page: https://github.com/sovdeeth/skript-systems/tree/main/inventory-backup This script automatically saves a backup of a player's inventory when they...
  14. Sovde

    Script GradientColour Function 1.1

    Consists of a gradient function that takes three strings. The first is the text that will be coloured, the second is the hex code (just the digits, eg "88E59A") of the starting colour, and the third is the hex code of the ending colour. The return value is the coloured string. Also contains two...
  15. Sovde

    GradientColour Function

    Consists of a gradient function that takes three strings. The first is the text that will be coloured, the second is the hex code (just the digits, eg "88E59A") of the starting colour, and the third is the hex code of the ending colour. The return value is the coloured string. Also contains two...
  16. Sovde

    Script Worldedit CUI.sk 1.1

    You should use the worldedit cui mod if you can, this is a mostly for fun project. Requires skript-reflect You must put a copy of the world edit plugin jar in the skript-reflect folder, too. This skript will display the boundaries of your world edit selection. If the selection is not cubic, 2d...
  17. Sovde

    Worldedit CUI.sk

    You should use the worldedit cui mod if you can, this is a mostly for fun project. Requires skript-reflect You must put a copy of the world edit plugin jar in the skript-reflect folder, too. This skript will display the boundaries of your world edit selection. If the selection is not cubic...
  18. Sovde

    Inventory Backups

    Inventory Backups Requires: skript-yaml, skript-gui See the github page for the dev version, which may have bugs. This skript automatically saves a backup of a player's inventory when they die. By default it stores 5 deaths back, but can be configured to whatever you want. The backups are...