Recent content by Tai1er

  • 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. T

    Addon ServerInstances

    I'm hopping to see a RedisBungee support to allows other proxies to send players on server instances. :emoji_grinning:
  2. T

    Addon skript-db

    All my local variables are deleted when I execute a query. command /test: trigger: join(player) function join(p: player): broadcast "%{_p}%" set {_uuid} to {_p}'s UUID execute "SELECT id FROM Players WHERE uuid = %{_uuid}%" in {sql} and store the result in {_players::*}...
  3. T

    Addon skript-db

    Hi, :emoji_slight_smile: Does Skript-db support NVAR? I have problem with this for exemple: set {_id} to "♂" execute "INSERT INTO Table(`id`) VALUES (%{_id}%)" in {sql} I get "?".
  4. T

    Addon skript-db

    Thanks for your fast answer. :emoji_grinning: The async expression from MundoSK changes anythink. The expression "execute" is like a "wait" for Skript.
  5. T

    Addon skript-db

    Hi, :emoji_grinning: I have some problems with variables in query. When I try this, "execute "INSERT INTO Coordonnees (`id`,`region`) VALUES ('%{_x}%', 1)" in {sql}" I receive this mysql error: "Parameter index out of range (1 > number of parameters, which is 0)." It works normaly without...