Add ::runes command.

This commit is contained in:
Dane
2014-04-07 12:15:57 -04:00
parent b13c5d187e
commit e7bb3e5a19
+7
View File
@@ -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