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

    Solved How to check for permission true and false in the same line

    Thank you for reminding me to keep it simple. The solution: command /autojoin: description: This command is used to automatically join the faction corresponding to your nation. executable by: players permission: skript.foreigner permission message: &4You do not have access to...
  2. R

    Skript doesn't work, what did I do wrong?

    What is the error?
  3. R

    Solved Written error

    Then you should also know that no one can help you without the code. (Btw, even if you did share the code, I do not have the expertise yet to work properly with list variables, but others do.)
  4. R

    Solved How to check for permission true and false in the same line

    As the title suggest, I would like to check if one permission is true while the other is false. I know I could do if player has permission "test.me": if player does not have permission "test.meagain": do something But what I am trying to do is having it on the same line. if player has...
  5. R

    forge unable to plant/grow nether wart

    I stopped modding since Minecraft release 1.0, doesn't Forge have their own forums? Or heck, Minecraft forum? Planet Minecraft?
  6. R

    forge unable to plant/grow nether wart

    Dude, this forum is for support on scripts you made. Modding forge has nothing to do with this.
  7. R

    Solved Modify existing command

    Thank you. I will stop wasting my time doing the impossible then.
  8. R

    Solved Modify existing command

    That's the point. I want to edit this existing command.
  9. R

    Solved Modify existing command

    I use FactionsUUID and Lands, I want both to work together so I have been building a script to make it happen. However, when it comes to banning and kicking from factions I need to be able to target the second argument in the command and I do not know how to do that. All commands in this script...
  10. R

    Solved /do commad

    Then you make another command in your script. /do will execute everything in your trigger. You cannot have /do do two completely different things because they are different data types.
  11. R

    Teleporting when standing on specific location

    Or claim a 1 block space with worldguard and then check for region.
  12. R

    Solved Randomized Item ID

    Would you mind sharing your solution?
  13. R

    I need a trading Skript

    Get this plugin instead. https://www.spigotmc.org/resources/trademe-with-api-to-create-custom-trades-1-7-10-1-19-x.7544/
  14. R

    Solved /do commad

    Remove your brackets in the command. Brackets in documentation mean something is optional. Haven't tested it yet, but try this: command /do <enchantment>: trigger: enchant the player's tool with %arg-1% Relevant documentation: https://docs.skriptlang.org/effects.html#EffEnchant...