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

    Solved Where are these strings coming from?!

    I have downloaded someone's PunishGUI script some time ago and I wanted to edit it. I wanted to change this To: "Ban Duration: 30 Days" (not 30.0) So I changed it in the only 2 places I've found that string but still nothing has changed. Can someone have a look at it and tell me what I'm...
  2. G

    Solved How to make this more efficient?

    Let's say I have about a hundred of these: on command "/command": if player doesn't have permission "{@permission}": message "{@nopermissions}" cancel event Will this really make it faster/more efficient? on command: if command is "command1", "command2", "command3" or...
  3. G

    Solved How to make this more efficient?

    I have a script that blocks users from using certain commands (don't question my ways): on command "/command1": if player doesn't have permission "{@permission}": message "{@nopermissions}" cancel event on command "/command2": if player doesn't have permission...
  4. G

    Solved How to allow 1 subcommand but forbid all others?

    I'm trying to make a script that looks for people that use the command /dc. If it finds it, it needs to see if the exact command was /dc viewrecap 0. If it was that then let the player do it, if no then don't let the player run the command. Basically I want people to be able to run /dc viewrecap...