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

    Solved Refill chest issue

    Hello there, I've been trying to refill chests between coordinates but I can't get it to work.. no errors are given tho. Here's the full code: on load: delete {random2.item.list::*} add 1 diamond leggings to {random2.item.list::*} add 1 diamond helmet to {random2.item.list::*} add...
  2. Ariuw

    Create block radius around player

    Hello there, I've been trying to do a block radius around player when the player right clicks on a stick but I can't get it to work this is what I have so far: on right click with stick: create a fake explosion at event-location loop all blocks in radius 6 around player...
  3. Ariuw

    Missions not working properly

    Hello! I've been trying to work on a mision kind of thing, so when they talk to an NPC they complete a match so by using `/misions` they should be one marked as completed, but if they do two missions they show that they have completed two missions... so, the thing is when adding a third...
  4. Ariuw

    Avoid players from moving NPC

    Hello, recently. I added the Citizens plugin, but players can move the NPC around when they are close to the npc. Is there any possible way to cancel this event?
  5. Ariuw

    Stronger leather armor

    Hello, I've been trying to figure out how to do Leather armor as a Diamond Armor. Is it possible? All I want is the leather armor to be as strong as the diamond one and also use enchants on it, and this may not be the subforum but, well.. I tried xd
  6. Ariuw

    Solved Command cooldown and inventory items

    Skript Version: Skript 2.4-beta10 Addons using (including versions): Skellett (1.9.8) - SkQuery (4.1.1) - skRayFall (1.9.18) - skUtilities (0.9.2) Minecraft Version: 1.14.4 I've been trying to do something like that when a player right clicks on a sign, it opens a menu and on the menu there...
  7. Ariuw

    Solved Loop all players and tp

    Hello. I've been trying to do a command where if a player is on a team it will execute teams command. But after a lot of messed up code I realized that I don't know how to fix it.. command /timer [<text>] [<integer>]: trigger: if arg-1 is "start": set {_countdown} to...
  8. Ariuw

    Solved Simple start and stop timer

    Hello again, I've created a Countdown timer but I don't know how to stop it when I want, I want to do something like /timer stop so it stops. Here's my code so far: command /timer [<text>] <integer>: trigger: if arg-1 is "start": set {_countdown} to arg 2...
  9. Ariuw

    Solved Team spawn

    Hello again. Since last night I've been working on a 'simple' skript that Teleports a complete team to a spawn base. this is my code: command /spawnset [<text>]: trigger: if arg-1 is "Blue": set {blue.location} to location of player message "&1Blue &fspawn...
  10. Ariuw

    Solved Cancel PVP

    Hello. I want to cancel the pvp event if the player is on the same team as other player. This is my code: command /red: trigger: if {ir.red.%player%} is false: if {ir.red} < 8: if {ir.red.%player%}: add -1 to {ir.bluee}...
  11. Ariuw

    Teams 1 and 2

    Category: PvP Suggested name: TeamPVP What I want: Hello. I'd love someone to create something where players can join between two teams: Team Orange and Team Blue. and when I use /team forcedelete (team) it deletes the players inside of them. Just be able to join Orange or Blue. If it...
  12. Ariuw

    Solved offline players in a group

    Hello... I need to get rid of a command cooldown. But I don't have any idea of how to remove the cooldown if the player is offline. What I need is this: When I use /crab remove I want it to remove the cooldown from all players in the same group How can I do it? I got it working for online...