1. 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!

Dismiss Notice
This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

How to enable skript effects

Feb 4, 2020
How to enable skript effects
  • why you are here
    You should have Skript effects enabled on your server. They are useful for debugging and checking simple stuff

    How to enable skript effects

    go to Plugins/Skript/config.sk

    enable effect Commands: false
    vvv
    enable effect Commands: true


    allow ops to use effect Commands: false
    vvv
    allow ops to use effect Commands: true


    after you saved the file, type /Skript reload config
    by default, you can execute Skript effects using !<effect>
    example

    !send "hello"
    hello

    !send "%1+1%"
    2

    !send "%targeted block of player%"
    white wool block

    [[ Important notices ]]
    • run effects are not 100% the same as effects run inside an sk file
    • you cannot use local Variables
    • multiple spaces (more than 2) will get reduced to 2 spaces then executed
    • you cannot put color code symbols § in chat (unless you modify the server jar)
    • you cannot use options
    important*
    if your script has a function that has a long parse time, do not execute this as an effect. because of how parsing works, your server will freeze for a few seconds