TwitterFollowBot icon indicating copy to clipboard operation
TwitterFollowBot copied to clipboard

only follows?

Open alfons3992 opened this issue 8 years ago • 3 comments

Hey, so my line looks like this:

from TwitterFollowBot import TwitterBot my_bot = TwitterBot() my_bot.auto_follow("phrase") my_bot = TwitterBot() my_bot.auto_follow("#hashtag") my_bot = TwitterBot() my_bot.auto_fav("phrase", count=1000)

and when i run it, it only follows "phrase" but doesnt retweet or favorite any tweets please help

also if i got 30 of these bots, how can i put proxies on each of them?

thanks :)

alfons3992 avatar Nov 15 '17 01:11 alfons3992

Instead of creating many instances of a class write it once. So it should be my_bot = TwitterBot() my_bot.auto_follow("phrase") my_bot.auto_follow("#hashtag") my_bot.auto_fav("phrase", count=1000)

msanvarov avatar Dec 30 '17 04:12 msanvarov

Its only follows with me to from TwitterFollowBot import TwitterBot phrase my_bot.auto_follow("phrase") my_bot.auto_follow("#phrase") my_bot.auto_follow_followers() my_bot.auto_fav("phrase",count=1000) my_bot.auto_rt("phrase", count=1000)

And its only follow , no rt or fv Also.I need to know how I writ mor hashtag ? Is that look like my_bot.auto_follow("#phrase" , "also") Or without space like my_bot.auto_follow("#phrase"," also") Sorry I new in programmer

chemostafa avatar Jan 21 '18 23:01 chemostafa

Try this

my_bot = TwitterBot() my_bot.auto_follow("phrase", count=3) my_bot.auto_follow("#hashtag", count=3) my_bot.auto_fav("phrase", count=3)

Once you have added the counts and ran the script it should auto stop.

Bear in mind that you can change the count to what ever you want but the script will run through each part before moving on to the next.

mablono5 avatar Feb 09 '18 18:02 mablono5