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

    Fix this code for me.

    For learning purposes, I would highly suggest just playing around with nested if statements a lot, do random stuff and try and create complicated trees, that way you can easily learn the formatting style needed for nested if statements, as your code lacked heavily in the proper structure...
  2. cheatchki

    Solved Do script if in specific WorldGuard region

    https://docs.skunity.com/syntax/types/Region more specifically if "%region at player%" contains "Spawn":
  3. cheatchki

    Hacked client question (packet)

    Killaura might send more attack packets than usual, but speed will most likely send out the same number of move packets, but if you are looking to check for that, then check the distances between each packet and see if something is wrong, like if a player moves from x = 50 to x = 100 in less...
  4. cheatchki

    Hacked client question (packet)

    Really depends on how the hacked client works I suppose? I'm not a professional with hacks but I can assume that certain hacks will send out a large number of packets such as nuker, while some wont send out any difference such fullbright, while others might send out even less just to trick the...
  5. cheatchki

    There is this syntax

    if {Mute.%arg-1%.abusodebugs} is between 0 and 2 *fixed
  6. cheatchki

    Learning system

    I'm having trouble understanding your request? do you need something that will just watch a player's movement and kick them? do you want a full anticheat system? you need more detail in your post about exactly what you want
  7. cheatchki

    Addon SKPermissionsEx - The Normalization

    Basically, I once again just rewrote the plugin (bad habit) but this time I am actually really happy with the result and most likely means it won't change internally much from now on. Only changes will just be new additions. That being what has changed includes - Three new types have been added...
  8. cheatchki

    Addon SKPermissionsEx - Minor bug fixes

    Fixed issues in syntax expressions
  9. cheatchki

    Addon SKPermissionsEx - Finished group commands

    I basically did a mass re-work of the plugin in order to better suit skripts built in features, this allows for many of the expressions to be set, deleted, removed, and/or added. along side this I got a lot of the rest of the group type stuff implements
  10. cheatchki

    Addon SKPermissionsEx

    cheatchki submitted a new resource: SKPermissionsEx - A addon for PermissionsEx Read more about this resource...
  11. cheatchki

    Addon SKPermissionsEx 0.5.0

    I do a lot of server development and many of the owners I work for love to use PermissionsEx, so instead of creating a new plugin each time I want to interact with PEX I decided to create a skript addon. Hopefully this will help shorten development time! This addon is and only will be focused...
  12. cheatchki

    News The official release of skUnity Docs 2

    Only got one thing to say, Damn *edit* found a bug, if you look at "Make GUI" under tuske it attempts to link, however most likely some errors occured and you might have changed how linking is handled https://imgur.com/a/YBl3u
  13. cheatchki

    condense this code

    hmm Ill try it tonight. and get back to you Sadly, no that doesn't work. I will most likely go and request an enchantment to add variable support in the block expression
  14. cheatchki

    condense this code

    I am looking to condense this code, however I can't find any solutions that work. on rightclick on cobblestone: if block 2 north of event-block is air: add north to {_directions::*} if block 2 east of event-block is air: add east to {_directions::*} if block 2 south...
  15. cheatchki

    Solved error with size of variable

    Didn't realize this was an issue, but after bringing it to the skript bug report, I learnt that Tlatoani has already updated you can find the update link on his post here OR if you have issues finding it here is a link to the beta release made by Tlatoani that adds an option in...
  16. cheatchki

    Solved error with size of variable

    for some reason whenever I attempt to use "size of {x::*}" in any scenario it is always failing I've tried with number list, string list, mixed list. I've tried using various variable names both temporary and permanent ones, but for some reason the size function is not working. along side that...
  17. cheatchki

    Development (server or skript)

    Lately I have been bored out of my mind, and I would love to have a challenge. So if you want a special plugin made, or you want help developing a server, whatever it might be with minecraft, I am up for helping! experience: - 6 almost 7 years of Minecraft - about 5 years of minor redstone...
  18. cheatchki

    Script BungeePEX

    cheatchki submitted a new resource: BungeePEX - A script to connect your servers with bungee cord Read more about this resource...
  19. cheatchki

    Script BungeePEX 1.0

    Requirements: - skript - MundoSK - SKUtilities - PermissionEX Features: - Ability to send PermissionEx commands over your bungee server - Set Certain ranks to be bungee wide - config is seperate from skript, and can be found in the PermissionEx folder (Or if specified in a different...
  20. cheatchki

    Solved special crafting

    So I am working on a custom crafting machine, but I want to be able to make semi-shapeless recipes that works very similar to a crafting table. So for example when crafting sticks in a crafting table, there are 6 different possible combinations for the recipe Now to recreate this function I...