• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

@save cc abuse

Newbie Spellweaver
Joined
Nov 28, 2015
Messages
18
Reaction score
0
How do I prevent users from simply CCing to abuse these commands? For example this works with @save (should only be able to save every 15mins), !mute (unmutes if cc), etc.
 
Newbie Spellweaver
Joined
Nov 16, 2015
Messages
14
Reaction score
8
Make a category for it in MySQL.
For example !mute sets the category to 1, !unmute sets to 0.
 
Upvote 0
Custom Title Activated
Loyal Member
Joined
Jan 18, 2010
Messages
3,109
Reaction score
1,139
Make a category for it in MySQL.
For example !mute sets the category to 1, !unmute sets to 0.

column* but yes you're on the right track saving to the database.

You'd have to write a whole new table in this case, and create it such that it holds a characterid (int), type (int) and the current time used (bigint). This way you know which command they are using, or even a handler or script etc that uses the CheatTracker Spam check. Then, comparing the interval given from the database and the current time they use it again (even upon relog), it will be able to determine the correct time.
 
Upvote 0
Back
Top