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

    Chest Event

    1. On inventory click event 2. check if the cursor slot of player is the item you want 3. Check if the event-inventory is a chest, if so cancel the event. 4. Set player's cursor slot to air 5. If the player has enough space for the item you are giving them, give them the item, or else drop it at...
  2. Nova

    A per world chat skript

    Or: on chat: cancel event send "%player's display name%: %message%" to all players in player's world
  3. Nova

    Script Modify 1.0.0

    Description This is a simple skript that you can use for multiple features such as broadcast, kick, ban, unban, mute/whitelist chat, clear chat, and more. NOTE This skript is still under development and new features are being implemented every weak. Commands /modify list - List all modifiers...
  4. Nova

    Modify

    Description This is a simple skript that you can use for multiple features such as broadcast, kick, ban, unban, mute/whitelist chat, clear chat, and more. NOTE This skript is still under development and new features are being implemented every weak. Commands /modify list - List all modifiers...
  5. Nova

    ForceSpawn

    Description Have you ever wanted your players to spawn in the same location every time they join? Then this is the script for you! This feature can also be disabled using a command! Commands <> = required, [] = optional /spawn onjoin [true, false] - Enable or disable the feature to send players...
  6. Nova

    Script ForceSpawn - Added sign compatibility

    Added Features: + Players can use signs to teleport to the spawn + Added a help command + Fixed 1 bug(s)
  7. Nova

    Script ForceSpawn 1.1.0

    Description Have you ever wanted your players to spawn in the same location every time they join? Then this is the script for you! This feature can also be disabled using a command! Commands <> = required, [] = optional /spawn help - List of commands /spawn jointp <true, false> - Enable or...
  8. Nova

    Solved How to loop blocks that you place?

    +TPGamesNL yep
  9. Nova

    Solved on break

    can u please remove the else: stop please?
  10. Nova

    1000 TO 1K

    alright lel .^. i just use the one i sent all the time so idk lel
  11. Nova

    Inventory name check problem T-T

    i said that no need to keep replying to an already solved thread. Although, he hasn't marked it as Solved yet :/
  12. Nova

    1000 TO 1K

    this is much more efficient: set {_v::*} to 1000, 1000000, 1000000000 set {_n::*} to "K", "M" and "B" set {_b} to balance of player loop {_v::*}: {_b} > loop-value set {_r} to "%{_b} / loop-value%%{_n::%loop-index%}%" send "&aBalance: &c%{_r}%"
  13. Nova

    Inventory name check problem T-T

    if name of event-inventory = "&0REWARD": send "&fREWARD SET!" try that
  14. Nova

    trying to compare victim to dolphin

    How about putting this code: on damage: send "%victim%" then just hit a dolphin in your server to get it's type. For example if in chat it says "dolphin1", then in skript, write: if victim is dolphin1:
  15. Nova

    How to stop the events of another command happening

    Solved I guess. Pls mark this as solved lol
  16. Nova

    Solved How to loop blocks that you place?

    But the one u said, u only mentioned how to do it if he wants multiple blocks to be removed. And the one u have mentioned, he doesn't want (i think) only 1 BLOCK to be set to air. He wants all the blocks that the player placed to be set to air, not just 1
  17. Nova

    Looking for someone to fix bugs on a PRACTICE skript

    accept my friend request. I can make loads of skripts for u. - DragonBlitzz#1733 or fix bugs LIKE THE DOUBLE POST DATE
  18. Nova

    How to stop the events of another command happening

    No I don't think u know what he wants. He wants something like this that if he runs command "/start" then the command starts doing something but as soon as he runs the command "/stop" it stops what "/start" is doing. It's kinda confusing.
  19. Nova

    Solved How to loop blocks that you place?

    do u want to set all the blocks that the victim placed to air?: on place: add location of event-block to {blocks::%uuid of player%::*} on death: if attacker is a player: if victim is a player: loop {blocks::%uuid of player%::*}: if loop-value is set...
  20. Nova

    How to stop the events of another command happening

    Hmm You could use a variable like I said. So before waiting, you can add a line. For Example here's a quick code to tell u: command /togglestop: trigger: if {stop} is true: set {stop} to false else: set {stop} to true command /uhc: trigger...