summaryrefslogtreecommitdiffstats
path: root/EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/checks/chat/ChatData.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/checks/chat/ChatData.java')
-rw-r--r--EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/checks/chat/ChatData.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/checks/chat/ChatData.java b/EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/checks/chat/ChatData.java
new file mode 100644
index 000000000..b05cb2579
--- /dev/null
+++ b/EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/checks/chat/ChatData.java
@@ -0,0 +1,22 @@
+package com.earth2me.essentials.anticheat.checks.chat;
+
+import com.earth2me.essentials.anticheat.DataItem;
+
+
+/**
+ * Player specific data for the chat checks
+ *
+ */
+public class ChatData implements DataItem
+{
+ // Keep track of the violation levels for the two checks
+ public int spamVL;
+ public int colorVL;
+ // Count messages and commands
+ public int messageCount = 0;
+ public int commandCount = 0;
+ // Remember when the last check time period started
+ public long spamLastTime = 0;
+ // Remember the last chat message or command for logging purposes
+ public String message = "";
+}