Support ruby-only event handler chains; Add friend/ignore list support and private messaging; Format.

This commit is contained in:
Major-
2014-02-12 17:02:16 +00:00
parent 5964dcb219
commit 832fb67fcd
71 changed files with 1832 additions and 392 deletions
+9
View File
@@ -0,0 +1,9 @@
on :event, :add_ignore do |ctx, player, event|
username = event.username
player.add_ignore(username)
end
on :event, :remove_ignore do |ctx, player, event|
username = event.username
player.remove_ignore(username)
end