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

    Equip player with enchanted armor

    2.3-beta2 and spigot 1.13.2
  2. HumbleMC

    Equip player with enchanted armor

    It gives me the item but not enchanted? :/
  3. HumbleMC

    Equip player with enchanted armor

    Hi all, I am working on a skript where it will equip the player with enchanted armor. I am using this line of code: equip player with chain ChestPlate of unbreaking 1 But it only equips the chestplate without the enchantment.. Would anyone know why?
  4. HumbleMC

    Solved Save players inventory in function

    Thanks a million man it worked :)
  5. HumbleMC

    Solved Save players inventory in function

    I tried this and removed the second player variable in the set line but I am now getting an error of "Can't understand this Expression: slot {_count} of _p inventory set {inv.%{_p}%.%{_count}%} to slot {_count} of _p inventory"
  6. HumbleMC

    Solved Save players inventory in function

    Hi everyone, I am working on a save function for players inventory's but I have ran into a little problem. I am trying to pass through the player to the function then save the inventory based off their name, no custom names. But trying to achieve this is a bit difficult.. Here is my current...
  7. HumbleMC

    Solved Give enchanted Item to player

    Thanks a million man!!
  8. HumbleMC

    Solved Give enchanted Item to player

    another thing sorry, just naming the item?
  9. HumbleMC

    Solved Give enchanted Item to player

    Just tested your code there works perfectly :) Thanks a lot man! <3
  10. HumbleMC

    Solved Give enchanted Item to player

    I am using 2.3-beta2 Thanks for the help I will try that code now!
  11. HumbleMC

    Solved Give enchanted Item to player

    Spigot : 1.13.2 Skript: Not sure but I got it from here: https://github.com/SkriptLang/Skript/releases
  12. HumbleMC

    Solved Give enchanted Item to player

    I just tried that now and it is giving me a diamond sword with no enchantment on it?
  13. HumbleMC

    Solved Give enchanted Item to player

    Hey no I do have the command above i just copied the trigger. command /BcMasterSlayer <player>, <number>: description: Give players MasterSlayers. aliases: BcMasterSlayer usage: /BcMasterSlayer <player>, <value 0 or 1> permission: donate.masterslayer trigger: set...
  14. HumbleMC

    assign player to variable

    SOLVED!! set {_player} to "%arg 1%" Awesome thanks a million!! Hey, How can I include enchantments on these items?
  15. HumbleMC

    Solved Give enchanted Item to player

    Hi all, looking to give enchanted items to player but it's not working? I have no errors either. Here is my current code: trigger: set {_player.player} to arg 1 set {_playerText} to "%arg 1%" set {_amount} to arg 2 give {_amount} of Diamond Sword of sharpness...
  16. HumbleMC

    assign player to variable

    Hi all, New to Skript and trying to set the player to a variable inside of skript. The purpose of the command is to upgrade a player to a rank I am trying to assign the players name to a variable so I can use it to give items. The command itself is /BcUpgrade <player>, <text> I need to...
  17. HumbleMC

    Solved Execute console commands

    Works, thanks a million :)
  18. HumbleMC

    Solved Execute console commands

    Hi all, I am new to Skript, I am trying to create ingame commands that execute commands through console like upgrading players to a new rank or giving preset items through command. Does anyone know how I can execute commands through the console with skript? Thanks in advance. Best regards, Scott