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

    Script Notepad 3 | Skript editing, sharing, more... - Notepad 3

    Notepad 3 is a new update that brings many MANY new features to the notepad. Sharing, Skript file editing, and more. Bugs are to be expected, if you find anything please message TrueFusion#7600 immediately.
  2. FusionCore

    Mhm

    Mhm
  3. FusionCore

    yup! I'm glad I didn't make it back then

    yup! I'm glad I didn't make it back then
  4. FusionCore

    Haven't worked on it in a while. I plan to bring it back sometime. Back then though I sucked. A...

    Haven't worked on it in a while. I plan to bring it back sometime. Back then though I sucked. A LOT. Now I am more confident to actually bring something good to the table
  5. FusionCore

    Script Notepad 3 | Skript editing, sharing, more... - Actual Update

    Accidentally uploaded the wrong file. Please download this one!
  6. FusionCore

    Script Notepad 3 | Skript editing, sharing, more... - Faster with better functionality

    Its faster and provides a file system and checkmarks. It also makes the loading instant.
  7. FusionCore

    Script Notepad 3 | Skript editing, sharing, more... - Fast and Furious

    This improves the entire script making it very fast and adds functionality for deleting and settings lines on your notepad.
  8. FusionCore

    Skript and Big servers

    Depends on what you are using Skript for.
  9. FusionCore

    Solved How to make this more efficient?

    Mine will make it more efficient. You shouldn't have that much code.
  10. FusionCore

    Solved How to make this more efficient?

    This should work right. I don't know why but I can't get the on command "hello" or "hello2": to work.. on command: if command is "command1", "command2", "command3" or "command4": if player does not have permission "{@permission}": message "{@nopermissions}" cancel event
  11. FusionCore

    Making a Skript IDE..

    Making a Skript IDE..
  12. FusionCore

    Argument with multiple routes

    Set my answer as best if you want
  13. FusionCore

    Argument with multiple routes

    Then check if its a valid item. if (arg-1 parsed as an item) is not an item: send "Blah"
  14. FusionCore

    void kills help

    That's because you are checking if its a player first ;-;
  15. FusionCore

    Argument with multiple routes

    Fixed your code: command /item [<text>] [<integer>]: permission: admin permission message: &cLol no trigger: if arg-1 is not set: send "&4Error: &c/item <item> <amount>" else: if arg-1 is "dirt2": if arg-2 is between 1 and...
  16. FusionCore

    Argument with multiple routes

    give player (arg-1 parsed as an item)
  17. FusionCore

    Argument with multiple routes

    Why would you need item in it?
  18. FusionCore

    inventory GUI

    Please click the plus button when making a topic/reply and click code. Then I can see the indenting and it will make it easier for me to help you.
  19. FusionCore

    Tab complete

    I haven't tried it yet but you could see if this works? (Requires MundoSK) on tab complete: set {_args::*} to split event-string at " " if {_args::1} is "/": delete completions add "Whatever you want" to completions
  20. FusionCore

    Argument with multiple routes

    I usually do something like this: command /blah [<text>]: trigger: if whatever: set {_c} to arg-1 parsed as an item else: set {_c} to arg-1 continue..