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

    Solved Multi-language problem [GER/EN]

    As far as I can see, yes. That was the only issue I spotted
  2. Wynnevir

    Solved Multi-language problem [GER/EN]

    you are broadcasting it, so it's being sent to all players by default. You can use send or message to send it to a specific player.
  3. Wynnevir

    set slot problem

    Sure thing^-^ it'll be in an hour or so for me when I'm done work.
  4. Wynnevir

    set slot problem

    no quotes, no underscore. I may be wrong but worth a try^-^ I can't get on my server to test atm.
  5. Wynnevir

    set slot problem

    perhaps try "feather item". I think I recall having to use the term bed item to get beds to show up properly. Also when you post code, press the small + sign on the top bar and select code. you can paste your code in so it formats properly!:D
  6. Wynnevir

    Potions

    Did some testing and it works if you label it as water_bottle:# so like water_bottle:3 is Fire resistance
  7. Wynnevir

    How can i give player a item in a slot?

    you need to specify it's their inventory. set slot 9 of player's current inventory to chest named "..." oop nevermindx3 was too slow haha.
  8. Wynnevir

    Fight Timer

    This may not be the most efficient way of doing it, but this is part of my pvp combat log skript on damage of player: attacker is a player if {combat.tag::%attacker%} is false: send "Tagged in combat for 15 seconds. Don't log out" to attacker set {combat.tag::%attacker%}...
  9. Wynnevir

    Check when a player catches a fish

    I remember fishing being a bit buggy and I'm not sure if that's been fixed. But this post has two codes that will do what you want in the post marked best answer https://forums.skunity.com/threads/on-fishing-state-event-bugged.4533/#post-15918
  10. Wynnevir

    Solved Random broadcast...

    I haven't tested this, so let me know if it works. It shouldn't need any addons. command /tipstop: permission: tipstop.use permission-message: "Oy, you ain't got permission" trigger: if {tipstop::%player%} is false: set {tipstop::%player%} to true else...
  11. Wynnevir

    Addon [Deleted] SkUniversal

    It'd be cool to have support for this plugin^-^ https://www.spigotmc.org/resources/luckperms-an-advanced-permissions-plugin.28140/
  12. Wynnevir

    Looping blocks in a chunk

    https://docs.skunity.com/syntax/search/chunk%20addon:skript,skquery%20category:event,condition,effect,expression,type The docs have your answer x3 Praise be to the docs All knowing and all powerful
  13. Wynnevir

    get chunk next to placed bloc

    Bi0 created a function for this on this thread. Dont know which radius you'd need for what you want to select, but my guess would be like 16.
  14. Wynnevir

    Why doesnt it send the message?

    it will not execute your last "if" statement because you have it set to always stop after your "else" statement. put the "if arg 1 is "Meny":" bit above your else statement. preferably above your first if statement too, so your else still corresponds to the "Pvp" condition.
  15. Wynnevir

    Solved Internal Error when using arguments

    Try using an appropriate skript version for your MC version. Dev 25 was the last supported for 1.8.
  16. Wynnevir

    Potions

    You can only add text to a list add "Potion of Leaping" to {potion::normal::*}
  17. Wynnevir

    Skript - Gui Kits cooldown

    alrighty post your code thenx3, per help request guidelines
  18. Wynnevir

    Skript - Gui Kits cooldown

    There's a cooldown.sk example that comes with skript by default. just follow that example and instead of canceling the event, deduct the higher cost.
  19. Wynnevir

    A couple of questions

    From what I've experienced, the potion names go by the names in game The name not the effect. For particles I recommend SKdragon. There's a list of all particle names it uses right on the addon page
  20. Wynnevir

    How do you identify inventory name in a script?

    https://forums.skunity.com/threads/name-of-inventory.2863/