Ok I got mine to do it... that was to easy... I hope it helps.
In tomstalkerbot.php
Find
PHP Code:
if ($ttb==1 AND rand(1,100)<=$ttb_weighting AND $forumid==$ttb_forumid AND $bbuserinfo[userid]!=$ttb_memberid) {gottb();};
and replace it with
PHP Code:
if ($ttb==1 AND rand(1,100)<=$ttb_weighting AND stristr($message,"$ttb_username") AND $bbuserinfo[userid]!=$ttb_memberid) {gottb();};
Now it searched for its name in a post and reacts on it. Name can be any place in that post.
Such as "hello bot name how are you"
it will answer
If you still want it to only one thread. Then replace the above with .
PHP Code:
if ($ttb==1 AND rand(1,100)<=$ttb_weighting AND stristr($message,"$ttb_username") AND $forumid==$ttb_forumid AND $bbuserinfo[userid]!=$ttb_memberid) {gottb();};