Quote:
Originally posted by Automated
Is there a way for me to get the same bot using the same DB to talk in more than one forum? EG where you enter the forumID you want the bot is is there a way for me to specify like 4 forum ID's ?
Thanks
Matthew
|
In tomstalkerbot.php find this code:
Code:
if ($ttb==1 AND rand(1,100)<=$ttb_weighting AND $forumid==$ttb_forumid AND $bbuserinfo[userid]!=$ttb_memberid) {gottb();};
Change to:
Code:
if ($ttb==1 AND rand(1,100)<=$ttb_weighting AND (($forumid==$ttb_forumid) OR ($forumid==x) OR ($forumid==y) )AND $bbuserinfo[userid]!=$ttb_memberid) {gottb();};
Change X and Y to the ids of the forums you want to use in addition to the one you already set. Add more OR clauses as needed (or subtract as needed) in order to include all the forums you want.
I have not tested this, but it should work. If you don't understand the code I pasted, don't try to do it.
Amy