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

    Solved Different variables are seemingly the same

    Skript Version: 2.6.1 Skript Authors: Njol, Mirreski, SkriptLang Team and Contributors Minecraft Version: 1.16.5 (Paper version git-Paper-794) Full Code: # set a and b set {a} to...
  2. CreeperOverLord7

    JSON Parser

    Please use skript-json over this if you can Required Addons: SkQuery Tested Versions: PaperSpigot 1.12.2, Skript 2.2-dev36, SkQuery 3.6.0-Lime Parse JSON in Skript with minimal addons. A slow, inefficient, trash parser. Usage: Don't mess with functions named as 'JSON___f___()' Use functions...
  3. CreeperOverLord7

    Solved Special characters in string

    How can I put special character such as \r, \f, \b, etc. in a string? set {_myString} to "\r" send {_myString} # outputs "\r" I want it to output the actual \r (CARRIAGE RETURN) character rather than the literal text "\r", without using skript-mirror if possible. I know that skript has newline...
  4. CreeperOverLord7

    Click Type: 'number key'

    There is a click type in skript called 'number key' https://skriptlang.github.io/Skript/classes.html#clicktype I want to get the actual number pressed (1-9) in an inventory click event, but using the click type expression only gives me that a number key was pressed. E.g. on inventory click...
  5. CreeperOverLord7

    1.14 damage delay problems

    Skript Version (do not put latest): Skript 2.4-beta10 Skript Author: Bensku Minecraft Version: 1.14.4 (Spigot) --- Full Code: From Skellett 1.9.5a: set maximum damage delay of targeted entity to 1 tick Errors on Reload: No errors on reload, the script executes successfully. What's wrong is...
  6. CreeperOverLord7

    Solved Help with Final Damage expression

    Hi! Thread too long for you? Scroll to the bottom and read the last line! Skript Version (do not put latest): 2.2-dev36 Skript Author: Bensku Minecraft Version: 1.12.2 (Note about Skript version: I know that it is old, but in the server that I plan on putting this script in, I cannot update...
  7. CreeperOverLord7

    Solved Weird inventory contains behaviour

    Skript Version: 2.2-dev34 Skript Author: Njol, Mirreski, bensku, TheBentoBox, tim740, Tuke-Nnuke, TheLimeGlass, xXAndrew28Xx, Sashie, RoyCurtis, nfell2009, Syst3ms and Snow-Pyon Minecraft Version: 1.12.2 --- Full Code: command /test [<integer>]: trigger: set {_currency::coal} to...
  8. CreeperOverLord7

    Solved Help, text and time span

    Hello! I'm having a problem with my skript, so basically, here's the code and the issue: command /tempban [<offline player>] [<timespan>] [<text>]: permission: command.tempban permission message: &cYou do not have permission to perform this action. trigger: if arg 1 is not...
  9. CreeperOverLord7

    Solved How to detect last in a list variable?

    Basically what the title says, is there a way to detect the last number in a list variable? So for example, I have "Line 1" stored in {example::1} and "Line 2" stored in {example::2}, and so on up to 10. Is there a way to make Skript detect the max is 10 and make it use the value somewhere...