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 community!

    Now, what are you waiting for? Join the community now!

  1. P

    Solved Why is it not working?

    variables: {case} = false {jutalom} = 0 command /case: trigger: if {case} is false: if player's money is more than 9999: set {case} to true remove 10000 from the player's balance broadcast "&5A mágusraktár áldás...
  2. P

    Solved Give player one item

    How can i do that, to give the player 1 item from a specific list?
  3. P

    Solved Chat replace

    on chat: player's message contains "hi": replace "hi" to "hello" How can I do this?
  4. P

    Solved How can i change messages?

    From plugins and players too? For example if a plugin/player says "I want cookies", i want to appear as "I like banana".
  5. P

    Solved How can i change player to any mob AND player except the attacker?

    Here is the code: loop players except the attacker in radius 5 around the attacker: damage loop-player by damage
  6. P

    Solved How can I do this?

    It don't works: on death of player: set {_bal.%victim%} to victim's balance set {_kap.%victim%} to ({_bal.%victim%} / 10) * 2 if attacker is a player: give {_kap.%victim%} money to attacker Error: '{_kap.%victim%} / 10 money' can't be added to an entity because the former is...
  7. P

    On damage of tool or armour

    TuSKE should work with 1.8.8.
  8. P

    On damage of tool or armour

    Can you link me a 1.8.8 server version compatible of tuske? (skript 2.1.2)
  9. P

    On damage of tool or armour

    Can't understand this event: On item damage
  10. P

    On damage of tool or armour

    Or when the tool breaks, give the player the same tool (with same enchants)
  11. P

    On damage of tool or armour

    Is there an addon, which can do this?
  12. P

    On damage of tool or armour

    How can I do this? On damage of tool: if {ata.%player%} is true: cancel event On damage of armour: if {ata.%player%} is true: cancel event
  13. P

    Solved On afk

    Is there a way to do something with afk players?
  14. P

    Solved On death cancel drop

    How can I do this? on death of player: don't drop anything
  15. P

    Solved Drop an item in front of the player

    How can I do if a player clicks with an item, an another item drops/spawn in front of the player? I tried this: on rightclick: player is holding vines named "Varázsgyökér": player is sneaking: drop a diamondsword in front of the player's head The distance from the player...
  16. P

    Solved Variables can't hold strings?

    I have this code: on damage: if attacker's tool is a blaze rod named "&5Varázspálca": if {B.%attacker%} = tuz: if {J.%attacker%} = ures: ignite victim for 5 seconds if {J.%attacker%} = tuz: ignite victim for 5 seconds...
  17. P

    Solved Cancel attack other player with hand

    How can I do, if a player attacks another player, it cancel the event? I tried this, but it doesn't working: on damage: if attacker's tool is hand: cancel event
  18. P

    Solved How can I do these?

    If player 1 hit player 2 with a specific item - push player 2 - set on fire player 2 - set drowning effect to player 2 - give a grass hat and blindness effect to player 2 ? Sorry for bad english
  19. P

    How can I make random colored sheeps?

    Server version 1.8.8 How can I make this command command /bari: trigger: spawn 120 (random colored) sheep
  20. P

    If player have less than x item

    Skript Version: 2.1.2 Minecraft Version: 1.8.8 --- Full Code: variables: {fire.%player%} = 0 {water.%player%} = 0 {dirt.%player%} = 0 {air.%player%} = 0 on first join: give a blaze rod named "&5Varázspálca" to the player give a redstone named "&4Tűz esszencia" to the...