View Single Post
  #4  
Old 03-24-2011, 06:10 PM
blackdragonsdg
Dragon
 
Join Date: Dec 2008
Location: Tennessee
Posts: 656
Default

Quote:
Originally Posted by Dramier View Post
Based on looking at the source code, it seems to be related to the player's status rather than karma and some rule sets. However, I still have not found any references to setting the level allowed for the anti-spam (which is what is causing the problem)

Since I'm running a private little LAN server, I just bumped the account status levels up to 10 and that effectively seems to have eliminated the problem. Thanks for your help trevius, it is appreciated!
Use the following sql to manipulate the karma\antispam rule values.

update rule_values set rule_value = 'false' where rule_name = 'Chat:EnableAntiSpam';
update rule_values set rule_value = 10 where rule_name = 'Chat:GlobalChatLevelLimit';
update rule_values set rule_value = 720 where rule_name = 'Chat:KarmaGlobalChatLimit';
update rule_values set rule_value = 200 where rule_name = 'Chat:MinStatusToBypassAntiSpam';
Reply With Quote