Various changes.

This commit is contained in:
Major-
2013-11-19 20:17:58 +00:00
parent fb422bcfe1
commit f40f885008
92 changed files with 965 additions and 419 deletions
+8 -1
View File
@@ -1,7 +1,14 @@
require 'java'
java_import 'org.apollo.game.model.Animation'
java_import 'org.apollo.game.model.World'
SERVER_RELEASE = World.world.release_number
on :command, :hello do |player, command|
player.play_animation Animation::WAVE
player.send_message "Hello, World!"
player.send_message("Hello, World!")
end
on :command, :release do |player, command|
player.send_message("This server is currently running the #{SERVER_RELEASE} release.")
end