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

    Solved How to change the lore of the last item obtained?

    Take a loot at this, it works for me: on pickup: if lore of item contains "&fCrit chance: &9?": set the 1st line of the item's lore to "&fCrit chance: &93"
  2. Juggernaut

    Run Commands when the player click a mob

    Hey, try this it works for me: on right click: clicked entity is villager: make player run command "spawn" as op You need SkUtilities for this to work, its an add-on. https://forums.skunity.com/resources/skutilities.26/
  3. Juggernaut

    How to list multiple values in variable

    Hey, could you send me the full code? Makes it easier for me to help you.
  4. Juggernaut

    Run Commands when the player click a mob

    Hey, can you specify what command you want to execute?
  5. Juggernaut

    Break block, unless someone's player nickname is there

    Hey Ninguart, you can try this it works for me: on block break: if name of player is not "Ninguart": cancel event You can also try this to extend it: on block break: if name of player is not "Ninguart" or "Ninguart2": cancel event