Recent content by StunningListen

  • 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. S

    fireball that doesn't deal block damage

    how do you use code blocks
  2. S

    adding lore to armor through a skript removes enchant visibility

    i have a skript that sets the lore of armor when you have a custom enchant book in your offhand but every time i do it and the armor has enchantments on it they're no longer shown. they still work, but i want them to be visible. whenever I use a command in game to set the lore it gets put after...
  3. S

    spells similar to wynncraft; L-L-R, L-R-L, etc

    i want to be able to make a sword that teleports you forward, randomly teleports you and teleports you behind an entity in a way similar to wynncraft
  4. S

    fireball that doesn't deal block damage

    mob griefing is already set to true i want creepers to break blocks but i dont want fireballs to break blocks
  5. S

    fireball that doesn't deal block damage

    I want to be able to shoot fireballs out of a bow but the fireballs keep breaking blocks and I don't want to turn off mobgriefing, is their a way to change that the code im using on leftclick with bow: if name of player's tool is "<##00cbc5>Khryselakatos": if {comet.%player%} is...
  6. S

    Wynncraft style spells

    how do you do that im interested as well
  7. S

    ColorUtils 1.16+ (Skript 2.6)

    is there a way to get items with custom colours
  8. S

    grappling hook after reeling in fishing rod hook

    right now i have a script to launch the player if they click with a fishing rod but i want to make it like hypixel skyblock's grappling hook where you have to cast out the rod and reel it in before it will launch you but idk how
  9. S

    disable invincibility after being hit

    it works now thanks
  10. S

    disable invincibility after being hit

    i put a bunch of broadcasts under the on damage event to see if it would detect anything and it didn't on shoot: shooter is player "%projectile%" is "arrow" name of tool of shooter is "&aKhryselakatos" {nospam::%shooter%} is not set set {nospam::%shooter%} to true cancel...
  11. S

    disable invincibility after being hit

    i added that but it doesnt work still on damage: if damage cause is projectile: if attacker is holding bow: if colored name of attacker's tool is "&aKhryselakatos": set maximum damage delay of victim to 0 seconds
  12. S

    disable invincibility after being hit

    they're normal entities, minecraft just has a delay between hits. if you spam hit a player, there's a delay between each time you take damage (and no im not talking about 1.9 combat) if you spam arrows at an entity, some will bounce off, not doing damage.
  13. S

    disable invincibility after being hit

    how do you remove the invincibility after you take damage? i'm trying to make a machine gun but the arrows keep bouncing off mobs
  14. S

    Sweeping Edge particle

    I want to create a sweeping edge particle infront of the player when they click with an iron hoe, but the only way i can find out how to do it is by running it through the player or console and I don't want to turn off sendCommandFeedback. on rightclick with iron hoe: cancel event if...