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

    Solved Any way to save what inventory slot

    Hey! I am trying to create a command that saves all inventory items to a list. But when I try to load the inventory, it just randomly picks what slot to load. Any way I could save the slot? function saveInventory(p: player): set {s} to 1 loop player's inventory 35 times...
  2. B

    Looking for skript ideas

    Hey, I am really bored and have a 12 hour cardrive. So im looking for ideas to skript/make for someone. Leave some ideas below
  3. B

    Packets - Damage System

    Using packets, I want to create a customizable damage system. I have been looking at some tutorials. But none of them tell me really how to set a packet to a certain amount. I have this packet generic.attack_damage Which gets the damage of an attack, I want to set this to whats in my command...
  4. B

    Solved Check if mob died, add 1 to players xp

    on load: set {_playerXP} to 0 on death: if attacker is a player: set {_playerXP} to {_playerXP} + 1 message "+1" command /xp: trigger: message "%{_playerXP}% is the current xp" On death isnt getting called, with my test of +1 it doesnt send the message...