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 community!

    Now, what are you waiting for? Join the community now!

  1. Merrical

    Make it so that you can have AI in minceraft.

    Man saying this while being in the skunity forums :emoji_laughing:
  2. Merrical

    skGlow

    I tried this addon before but it wouldn't work. Thanks a lot! Imagine this working on blocks using falling blocks. (Edit: Why does BaeFells recent activity say they posted this thread?)
  3. Merrical

    Make it so that you can have AI in minceraft.

    I spelled minecraft correctly. Don't ask. Imagine AI that could make decisions based on the world around itself. It can do certain things, take buildings you've made and build them in areas suitable for them, play minceraft, make server you could never, and more!
  4. Merrical

    I shall'eth click thee button and thee button shall'eth be clicked.

    I shall'eth click thee button and thee button shall'eth be clicked.
  5. Merrical

    block placed is chest??

    I'm sorry, but we don't give exact answers here because then we wouldn't be doing our job. You know how to check what the loop-block and event-block is, so try to get it working by yourself. We aren't spoon feeders.(not trying to be harsh, just the truth)
  6. Merrical

    compare 2 items while ignoring durability?

    if the only thing you care about is durability, you could use the expression https://skripthub.net/docs/?id=3735 to set their durability to the same thing. I've used this before and I can vouch that it works.
  7. Merrical

    looking for a devloper!

    This isn't where you go to get a dev. This is where you go to get help with scripting. I'm sure there's someplace else that you can go on this website! (Edit: https://forums.skunity.com/forums/requests/)
  8. Merrical

    Is it Possible? WorldGuard

    you can't. why would you need to? just do the condition like this: if "%region at player%" contains "TestRegion": //Code here Make sure that the region name is exactly what you put in there. I've found that it works very well.
  9. Merrical

    What's wrong with this script?

    when looking for an inventory click, you want to check the event-slot. examples of this could be: on inventory click: if index of event-slot = 10: send "clicked the 10th slot of this inventory" if event-slot is an iron ingot: send "this slot is an iron ingot" else...
  10. Merrical

    Help for skript creative item detector

    OK, I found another forum that had the same question. https://forums.skunity.com/threads/creative-inventory.16051/ It looks like the used skript reflect to solve it.
  11. Merrical

    Help for skript creative item detector

    the proper syntax for that would not be event-inventory, try player's current inventory when you want to create a GUI with skript, at least for how I do it, I do: open chest inventory with 3 rows named "Chest" to player set slot 11 of player's current inventory to feather named "&fFeather"...
  12. Merrical

    Help with basic hit detection

    https://skripthub.net/docs/?id=1143 this only works on an on damage event. I may be wrong, but this is where it's best used. Well, if you want to check if the attacker is holding a shield, just use this: https://skripthub.net/docs/?id=1140
  13. Merrical

    Save chest

    If i'm correct, arrays don't exist in skript. instead there are lists: {list::*}. You can set individual index of the list like this: set {list::5} to 5.
  14. Merrical

    anvil inventory item

    You might have an addon this disables scripts vanilla GUI creation.
  15. Merrical

    Solved Selectors and arg-1

    {_sick} is a local variable. it only exists in that command. The condition "if player have {_sick}:" won't work as {_sick} is not set to anything. you can't remove {_sick} from the player if it doesn't even contain anything. {_sick} — локальная переменная. он существует только в этой команде...
  16. Merrical

    Why is this gui not working...

    No problem!
  17. Merrical

    Why is this gui not working...

    My earlier reply will solve this problem. Here
  18. Merrical

    Why is this gui not working...

    Yes, an indentation is the amount per line statement. on the 2nd line, you had two tabs or eight spaces. you would have to repeat the same amount of "indentation" for the rest of the lines. if you don't want to have to space 8 times, or tab twice, lower the indentation amount. Instead of...
  19. Merrical

    Why is this gui not working...

    Watch your indentation
  20. Merrical

    Why is this gui not working...

    I'm pretty sure you are missing the "to player" at the end. (P.S) not sure if that's the reason. that line should work. open chest inventory with 3 rows named "Like this" to player