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

    If player is at location or steps on block...

    If your problem is solved, please, do not forged to mark the thread as solved! ;)
  2. Nikd0

    Nick And Vanish Action Bar

    Please, try searching the docs and do something yourself. I'm not planning on remaking you a new hypixel server.
  3. Nikd0

    Nick And Vanish Action Bar

    #Replace all send %your message% #to set action bar of player to %your message% I think setting the action bar will set it for just a couple of seconds but I'm not sure. I'm sure you can try it ;)
  4. Nikd0

    Nick And Vanish Action Bar

    on command "/nick", "/vanish" or "/v": set {_nicked} to value of placeholder "eazynick_is_nicked" from player set {_vanished} to value of placeholder "supervanish_isvanished" from player if {_nicked} is true: if {_vanished} is true: send "You are nicked and...
  5. Nikd0

    Nick And Vanish Action Bar

    My god... if you want to have a server like hypixel, ask them to send you their plugins :emoji_angry: I do not play on hypixel, I'm not planning on doing it and I'm trying to help you and you are the one who wants my help.
  6. Nikd0

    Nick And Vanish Action Bar

    okay... you can use placeholders to check if player is nicked or not: on command "/nick": set {_nicked} to value of placeholder "eazynick_is_nicked" from player set {_nick} to value of placeholder "eazynick_display_name" from player if {_nicked} is true: send "&7You are now...
  7. Nikd0

    Nick And Vanish Action Bar

    Put this skript into your plugins/skript/scripts folder. To make it work, you also need a SkRayFall addon, you can download it here: https://docs.skunity.com/addon/skRayFall you mean something like this? set action bar of player to "You are now %{_nick}%!"
  8. Nikd0

    Nick And Vanish Action Bar

    Create a skript file: on command "/vanish" or "/v": loop all players: if loop-player has permission "vanish.msgsee": if {vanish::%player%} is not set: set {vanish::%player%} to true set action bar of loop-player to "%player% has vanished!"...
  9. Nikd0

    Nick And Vanish Action Bar

    Create a skript file: on command "/vanish" or "/v": loop all players: if loop-player has permission "vanish.msgsee": if {vanish::%player%} is not set: set {vanish::%player%} to true set action bar of loop-player to "%player% has vanished!"
  10. Nikd0

    Solved need help with npc create

    I'm glad I could help. If it's solved, don't forget to mark the thread as solved ;)
  11. Nikd0

    3 by 3 hole

    I think you can use something like this: on place: set {_loc} to location of event-block remove 1 from y-coordinate of {_loc} set block at {_loc} to air add 1 to x-coordinate of {_loc} set block at {_loc} to air add 1 to z-coordinate of {_loc} set block at {_loc} to...
  12. Nikd0

    If player is at location or steps on block...

    on any movement: if block bellow player is %your block%: #do your stuff I did not test this but it should work. You can use "on walk" as well, but I think it won't detect the player if he won't move on the block. It would look like this: on walk on %your block%: #do your stuff
  13. Nikd0

    I need help in making a random block generator

    Please mark the thread as solved.
  14. Nikd0

    item in json?

    You mean something like this? [long spigot url]
  15. Nikd0

    Silent Join/Leave for Staff Members toggle

    You mustn't use "_" at the start of the variable if you want to use it also somewhere else. Change variable to: {silentjoin::%player%} Also I think you forgot to set join message to nothing on join and on leave when {silentjoin::%player%} is true or not set. on join: set join message to ""...
  16. Nikd0

    Solved need help with npc create

    I'd recommend you searching the docs: https://docs.skunity.com/syntax/search/npc You can find things like this: (create|spawn|register) [a[n]] npc [with] (name[d]|skin [owner]) %string% [and] at [location] %location% #NPCAddon 1.0.0 needed
  17. Nikd0

    else event, and no player/console in a periodical event error

    If you are looping players, you have to add "to loop-player" at the end of the message: [message|send] %your message% to loop-player Also, although you've got every 5 minutes in certain worlds, you're still looping all players. I think you've got to useloop all players in "world1" and "world2"...
  18. Nikd0

    How do i add lore in gui using Tuske

    Use format slot 1 of player with emerald named "Interesting emerald" with lore "Lore 1, "Lore 2" and "Lore 3" to be unstealable I would recommend you searching the docs: https://docs.skunity.com/syntax/search/id:1297
  19. Nikd0

    I need help in making a random block generator

    Oh, sorry. I can't read :emoji_neutral_face:
  20. Nikd0

    I need help in making a random block generator

    Yes, but when I tested it, it took about 1 second to loop all items and give it to player. If he doesn't mind, you can sure use it. In my last code I forgot to add if {allitems::*} is not set: loop all items: #...