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

    Custom command argument?

    Could you explain what you mean? I don't understand. For which part?
  2. Lordcre_

    Custom command argument?

    @Pisjun Check this out: http://en.njol.ch/projects/skript/doc/commands
  3. Lordcre_

    MundoSK Packets

    Where at? I'm interested lol
  4. Lordcre_

    Solved Creating a timer

    I'm trying to create a timer using SharpSK that will constantly run, the problem is that I need a way to restart the timer after a server restart with the time remaining on the timer at the moment of the server restart. I'm currently using local variables to set the duration and the type of...
  5. Lordcre_

    Solved Copy directory

    Skript Version: Skript 2.2 (dev20c) Skript Author: Bensku Minecraft Version: 1.8.8 --- Full Code: function worldReset(n: number) :: number: delete folder "MiningWorld" wait 2 second create folder "MiningWorld" wait 1 second copy dir "MiningWorldreset/region" to "MiningWorld"...
  6. Lordcre_

    Script Region Inventories

    Lordcre_ submitted a new resource: Region Inventories - Save and load inventories on entering/exiting a region with ease. Read more about this resource...
  7. Lordcre_

    Script Region Inventories 1.0.2

    A unique way to manage inventories! Region Inventories is a script that allows server owners to easily save and load different inventories for regions! Tutorial / Demonstration (I recommend viewing it here) Completely customizable (messages, permissions, sounds, etc) Easy setup Regular...
  8. Lordcre_

    Skript Inventory Item Durability

    Is it possible to create an item inside a GUI with a set durability? If so, how? I've looked through the docs for a while and didn't find anything.
  9. Lordcre_

    Question about Skellett's Custom Events

    Hey, when it comes to custom events in Skellett is it as simple as: 1) Enable Custom Events and 2) List them in the "setup" portion? I set up a simple event but it's still saying "can't understand this event" What should I do? Here is my CustomEvents.yml: https://pastebin.com/dgNL0JFf (Skript...
  10. Lordcre_

    Solved Clicked item issue (Umbaska)

    Skript Version: 2.2-dev20 Skript Author: bensku, Njol, etc. Minecraft Version: Spigot 1.8.8 Full Code: on inventory click: send "Test" remove clicked item from player set {transferreditem} to clicked item command /testing: trigger: give {transferreditem} to player...
  11. Lordcre_

    Citizens question

    I'm trying to make the following work but apparently, you can't use arguments in the effect. How could I make this work in another way? command /command <text> <number>: trigger: if argument 1 is "run": make citizen "%argument 2%" say "/dothis" NOTE: I'm not trying to...