Files
apollo/data/plugins/hello/hello.rb
T
2013-12-05 16:40:37 +00:00

9 lines
228 B
Ruby

require 'java'
java_import 'org.apollo.game.model.Animation'
java_import 'org.apollo.game.model.World'
on :command, :hello do |player, command|
player.play_animation Animation::WAVE
player.send_message("Hello, World!")
end