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

    Addon skript-mirror - skript-mirror 0.14.0

    Fix issues with object wrappers Remove the stack trace expression Restrict import aliases to valid Java identifiers Remove multiple as a synonym for plural/non-single Fix try expressions not being converted correctly Fix parse sections being parsed multiple times Fix an NPE with nullable...
  2. btk5h

    Addon skript-db

    You have to loop through {_output::<column>::*}, like {_output::id::*}
  3. btk5h

    Addon skript-db

    Database calls are made on a separate thread, so they will not hang your server. As for your second issue, that depends on how your script is set up. As long as you give the player items after the database transaction is complete, you'll be fine.
  4. btk5h

    Addon Reqn - Reqn 1.2.1

    Fix an issue with code after requests not being executed on the main thread Send requests as UTF-8
  5. btk5h

    Addon skript-mirror - skript-mirror 0.12.1

    ⚠️ Breaking Changes type is no longer a synonym for class the last java error now returns the actual error object instead of the message Add a section for intercepting the initialization of custom syntax at parse-time (#26) Add a conditional continue utility for conditions and effects (#45)...
  6. btk5h

    [Feedback Required] Docs data reset & fresh import

    Unlike with most addons, the "per-element" approach to documentation doesn't really work for skript-mirror. I've settled on using GitBook for documentation as it allows documentation to be stored on skript-mirror's git repository and it offers a variety of organization/formatting features that...
  7. btk5h

    Addon skript-mirror - skript-mirror 0.11.1

    ⚠️ Breaking Changes As each issue closes one-by-one, skript-mirror gets closer and closer to a stable release! While we're making a lot of changes that should improve the developer experience, it's important to note that some of those changes are not backward-compatible. Please sit tight while...
  8. btk5h

    Addon skript-db

    I need more context to tell you what's going on.
  9. btk5h

    Addon skript-mirror - skript-mirror 0.10.0

    ⚠️ Breaking Changes skript-mirror is getting closer to a stable 1.0 release! We're using these last few 0.X releases to do any necessary breaking changes while we still can. This update introduces some massive changes that will break all existing custom syntax declarations. Thankfully, custom...
  10. btk5h

    Addon skript-db

    execute "SELECT * FROM test WHERE username=%player's name%" in {sql} and store the result in {output2::*} Do not surround the embedded expression with quotes. Also, you must explicitly use player's name.
  11. btk5h

    Addon skript-db

    I don't believe Java will replace table names in prepared statements. Player isn't a SQL type. Use player's name or player's uuid instead of player.
  12. btk5h

    Addon skript-db

    I would suggest restructuring your database as creating a separate table for each user is not a common practice. However, if you really need this, you can use unsafe {_u} instead of {_u}.
  13. btk5h

    Addon skript-mirror - skript-mirror 0.9.0

    ⚠️ Breaking Changes Syntax for continue changed to return [%-objects%] (#30) Syntax for null changed to null Add experimental support for implementing interfaces Add custom conditions Add an expression for getting a raw expression from a custom expression Preserve null during casting (#10)...
  14. btk5h

    Addon skript-db

    This isn't possible yet. I'll add autoreconnect to a future version.
  15. btk5h

    Addon skript-db - skript-db 0.1.1

    Cache connections with the same jdbc url (fixes #2)
  16. btk5h

    Addon skript-mirror

    If that is the case, then that is an issue with Skript that should be fixed in Skript. If you need a similar feature, you can already accomplish it through custom expressions.
  17. btk5h

    Addon skript-mirror

    You can already create variables that aren't saved to any database in vanilla Skript.
  18. btk5h

    Addon skript-db

    I think I had a fix, but I forgot to push a new version. I'll push one this weekend.
  19. btk5h

    Addon skript-mirror

    I have no experience with PermissionEx's API, but skript-mirror is case-sensitive. If PEX's docs show capitalized methods and fields, you must capitalize them the same way.
  20. btk5h

    Addon skript-db

    Entries in the same row share the same loop-index. execute "SELECT spieler,grund,strafe,moderator,datum,jailname FROM {@jail_table} WHERE spieler = %{_warnplayer}% AND strafe = 'WARNING'" in {sql} and store the result in {_output::*} loop {_output::spieler::*}: message "%loop-value% -...