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

    Command with Arguments

    on command: if player is in "world": if player is not "TheRazorGod": command is not "/br smooth" send "&f[&6Ikonia&bAkademi&f] &aYou don't have permisson!" If I make the command blank, it does not work. How can i do? Run: command is not "/br-smooth" Doesn't...
  2. T

    Displayname of Argument 1 [Skript Realname]

    command /display [<player>]: trigger: if arg 1 is not set: send "&6Creative-1&8» &a/display (nick)" stop if arg 1 is set: set {_player} to arg 1 execute "SELECT nick FROM nickname WHERE playername=%{_player}%" in {sql}...
  3. T

    Solved How can remove colorcode?

    command /test <text>: trigger: set {_msg} to arg 1 replace all "&1" with "" in {_msg} replace all "&2" with "" in {_msg} replace all "&3" with "" in {_msg} replace all "&4" with "" in {_msg} replace all "&5" with "" in {_msg} replace...
  4. T

    Solved Variables inside Variables

    I want to do something like this, but I'm getting the error in the photo. options: cape1: &8Black &aCape cape2: &8White &aCape cape3: &8Brown &aCape command /capes: trigger: send "&aAvaible Cape list;" loop 3 times: set {_number} to loop-number...