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

    Access to same variable twice without change it, get different outcome

    {exist.%player%} is set under the code below on join: if {exist.%player%} is not set: set {exist.%player%} to true command //setUpFormerExisted: permission: tbc.excommands trigger: loop all players: make console execute command "//setUpExistance...
  2. G

    [skript-mirror] the method threw a NoClassDefFoundError

    error message from skript: [Skript] method SSHClient#connect called with (node01.39mc.top (String), 2022 (Long)) threw a NoClassDefFoundError: Could not initialize class net.schmizz.sshj.common.KeyType [Skript] method SSHClient#authPassword called with (xxxxxxxxxx.xxxxxxx (String), xxxxxxxxxx...
  3. G

    How to turn text into a usable alias

    My question is how to turn text into a usable alias, is there a constructor for an alias? ex: set block at {_l} to stone #valid set block at {_l} to "stone" #invalid set block at {_l} to #invalid well, why I don't just input stone without "" because when I put item into a list in a yml, it...
  4. G

    Movable airship to drive

    Hello, how to turn text into a block? I think I saved all blocks' name in text instead of alias, here is the example: set block at {_workingLoc.%player%} to "stone" #won't work set block at {_workingLoc.%player%} to stone #instead this will work Is there any way to do it? Thanks Oh by the...