Recent content by Drakem

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

    Solved Arguments

    ok, use just this: command /kill <text> <integer>: #usage: /kill <name> <times>. example: /kill Drakem 5 trigger: loop all players: if name of loop-entity is equal to arg-1: while {_times} is not arg-2: kill loop-entity...
  2. Drakem

    Solved Arguments

    something like this? command /kill <text> <integer>: trigger: loop all players: if name of loop-entity is equal to arg-1: while {_times} is not arg-2: kill loop-entity add 1 to {_times} wait 1 second...
  3. Drakem

    on click on exact location

    I cant make this work, please help on rightclick on a trapped chest: set {_location} to location of event-block message "&3%{_location}%" to console #debug if {_location} is location(-124.5, -33.5, 25.5, world "world", -90, -0) : message "&Hello" to player...
  4. Drakem

    Solved stop mobs following player

    I made this code and it works fine: on entity target: entity's target is a player cancel event but if I add a permission condition it stops working: on entity target: entity's target is a player player has permission "target.ignore" cancel event or on entity target: entity's...
  5. Drakem

    delete this

    Delete this post please I posted it by mistake, sorry
  6. Drakem

    Solved region/location condition

    Is there a condition similar to this? if player is in %region%/location x,y,z I was looking for something similar but I didn't find anything
  7. Drakem

    Ability to climb walls

    I suppose there is no way to simulate that each wall has a ladder, it would be very complicated. internally in minecraft, how do spiders climb?
  8. Drakem

    Solved error on victim is a player

    I used "victim is a player" that is the victim, or isn't it?? could you please explain me? :)
  9. Drakem

    Solved error on victim is a player

    I'm trying to make a double jump script, and I want it to have a few seconds of immunity when it drops. I used a boolean variable that will be deactivated a few seconds after the jump, but it gives me an error on damage: victim is player damage was caused by fall if {%player%.jump} is...
  10. Drakem

    Ability to climb walls

    bump