Hey,
I would like to make sure to save a player's inventory in a tag, but also his armor
Currently the inventory is saved, but not the armor
My code:
Thank you
I would like to make sure to save a player's inventory in a tag, but also his armor
Currently the inventory is saved, but not the armor
My code:
code_language.skript:
command /showinv:
trigger:
restore inventory of player from {Stuff}
set {_inv} to chest with 6 rows named "Stuff"
set {_inv}'s serialized contents to {Stuff}
open {_inv} to player
command /saveinv:
set {Stuff} to player's serialized inventory
send "&a&l[✓] &fSaved"
Thank you