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

    Solved Adding of armor trim not working

    Hello, here is a partially fixed version of the code. The trim thingys are not fixed. command /halloweenunbreakable: trigger: loop all items in player's inventory: if loop-item = leather helmet named "Halloween Helmet": add armor trim using gold_material...
  2. Pierrelasse

    AH sniping script

    Hello, you could take a look at essential client which provies you a scripting api. You should be able to do the thing you said in there. https://github.com/senseiwells/essentialclient/
  3. Pierrelasse

    Blast Skript

    Hello, this should work with skript-reflect but for some reason it is stuck loading the script for me. on block break: {multibreak::%player's uuid%} != true event-block = stone set {multibreak::%player's uuid%} to true loop all blocks in radius 1 of event-block...
  4. Pierrelasse

    Binding pitch and camera angle

    Hello, you will need to calculate a number between 0 and 1 using the player's pitch or yaw. The following code sets a pitch and yaw variable which is the player's yaw/pitch represented by a number between 0 and 1. set {_pitch} to (loop-player's pitch + 90) / 180 set {_yaw} to loop-player's yaw /...
  5. Pierrelasse

    Solved amount of item in inventory is not work

    What code do you currently have?
  6. Pierrelasse

    errors with skript anticheat

    There is a reason people call me the "job stealer" >: )
  7. Pierrelasse

    hey, i'm trying to make an anti cheat, for my server and maybe to help other servers with an anticheat with my skript, 20 errors :( reach check

    Hello, you made now two other threads talking about your anticheat. https://forums.skunity.com/threads/errors-with-skript-anticheat.18620/ https://forums.skunity.com/threads/speed-fly-checks-not-working.18609/ Sadly, you can't post your file in here and someone will fix it (you can but no one...
  8. Pierrelasse

    Solved amount of item in inventory is not work

    Maybe set {_n} to amount of (type of event-item) in inventory of player?
  9. Pierrelasse

    Custom ore generation

    Hello, modifing requires you to make a plugin but you are trying to make some sort of minigame which probably resets. In that case how you said, it would be better to do worldedit magic. Maybe you can use skript-reflect and take a look at the worldedit api.
  10. Pierrelasse

    errors with skript anticheat

    Okay, you should consider doing this in java. I also coded an anticheat in skript and it was kinda ok but after some time i tried doing the same in java and it was so much better. I had also access to packets much more easily. If you're making especially a anticheat, i recommend you split it...
  11. Pierrelasse

    console executing command wont work

    Hello, you can make the console execute commands by doing execute console command "testcommand" command /testcommand: trigger: stop
  12. Pierrelasse

    Solved Cooldowns

    Hello, next time you can try writing some pseudo code / a minimalistic and super simple version of the code. Now to your problem, you can try making your own cooldown manager using unix. Here is an example: # Utils function getUnix() :: number: return unix timestamp of now # Cooldown...
  13. Pierrelasse

    Specified Exploded Blocks (sk 2.7.1)

    Hello, maybe take a look at this thread: https://forums.skunity.com/threads/cancel-event-only-for-specific-blocks-with-on-explode-trigger.9827/
  14. Pierrelasse

    speed/fly checks not working

    I don't think that anyone here wants to fix (your) anticheat. Making an anticheat in skript is not a good practise like Govindas said. You should refer from using a already existing one or if you really want to make it yourself, then idk where you can find someone that can teach you that. And i...
  15. Pierrelasse

    errors with skript anticheat

    Hello, skript anticheats often don't work well / have false positives / no flags at all. You can try contacting the author so issue gets resolved. I recommend you use nocheatplus or any free anticheat that is a plugin.
  16. Pierrelasse

    How do I make it so a lever cannot work without a item with a specific name

    NO CODEBLOCK DETECTED! EMERGENCY! ALARM!
  17. Pierrelasse

    Solved how to add a players inv slot to a list variable

    You can do add slot 0 of player's inventory to {test::*} To clear the list again you can do clear {test::*}
  18. Pierrelasse

    I need quick help

    Welly? Welllyyyy? Did mr dan did gud job? Is this fine? Problem solved?
  19. Pierrelasse

    [Request]Sword named Demon King's Dagger that will give strength 2 for 8min with righclicked with a cooldown of 1min Thanks

    Maybe this gud maybe no idk yes on load: set {-sussywussysword} to iron sword named "&5Demon King's Dagger" function getUnix() :: number: return unix timestamp of now on rightclick: player's tool's name = {-sussywussysword}'s name # 's name Is so you can enchant or smth set...