Files
apollo/data/plugins/hello/hello.rb
T
2013-10-27 18:08:29 +00:00

8 lines
185 B
Ruby

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