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. Ter2FIc

    Slowness instead of Fall damage

    I am trying to give player slowness instead of fall damage and I want to make slowness V for fall damage x 3 seconds. on damage: if victim is player: if damage was caused by fall: set {damage::%player%} to damage cancel event apply slowness 5 to...
  2. Ter2FIc

    Randomspawn

    Trying to make random spawn, but failed. My worldborder is 1500, 1500~ -1500, 1500 on first join: set {spawn.%player%} to random number between 1 to 8 if {spawn.%player%} = 1: teleport player to -217 64 -193 set player's spawnpoint to player's location if...
  3. Ter2FIc

    pvp leaving

    Trying to make a code that kills the player who disconnected on pvp... on damage: set {damage.%victim%} to true set {player'soldhealth.%victim%} to victim's health wait 5 seconds if {player'soldhealth.%victim%} = victim's health: set {damage.%victim%} to false on leave...
  4. Ter2FIc

    Stock

    options: c : &6[&eStock&6]&f s : of current inventory of player to s2 : of current inventory of loop-player to #create stock /addstock [name] [amount] [price] command /addstock [<text>] [<number>] [<number>]: trigger: if player is op: if arg 1 is set...
  5. Ter2FIc

    Clicked Slot

    Why doesn't this work :emoji_frowning: if clicked raw slot is between 10 and 16:
  6. Ter2FIc

    pvp quit

    on damage: set {pvp::%victim%} to true on quit: if {pvp::%player%} is true: execute console command "warn %player% don't quit on pvp" if {pvp::%player%} is true: wait 20 seconds: if player took no damage: set {pvp::%player%} to false Why doesn't this work?
  7. Ter2FIc

    leaderboard

    on death of player: add 1 to {honor::%attacker%} message "&fYou got &41 &3honor &fby killing %victim%!" to attacker remove 10 from {honor::%victim%} message "&fYou lost &410 &3honor &f because you were killed by %attacker%." to victim command /viewpoint: trigger...
  8. Ter2FIc

    Display Variables in Holographic Display

    I tried to display variables in skript. I made a variables 'honor' which is the player gets 1 point in each kill, but I couldn't display the top 10 highest players with honor points. :emoji_grinning: on death of player: add 1 to {honor::%attacker%} message "&fYou got &41 &3honor &fby...
  9. Ter2FIc

    Effect while holding item

    I was making an item that gives a speed effect while holding it. every 3 seconds: if the player is holding iron sword named "&eSpeedster Sword": apply speed 2 to player for 9999 days wait 1 tick remove speed from player Console says: There's no world in a periodic...
  10. Ter2FIc

    Auto Removing Blocks

    The Reason Why: I want to make Survival Server but I don't want the maps to get messy. And also, I'm not good at making skripts.:emoji_sob: What I want to see: ⁕Blocks that player placed automatically disappear after 5 mins. ⁕The blocks won't disappear if the bed is connected ( the blocks that...
  11. Ter2FIc

    Solved Custom Crafting Recipe

    on load: register new shaped recipe for netherite_helmet of Protection 10, Unbreaking 5 named "&8Powerful Helmet" using netherite_helmet, netherite_helmet, netherite_helmet, netherite_helmet, air, netherite_helmet, air, air, air, air Console: [Server thread/ERROR]: Can't understand this...