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

    Script Gesture System - Added permission and some options

    Added permission gestures.admin for easier distinction of what the average player should be able to do. Players without this permission can, by default, toggle whether gestures should be registered for them, and whether they should see particles on gesture. Players with can still access all the...
  2. cheezburga

    Script Gesture System

    cheezburga updated Gesture System with a new update entry: New gesture detection Read the rest of this update entry...
  3. cheezburga

    Script Gesture System - New gesture detection

    Thanks to @ThatOneWizard, this update features a new gesture detection system. Previously, the locations used to detect if a user had gestured in a certain direction were not very accurate, and got progressively less functional the more up/down a user looked. Essentially, if you were looking...
  4. cheezburga

    Script Gesture System

    cheezburga updated Gesture System with a new update entry: New gesture event system Read the rest of this update entry...
  5. cheezburga

    Script Gesture System - New gesture event system

    Overhauled the event system used to add code to each gesture. New gesture event system: Previously, each time a gesture was registered/removed, a file was created/deleted which allowed for a custom event corresponding to said gesture to be used. Now, there is just one custom event created...
  6. cheezburga

    Script Gesture System

    cheezburga updated Gesture System with a new update entry: Ability to delete a registered gesture Read the rest of this update entry...
  7. cheezburga

    Script Gesture System - Ability to delete a registered gesture

    The /gesture command now allows for users to delete a registered gesture. The associated script file in the gestures directory is deleted when this command is used.
  8. cheezburga

    drop items at feet when inv full

    This is incredibly inefficienct. And wouldn't work like they wanted.
  9. cheezburga

    Script Gesture System - Command update

    Updated the /gesture command to only accept valid gesture sequences (i.e. up, down, left, right) and to only work in valid use cases. Invalid cases will not give an error message instead of trying to register an invalid gesture.
  10. cheezburga

    Script Gesture System

    cheezburga updated Gesture System with a new update entry: Command update Read the rest of this update entry...
  11. cheezburga

    drop items at feet when inv full

    No need to do all that, just use SkBee's `give or drop` effect. https://skripthub.net/docs/?id=9276
  12. cheezburga

    Script Gesture System 2.3.1

    Allows users to perform any action you want by using customizable gestures. Uses custom events for maximum customizability. This script requires Skript (obviously), SkBee (for the particles), and skript-reflect for most of the other stuff. It was coded using 2.6.4, 2.18.1 and 2.3 respectively...
  13. cheezburga

    Script Gesture System

    cheezburga submitted a new resource: Gesture System - Allows users to perform any action you want by using customizable gestures. Read more about this resource...
  14. cheezburga

    Script Better Text Displays

    cheezburga submitted a new resource: Better Text Displays - Makes using text displays easy, with a simple command and loads of features. Read more about this resource...
  15. cheezburga

    Script Better Text Displays 2.0

    Adds a command (/textdisplay) which allows you to create, copy or remove text displays in your world. SkBee was the addon used for the text displays. The command supports mini messages as the text, so make the most of that. This script requires Skript (obviously) and SkBee. It was coded using...
  16. cheezburga

    Player can't move after teleport

    Hey, I have this code to teleport player's back to their most recent checkpoint. function teleportCheckpoint(p: player): teleport {_p} to {%{_p}%::checkpoint} The function is called here on damage: if damage cause is void: cancel event teleportCheckpoint(victim) and...