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

    AuthMe Welcome.txt alternative in skript

    Hello. I use AuthMe on my server for authentication. I want to have a text that when you click it suggests a command, but as far as I know you can't do that in the welcome.txt. Is there a way to do this message with skript? Thanks in advance.
  2. A

    Solved Lobby without bungee

    Thanks. Works great.
  3. A

    Solved Lobby without bungee

    Hello, Thanks for the answer, but this breaks if they quit in lobby world.
  4. A

    Solved Lobby without bungee

    Hello, I want to add a lobby system to my server, but I don't want to buy an extra server and a bungee. What I mean by lobby system is that when you join, you are in a lobby and when you go to survival you get teleported to your last location. With bungee this would be easy, but financially it...
  5. A

    Solved Time change vote system not working

    thanks it works now
  6. A

    Solved Time change vote system not working

    Hello. I've been working on time change vote system for my server. But i have a problem. The problem is that people can spam yes/no cmds. How do i solve this? I tried using names and uuids but nothing. (dont mind the language) Thanks Code: variables: {hlasovani::ano} = 0 {hlasovani::ne}...
  7. A

    Solved Cooldown without message.

    The code looks like this. variables: {%player%::guard} = 1 command /npctalk1: cooldown: 5 seconds trigger: chance of 50%: send "&c&lGuard: &fNo!" to player set {%player%::guard} to 0 wait 5 seconds set {%player%::guard} to 1...
  8. A

    link and hex not working

    The error was "Invalid use of quotes..." i will try the doubled "#" i will update the post after i try it EDIT: It works. Thank you so much Another question. How can i use this in chat or msg or /itemrename? thanks
  9. A

    Solved How do i add a cooldown

    can you help me with my code? variables: {%player%::guard} = 1 command /npctalk1: trigger: if {%player%::guard} = 1: chance of 50%: send "&c&lGuard: &fGet out of here!" to player stop chance of 50%: send...
  10. A

    link and hex not working

    Server: git-paper-526 Skript version:2.5.3 SkAddons:Skquery,TuSke,SKrayfall,SKellet,sharpSK Hello. First i am gonna talk about the link. So i wanted to make a clickable link for my /discord command. I followed the skript documentation (https://skriptlang.github.io/Skript/text.html) for text...
  11. A

    Solved How to give shulker boxes containing stuff?

    U U're a fricking legend. Thanks
  12. A

    Solved How to give shulker boxes containing stuff?

    Hello. I am making a shop with skript that sells shulker boxes with items in them. I know how to make the shop gui but I need help with giving the player a shulker that has stuff in it. My code: command /shoptest: permission: shop.test trigger: open virtual chest with size 6...
  13. A

    How to give shulker boxes containing stuff.

    Hello. I am making a shop with skript that sells shulker boxes with items in them. I know how to make the shop gui but I need help with giving the player a shulker that has stuff in it. My code: command /shoptest: permission: shop.test trigger: open virtual chest with size 6...
  14. A

    Solved Cooldown without message.

    Hello. I have a "NPC" dialog Skript on my server. It's super simple but i wanted to add a cooldown so people don't spam the dialog. I know there is the: cooldown: 10 seconds cooldown message: No but then it spams the cooldown message. How can I make it so that it doesn't say anything and just...
  15. A

    Solved if %player's money% is greater or equal to 2000:

    I forgot to edit my post. I have just put "else:" there.
  16. A

    Solved if %player's money% is greater or equal to 2000:

    Thank you so much. It works now. But i have another problem now. This code doesnt work. It says: cant compare a money with ('lesser than' or 'equal to 1999'. How do i fix this? if player's balance is lesser than or equal to 1999: send "&eYou dont have enough money." stop
  17. A

    Solved if %player's money% is greater or equal to 2000:

    what economy plugins are there? I really dont know. I started working on a minecraft server when my developer left. Is it possible that shopguiplus works if i dont have economy plugin? Also i can do cmd /eco give. Is Vault economy plugin? Thanks for help.
  18. A

    Solved if %player's money% is greater or equal to 2000:

    Skript version: 2.5.3 Server version:git-paper-529 Addons:Skellett v1.9.11, skRayFall v1.9.23, SkQuery v4.1.4, TuSKe v1.8.2, SharpSK v1.6.4 Hello, I am making a skript that you can buy someone out of jail. I have it almost done but i need to add money check. I added if %player's money% is...