Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

@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,140
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