I made the changes in MySql.
I understand that it won't permanently stop bots. My guess is it will slow them down in my case. They target one particular topic and spam it.
I changed the topic number. So now they have to go back with the bot to do more work.
Its an easy command for me to implement in MySql, and gives the spammers more headaches:
Syntax:
update idate_posts set topic_id='OLD TOPIC NUMBER' where topic_id=NEW TOPIC NUMBER;
update idate_topics set topic_id='OLD TOPIC NUMBER' where topic_id=NEW TOPIC NUMBER;
example:
update idate_posts set topic_id='1000' where topic_id=9;
update idate_posts set topic_id='2000' where topic_id=10;
update idate_topics set topic_id='1000' where topic_id=9;
update idate_topics set topic_id='2000' where topic_id=10;