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 community!

    Now, what are you waiting for? Join the community now!

  1. btk5h

    Other Custom effects and expressions with skript-mirror

    What is the benefit of implementing custom types?
  2. btk5h

    Other Custom effects and expressions with skript-mirror

    Hooking into Bukkit events is already possible. I may add support for user-defined events if the syntax is simple enough.
  3. btk5h

    Addon skript-mirror - skript-mirror 0.8.3

    ⚠️ Breaking Changes Change modes now start with "to " Fix the index of expressions displayed in toString()
  4. btk5h

    Other Custom effects and expressions with skript-mirror

    As of skript-mirror 0.8.0, you can now create your own custom effects and expressions. These serve as a replacement for Skript functions with more features and more familiar syntax. By combining custom syntax with reflection, it is now possible to extend Skript in ways previously only...
  5. btk5h

    Addon skript-mirror - skript-mirror 0.8.2

    Add missing parser mark expression Add missing regex expression Fix issues with passing event-dependent expressions to custom syntax
  6. btk5h

    Addon skript-mirror - skript-mirror 0.8.0

    Fix an NPE when a method or field is called on nothing (#11) Fix error propagation during lookups (#12) Create separate expressions for tracking errors (#17) Add experimental custom syntax support
  7. btk5h

    Anyone who has time and can could help me?

    skript-mirror's custom events are implemented better and should be used instead. (skript-mirror doesn't require a configuration file and has the reflection tools necessary to deal with new events.) In this case, using another addon is unnecessary. Skript already has an on form event.
  8. btk5h

    Web Request

    What errors are you getting?
  9. btk5h

    Web Request

    You want to use Reqn. send a "post" request to "https://maker.ifttt.com/trigger/Anime-Sugg/with/key/CENSORED" with the header "Content-Type: application/json" and the body {_your data here} For creating/reading more complex json (especially if the data is generated from user input), you should...
  10. btk5h

    Addon skript-db

    I would prefer if you guys created Github issues since they're a lot easier to track. I'll try to remember any issues brought up on the forums, but there's always the chance I'll forget.
  11. btk5h

    Solved Duplicated Variables

    Skript automatically cleans up the variables.csv when the server starts. Skript loads all variables into memory when the server starts. Skript only writes variables to the database in order to keep track of data between server reboots. If you're using a CSV flatfile for variable storage, Skript...
  12. btk5h

    Addon skript-db

    The first layer of the list variable contains the names of the columns. You want to loop through the second layer, or {output::Tokens::*}
  13. btk5h

    Addon skript-db

    I just need enough information to reproduce the issue on my own machine.
  14. btk5h

    Multiple addons in one (with a good idea how to solve the old syntax fight)

    It's not just conflicting syntax, have fun getting some developers to actually learn how to use version control or follow a style guide. The addon developer community has developers of such a wide range of experience levels, you can't expect them to form a single productive unit. Plus, if every...
  15. btk5h

    Addon skript-db

    That's strange, even if the connections weren't being closed correctly, the connection pool should be limited to 10 connections. I'll look into it, but I'll need more information to replicate this issue.
  16. btk5h

    Addon skript-db

    From an empty database, what queries would I execute to set up tables and entries?
  17. btk5h

    Addon skript-db

    Could you post more details about how your database and tables are set up so I can replicate this?
  18. btk5h

    Does someone help me to encrypt a code?

    If you're sharing the server, there's nothing you can do. You're either going to have to trust the other owner or pay for your own server.
  19. btk5h

    Does someone help me to encrypt a code?

    You can't really "encrypt" scripts because in order to use them on a server, you need to decrypt them at some point. Unless you want to be present every time your server starts up to enter in a secret key, all of the information necessary to decrypt your scripts has to be present on the server...
  20. btk5h

    Skript variables [Ram]

    You don't need 2 files, do you? It appears you don't want certain variables to be stored so that they don't affect server startups.