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

    API SkLib (Skript API) - Hologram API Changes

    • Changed the way all holograms work. • Removed Scripts Command
  2. Baezor

    API SkLib (Skript API) - Bug Fixes & Command Changes

    Bug Fixes & Command Changes Removed "/scripts" when running "/plugins" due to issues on Minehut. Players would be kicked due to an unknown reason. Removed the "API" argument from the main command. This was a large part of the script and is painful to update. Added the "docs" argument from the...
  3. Baezor

    API SkLib (Skript API) - Skript Enhancements & Tooltips

    Skript Enhancements & Tooltips Added Tab Completion for Default Skript Commands New /scripts command. This also runs with /plugins. This displays all the scripts on the server. Tooltip function. (Hover over chat text.) Command function. (Click chat text.) Fixed some issues with comments.
  4. Baezor

    API SkLib (Skript API) 1.1.0

    NOTE: THIS RESOURCE IS NO LONGER BEING MAINTAINED! SkLib SkLib is a collection of functions for developers. These functions include support for holograms, text animations, text formatting, locations, and sounds! These are extremely useful in many situations. A detailed description of each...
  5. Baezor

    SkLib (Skript API)

    SkLib SkLib is a collection of functions for developers. These functions include support for holograms, text animations, text formatting, locations, and sounds! These are extremely useful in many situations. A detailed description of each group of functions is below. Features Animation API...
  6. Baezor

    Best addon developer.

    Best addon developer.
  7. Baezor

    Help! (Staff Chat)

    You have to use "##" instead of "# ". You use hashtags to comment, so you use 2 in a row to tell it to send them in chat.
  8. Baezor

    Script Scenes 1.0.1

    NOTE: THIS RESOURCE IS NO LONGER BEING UPDATED! IT IS VERY OUTDATED AND POORLY MADE! AN ALTERNATIVE TO THIS RESOURCE IS BELOW MADE BY SUPERCRAFTER100 (Supercrafter100#6600) DOWNLOAD IT HERE! Scene.sk Scene.sk is a simple cutscene creation tool that gives you basic options to create...
  9. Baezor

    Script Scenes - Slowness Fix

    Update 1.0.1 Information Main Changes Fixed Slowness Bug (Slowness wasn't removed on logout!)
  10. Baezor

    Scenes

    Scene.sk Scene.sk is a simple cutscene creation tool that gives you basic options to create great-looking cutscenes on your server. You can easily implement cutscenes you have made into other scripts in just 1 line! The script is currently limited to 8 different camera shots! This script can...
  11. Baezor

    Solved Gui in Gui Not working :(

    Hello, I would suggest using functions to create guis. You can call upon a function and open a new gui inside of a gui. I also recommend using TuSKe for guis.
  12. Baezor

    Show players exp level in chat

    Hello, you can use the syntax below to reference a player's level. %player's level%
  13. Baezor

    Solved set slots for player crafting slots

    You can check if the player is using a crafting table then. This is untested code, but it should work. on right click on crafting table: set {craft::%player%} to true on craft: {craft::%player%} is not true cancel event on inventory close: delete {craft::%player%}
  14. Baezor

    Solved Creating a custom drops skript

    My suggestion would be to either expand upon the basic code I sent before or hard code the drops like this for each mob with a specific chance. on death: victim is pig chance of 0.001% clear drops drop porkchop named "&eLEGENDARY PORK!!!!!" Edit: Just to clarify, the code that...
  15. Baezor

    Solved Creating a custom drops skript

    Hello, I see one error in the code. Your checking for the player name, not the first argument. Here is my version of what you're asking for. on mine: {drops::*} is set player's gamemode is survival event-block is diamond block chance of 50% # You can add a chance if you want...
  16. Baezor

    Solved set slots for player crafting slots

    You can cancel crafting by using the on craft event. on craft: cancel event
  17. Baezor

    Help with skript

    Hello, there are a few ways to do this. I would recommend using world guard regions. You can detect when a player enters a region and run code when they do. You can do this in vanilla skript and world guard. You can also use bounds with skBee. on region enter: if "%region%" contains...
  18. Baezor

    Alive.

    Alive.
  19. Baezor

    Variable is not working

    Is the variable set anywhere? If not, just add this. if {playersalive} is not set: set {playersalive} to 9999999999
  20. Baezor

    Can't make player face certain direction.

    You can also set the location in-game and look the direction you want them to look. Then just stop them from looking around. on any movement: if {tutorial::%player%} is true: cancel event command /setloc: trigger: set {tutorialLocation} to player's location This is just...