Recent content by The0Felon

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

    /duel skript

    add me on discord: 0mustafa
  2. The0Felon

    Solved Enchant Removed

    @bewf can you mark my answer by solved please :)
  3. The0Felon

    Solved Enchant Removed

    on damage: if damage cause is thorns: cancel event this should prevent damages by thorns enchant. You can remove enchant thorns but it will be a little difficult. You can get all events of picking items up and cancel them, you have chooses more than one.
  4. The0Felon

    Solved Mining skript not working

    Good work!
  5. The0Felon

    Solved Mining skript not working

    check for ifs and add send "success" for not working conditions. Check for holding item names too.
  6. The0Felon

    No hit delay for all mobs except player (SkQuery, Skellet)

    this will add cooldown for players too. If you don't want this use: options: time: 3 seconds on damage: if victim is not a player: if {damageCooldown::%attacker%} is not set: set {damageCooldown::%attacker%} to true wait {@time} set...
  7. The0Felon

    No hit delay for all mobs except player (SkQuery, Skellet)

    you can change time option(ex. 3 seconds, 10 seconds 5 minutes etc.) if i helped you, like my message :)
  8. The0Felon

    No hit delay for all mobs except player (SkQuery, Skellet)

    you want a script for mob damage delay, if i am not wrong, this can help you: options: time: 3 seconds on damage: if {damageCooldown::%attacker%} is not set: set {damageCooldown::%attacker%} to true wait {@time} set {damageCooldown::%attacker%} to false...
  9. The0Felon

    Solved event-block's name?

    good scripts. Don't forget to like my message! (it will really help me)
  10. The0Felon

    Solved event-block's name?

    EXAMPLE: on place of tnt: if player's tool is tnt named "&c&lBOM!": send "a" #do
  11. The0Felon

    Solved event-block's name?

    u can get player's held item's name sir.
  12. The0Felon

    Solved How do I hide "When in Main Hand:"

    Can you explain more?
  13. The0Felon

    Solved event-block's name?

    on place of tnt: send "%player's tool's name%" Sorry, try this one and send me output. I will send your script to you again.
  14. The0Felon

    Prevent going into "spawn" region if user was hit in the last 30 seconds

    on damage: if {hitted::%victim%} is not true: set {hitted::%victim%} to true set {hitted::cooldown::%victim%} to 30 while {hitted::cooldown::%victim%} > 0: wait 1 second remove 1 from {hitted::cooldown::%victim%} if...
  15. The0Felon

    event-block problem

    on place of tnt: if event-block's name is "NAME": cancel event if it doesn't work, u can find event-block's name with: on place of tnt: send "%event-block's name%"