summaryrefslogtreecommitdiffstats
path: root/Plugins/SquirrelChatLog.nut
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Plugins/SquirrelChatLog.nut26
1 files changed, 26 insertions, 0 deletions
diff --git a/Plugins/SquirrelChatLog.nut b/Plugins/SquirrelChatLog.nut
new file mode 100644
index 000000000..586e8d6e2
--- /dev/null
+++ b/Plugins/SquirrelChatLog.nut
@@ -0,0 +1,26 @@
+class SquirrelChatLog extends cPlugin__Squirrel
+{
+ constructor()
+ {
+ base.constructor();
+ }
+
+ function Initialize()
+ {
+ ::print("SquirrelChatLog initialize()");
+ this.SetName("SquirrelChatLog");
+
+ local PluginManager = cRoot.Get().GetPluginManager();
+ PluginManager.AddHook( this, PluginManager.E_PLUGIN_CHAT );
+ return true;
+ }
+
+ function OnChat( Message, Player )
+ {
+ ::print(Player.GetName() + ": " + Message);
+ }
+}
+
+
+Plugin <- SquirrelChatLog();
+cRoot.Get().GetPluginManager().AddPlugin( Plugin );