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

    Gun reloading skript

    Im making a gun like the one from hypixel zombies but it only says "hi" in chat when i left click and the ammo is low: on left click: if the player is holding {pistolchamber.%player%} of {pistol}: send "hi" set {_dura} to the durability of the player's tool set...
  2. A

    Solved Setting Tool to item amount of a variable

    So I made this code: on right click: if the player's held item is a wooden hoe named "&6Pistol": remove 1 from {pistolchamber.%player%} set the player's tool to {pistolchamber.%player%} wooden hoes named "&6Pistol" damage the target entity by 4 And I was wondering...
  3. A

    Setting tool to as many items as a variable skript

    So I made this code: on right click: if the player's held item is a wooden hoe named "&6Pistol": remove 1 from {pistolchamber.%player%} set the player's tool to {pistolchamber.%player%} wooden hoes named "&6Pistol" damage the target entity by 4 And I was wondering...
  4. A

    FIXING WINDOWS

    So i am trying to make a skript where you hold shift and every second it will repair a window It should be able to repair them by holding shift and every second the empty window (air) will be filled 1 block at a time every second while shifting and it should repair the window from top left to...
  5. A

    FIXING WINDOWS

    So i am trying to make a skript where you hold shift and every second it will repair a window It should be able to repair them by holding shift and every second the empty window (air) will be filled 1 block at a time every second while shifting and it should repair the window from top left to...
  6. A

    Solved Multiple fighters

    So I'm making a script where when the player inputs /applearmy and if the player's name is "Applespog" and the cooldown is ready, then spawns 5 zombies with apples on their heads. command /applearmy: trigger: if the player's name is "Applespog": if...
  7. A

    I want to make a necromancer skript

    I want to make a necromancer skript but when i kill the mob it does not get added on death: if the attacker's held item is a green dye named "&2Necromancer Fire &7(Tier 2)": if {power.%attacker%} = "Necromancer": if the victim is not a player: add the...
  8. A

    Can't understand this condition/effect

    Im trying to make console do a command execute console command "/tellraw @a ["",{"text":"Do you want to go to the next level?","bold":true,"color":"dark_red"},{"text":"\n"},{"text":"YES","bold":true,"color":"dark_green","clickEvent":{"action":"run_command","value":"/wave 7"}}]" It...
  9. A

    Looping too many blocks crashes server

    I am creating a mini-game using skript. Bad news, I am trying to loop blocks in radius 180+ around a block and my server crashes because of the skript checking for many blocks on command /test: permission:op trigger: set {test} to 184 set {test2} to {test} -2 loop...
  10. A

    Getting the attack damage on an item.

    So, I am trying to make a weapon reach script but I want to get the weapon they are holding to work with any weapon. but I need to find out the attack damage to deal to the opponent. on click: set {damagee.%player%} to the attack damage of the player's tool send "the weapon damage of...
  11. A

    Solved Change Sign Text

    I have been trying to change sign text for a 1v1 game in pvp I am not sure how to though. I tried set text of {_sign} to "Axe 1v1. %{axe1v1people1}%/2" and set line 1 of {_sign} to "Axe 1v1. %{axe1v1people1}%/2" but it does not work. no errors full code command /setaxe1v1sign1: permission:op...
  12. A

    Solved Make Player Attack

    Can somebody help me with this: make player damage loop-entity by 0.5 i want to make them damage but not do true damage (damage that goes through armor) Thanks For The Help!
  13. A

    Make Player Walk

    How do you make a player walk? Thanks.
  14. A

    Lava i-frames

    on damage: if damage cause is not attack, suffocation or fire: wait 1 tick set victim's invulnerability ticks to 0 so with this script fire damage still removes invulnerability ticks but attack and suffocation still works but lava gives an error pls help Thanks.
  15. A

    Custom Ore

    on any move: loop all blocks in radius 100 around the player: if loop-block is redstone ore or coal ore or iron ore: if loop-block's y coordinate is below 3: set the loop-block to nether brick add the loop-block's location to {darkb::*} on...
  16. A

    Custom Mob Ai?

    Is it possible to make custom mob AI with script? Thankyou for anybody that helps!
  17. A

    Help with disguises

    I have used many different scripts to try and do disguises but it says "cant understand this expression" like: command /testy: trigger: set {_d} to a new disguise with type RABBIT set disguise of player to {_d} and i have tried command /disg: trigger: set {_d} to...
  18. A

    Change Player's Skin

    In my script I am trying to make an item that changes the player skin. The thing is I am not sure how to. Also please show the addons I need also Thanks!
  19. A

    Solved Remove i-frames

    In a script I am making a gun but players can only take damage every 0.5 seconds because of a minecraft mechanic, so the gun speed increase is useless. Does anybody know how to fix this?