mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 08:39:11 +00:00
8 lines
185 B
Ruby
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
|