Recent content by HiddenDev

  • 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. HiddenDev

    Need help with /cmdjoin and /cmdleave commands!

    This should do the trick. This is a command whitelist so you can add commands what you want people to use, anything else will be blocked. on command: loop {game.commandwhitelist::*}: if command is loop-value: stop else: cancel event...
  2. HiddenDev

    Solved Staff Auth getting IPS?

    This would be a horrible way of going about it anyway, peoples ips often change. Meaning you would have to do a lot of ip adding to a variable.
  3. HiddenDev

    Even time....

    Using a quick Shift-Left Click and ESC at the same time.
  4. HiddenDev

    Solved Skript wont work

    What I was provided with there is no possible way to find out what your internal error is. I fixed what could be fixed in the screenshots. I ain't no mind reader, although I would love that.
  5. HiddenDev

    Even time....

    Because I never had chance to change it to save %player% as UUID's, I mean you don't need to know rocket science to change it.
  6. HiddenDev

    Even time....

    By any chance have you put this in? set {lastuseddaily.%uuid of player%} to now If so just remove those B (Bold) set {lastuseddaily.%uuid of player%} to now
  7. HiddenDev

    Make player can control entities while riding them

    What are you using for the player to be riding the chicken. Any add-ons if so please provide them.
  8. HiddenDev

    Solved Skript wont work

    Hey, next time don't put a download for them, because it takes way more time. Press the [+] button and click </> Code, then select Skript, then paste the code there. I found your problem it was with a part of "vagtchest.sk". This code I threw together should work. on rightclick on a trapped...
  9. HiddenDev

    Even time....

    Yeah, sorry. I threw it together in about 3 minutes, had to leave the house. This should fix it. command /daily: trigger: set {_waited.%uuid of player%} to difference between now and {lastuseddaily.%uuid of player%} if {_waited.%uuid of player%} is more than 1 day...
  10. HiddenDev

    Even time....

    This should do it. (I know this is not a request, but hay ho.) command /daily: trigger: set {_waited.%uuid of player%} to difference between now and {lastuseddaily.%uuid of player%} if {_waited.%uuid of player%} is more than 1 day: open chest with 3 rows named...
  11. HiddenDev

    Inventory Move Fix

    Please explain further. I have no idea what you are asking for.
  12. HiddenDev

    How to add skulls/heads to GUI?

    This is not what is been asked in this post. If you need help, please create a new post in the help section for help.
  13. HiddenDev

    Solved Command Blocker

    Hey, this should do the trick. If not don't hesitate to reply. on command: loop {login.commandwhitelist::*}: if command is loop-value: stop else: cancel event send "&cYou can not do this. Use /login first." stop loop...
  14. HiddenDev

    How to add skulls/heads to GUI?

    Did you not try this, it works perfectly.
  15. HiddenDev

    Solved If Dog Dies

    Hey, I am making pets that follow you around for my server. You do a command to spawn your pet wolf and it tames it for you. I want it to set {dogpet.%player%} to false if your dog dies. With the death effect. Does anyone have any idea on how it could be done. Thanks.