diff --git a/data/plugins/cmd-item/item.rb b/data/plugins/cmd-item/item.rb index 76dc8498..3c53cf19 100644 --- a/data/plugins/cmd-item/item.rb +++ b/data/plugins/cmd-item/item.rb @@ -41,4 +41,11 @@ end # Clears the player's own inventory. on :command, :empty, RIGHTS_MOD do |player, command| player.inventory.clear +end + +# Gives the player one thousand of each rune. +on :command, :runes, RIGHTS_ADMIN do |player, command| + (554..566).each do |i| + player.inventory.add(i, 1000) + end end \ No newline at end of file