What bot automatically replies to a user tweets?

TyphoonAgency

Regular Member
Joined
Oct 7, 2010
Messages
281
Reaction score
104
On Twitter you see accounts that reply to every tweet of an account nearly instantly. I know a human is not starring at twitter every second to make a tweet. So which bot would allow me to set up a account with organized messages? When the person tweets it follows up instantly.

Thanks
 

Very interesting read but I don't think a manually set up auto responder will allow your twitter account to randomly choose between multiple loaded messages and post them under another persons twitter account.

twitter guy tweets

^ your response to the tweet in 1-2 seconds with a string of text.

Something like that.
 
Check out: http://www.blackhatworld.com/blackhat-seo/social-media/616736-twitter-marketing-software-instagram-bot-pinterest-bot-tumblr-bot-follow-liker.html

From their website:

Reply Tweets
Auto-reply tweets; Reply a user's tweets; Reply tweets posted from a specific location; Reply tweets by language; Wait and reply...
 
Message me the name of one of the accounts that you've seen doing this. I'm curious to know if you've seen one of mine dabbling around :lmao:

Here's an imacro for an auto reply script. Link the green line to the file with your spintax and the URL GOTO= to whatever search that you want to reply to. Use multiple firefox profiles with different accounts and consider getting a bot to add a 100+ more to avoid the hassle ;)

Code:
SET !ERRORIGNORE YES
SET !VAR1 EVAL("var min = 1; var max = 3; var randomNumber = Math.floor(Math.random() * (max - min + 1)) + min; randomNumber;")
SET !VAR2 EVAL("var min = 45; var max = 60; var randomNumber = Math.floor(Math.random() * (max - min + 1)) + min; randomNumber;")
[COLOR=#00ff00]SET !DATASOURCE C:\Users\YourDataSourceFile\Documents\iMacros\Datasources\Tweets.txt[/COLOR]
SET !DATASOURCE_COLUMNS 2
SET !DATASOURCE_LINE {{!LOOP}}
TAB T=1
URL GOTO=https://twitter.com/search?f=tweets&vertical=default&q=black%20hat%20world&src=typd
WAIT SECONDS={{!VAR1}}
TAG POS=1 TYPE=BUTTON ATTR=TXT:Reply
WAIT SECONDS={{!VAR1}}
EVENTS TYPE=KEYPRESS SELECTOR="#tweet-box-global" CHARS="{{!COL1}}"
WAIT SECONDS={{!VAR1}}
WAIT SECONDS=2
EVENT TYPE=CLICK SELECTOR="HTML>BODY>DIV:nth-of-type(10)>DIV:nth-of-type(2)>DIV:nth-of-type(2)>DIV:nth-of-type(4)>FORM>DIV:nth-of-type(2)>DIV:nth-of-type(2)>BUTTON" BUTTON=0
TAB T=1
TAB CLOSEALLOTHERS
WAIT SECONDS=1
EVENT TYPE=CLICK SELECTOR="HTML>BODY>DIV:nth-of-type(10)>DIV:nth-of-type(2)>DIV:nth-of-type(2)>DIV:nth-of-type(4)>FORM>DIV>DIV:nth-of-type(3)>DIV:nth-of-type(2)>DIV" BUTTON=0
WAIT SECONDS=1
EVENT TYPE=CLICK SELECTOR="HTML>BODY>DIV:nth-of-type(10)>DIV:nth-of-type(2)>DIV:nth-of-type(2)>DIV:nth-of-type(4)>FORM>DIV:nth-of-type(2)>DIV:nth-of-type(2)>BUTTON" BUTTON=0
WAIT SECONDS={{!VAR2}}
 
Back
Top