FACEBOOK IMACRO Send Message and wall post!

jackhorror

Junior Member
Joined
Nov 13, 2012
Messages
157
Reaction score
11
Is there any facebook imacro for sending messages and posting on walls to all friends (one at the time)?
I try to find a code on imacro for "paste"...does anyone knows anything? thanks! :)
 
Not At ALl..! You Need To Record..!
But Surely It WIll Get Error..!

Thanks If It Helped :)
 
well i made one & i run it for a while.. will test it more and if its good i will share
 
Warning ! If your create iMacro to Send Messages on Facebook ==> Detect Risks of Spammer :(
 
i think the risk will depend on how much WAIT SECONDS= you have... i made one for m.facebook and i tested it for about 250 messages without any problem, but then i got a bot so i quit the script :p :D
 
Here's a macro I used to send private messages:
1. Create a list of all your friends' URL in a csv file.
2. Replace {{content}} with your message.
3. Change the delay to your desired value.

Code:
CMDLINE !DATASOURCE YourFriendsURL_List.csv
SET !ERRORIGNORE YES
SET !REPLAYSPEED FAST
SET !DATASOURCE_COLUMNS 1
SET !DATASOURCE_LINE {{!LOOP}}


URL GOTO={{!COL1}}
TAG POS=1 TYPE=TEXTAREA ATTR=NAME:message_body CONTENT={{content}}
WAIT SECONDS = 10
TAG POS=1 TYPE=INPUT:SUBMIT ATTR=VALUE:Send
TAG POS=1 TYPE=INPUT:SUBMIT ATTR=VALUE:Reply
WAIT SECONDS = 50

To post to a friend's or page's wall/timeline you can use the following:
1. Create a list of all your friends' or page's URL in a csv file.
2. Replace {{content}} with your message.
3. Change the delay to your desired value.

Code:
CMDLINE !DATASOURCE YourURL_List.csv
SET !ERRORIGNORE YES
SET !REPLAYSPEED FAST
SET !DATASOURCE_COLUMNS 1
SET !DATASOURCE_LINE {{!LOOP}}

URL GOTO={{!COL1}}
TAG POS=1 TYPE=TEXTAREA FORM=ACTION:/ajax/updatestatus.php ATTR=NAME:xhpc_message CONTENT={{content}}
TAG POS=1 TYPE=INPUT:SUBMIT ATTR=VALUE:Post
WAIT SECONDS = 50
 
Last edited:
Facebook uses advanced ajax-based calls, thus iMacro fail to record clicks and other steps; use java scripting for doing this action - i found a guy doing same here at botspecialist.blogspot.com!

The information on this blog you suggest are totally irrelevant with the topic...
 
To post to a friend's or page's wall/timeline you can use the following:
1. Create a list of all your friends' or page's URL in a csv file.
2. Replace {{content}} with your message.
3. Change the delay to your desired value.

Code:
CMDLINE !DATASOURCE YourURL_List.csv
SET !ERRORIGNORE YES
SET !REPLAYSPEED FAST
SET !DATASOURCE_COLUMNS 1
SET !DATASOURCE_LINE {{!LOOP}}

URL GOTO={{!COL1}}
TAG POS=1 TYPE=TEXTAREA FORM=ACTION:/ajax/updatestatus.php ATTR=NAME:xhpc_message CONTENT={{content}}
TAG POS=1 TYPE=INPUT:SUBMIT ATTR=VALUE:Post
WAIT SECONDS = 50

I try this script on firefox but for some reason the content I put on the "CONTENT" variable never paste it on the status update field. I saw that the filed is selected but the content i try to add doesn't appear.

Any ideas?
 
I try this script on firefox but for some reason the content I put on the "CONTENT" variable never paste it on the status update field. I saw that the filed is selected but the content i try to add doesn't appear.

Any ideas?

hi fsatark,

try adding another duplicate line with xhpc_message, like this:

Code:
URL GOTO={{!COL1}}
TAG POS=1 TYPE=TEXTAREA FORM=ACTION:/ajax/updatestatus.php ATTR=NAME:xhpc_message CONTENT={{content}}
TAG POS=1 TYPE=TEXTAREA FORM=ACTION:/ajax/updatestatus.php ATTR=NAME:xhpc_message CONTENT={{content}}
TAG POS=1 TYPE=INPUT:SUBMIT ATTR=VALUE:Post
WAIT SECONDS = 50
 
check it

VERSION BUILD=7500718 RECORDER=FX
TAB T=1
SET !ERRORIGNORE YES
URL GOTO=http://www.addmefast.com/free_points/facebook_subscribes.html
TAB OPEN
TAG POS=1 TYPE=A ATTR=TXT:Subscribe
TAB T=2
FRAME F=0
WAIT SECONDS=1
TAG POS=3 TYPE=SPAN ATTR=TXT:Subscribe
WAIT SECONDS=1
TAB T=2
WAIT SECONDS=2
TAB CLOSE
WAIT SECONDS=2
TAB T=1
TAB CLOSEALLOTHERS
WAIT SECONDS=2
TAB OPEN
TAG POS=1 TYPE=A ATTR=TXT:Subscribe
TAB T=2
FRAME F=0
WAIT SECONDS=1
TAG POS=3 TYPE=SPAN ATTR=TXT:Subscribe
WAIT SECONDS=1
TAB T=2
WAIT SECONDS=1
TAB CLOSE
WAIT SECONDS=2
TAB T=1
TAB CLOSEALLOTHERS
WAIT SECONDS=2
TAB OPEN
TAG POS=1 TYPE=A ATTR=TXT:Subscribe
TAB T=2
FRAME F=0
WAIT SECONDS=1
TAG POS=3 TYPE=SPAN ATTR=TXT:Subscribe
WAIT SECONDS=1
TAB T=2
WAIT SECONDS=1
TAB CLOSE
WAIT SECONDS=2
TAB T=1
TAB CLOSEALLOTHERS
WAIT SECONDS=2
TAB OPEN
TAG POS=1 TYPE=A ATTR=TXT:Subscribe
TAB T=2
FRAME F=0
WAIT SECONDS=1
TAG POS=3 TYPE=SPAN ATTR=TXT:Subscribe
WAIT SECONDS=1
TAB T=2
WAIT SECONDS=1
TAB CLOSE
WAIT SECONDS=2
TAB T=1
TAB CLOSEALLOTHERS
WAIT SECONDS=2
TAB OPEN
TAG POS=1 TYPE=A ATTR=TXT:Subscribe
TAB T=2
FRAME F=0
WAIT SECONDS=1
TAG POS=3 TYPE=SPAN ATTR=TXT:Subscribe
WAIT SECONDS=1
TAB T=2
WAIT SECONDS=1
TAB CLOSE
WAIT SECONDS=2
TAB T=1
TAB CLOSEALLOTHERS
WAIT SECONDS=2


THis Is very Old But Check it
:)
Thanks
 
hi fsatark,

try adding another duplicate line with xhpc_message, like this:

Code:
URL GOTO={{!COL1}}
TAG POS=1 TYPE=TEXTAREA FORM=ACTION:/ajax/updatestatus.php ATTR=NAME:xhpc_message CONTENT={{content}}
TAG POS=1 TYPE=TEXTAREA FORM=ACTION:/ajax/updatestatus.php ATTR=NAME:xhpc_message CONTENT={{content}}
TAG POS=1 TYPE=INPUT:SUBMIT ATTR=VALUE:Post
WAIT SECONDS = 50

It Works!!!!! - Thank you!!!!!
 
hi fsatark,try adding another duplicate line with xhpc_message, like this:
Code:
URL GOTO={{!COL1}}TAG POS=1 TYPE=TEXTAREA FORM=ACTION:/ajax/updatestatus.php ATTR=NAME:xhpc_message CONTENT={{content}}TAG POS=1 TYPE=TEXTAREA FORM=ACTION:/ajax/updatestatus.php ATTR=NAME:xhpc_message CONTENT={{content}}TAG POS=1 TYPE=INPUT:SUBMIT ATTR=VALUE:PostWAIT SECONDS = 50
Thanks for the info guys! I wonder if you guys are still using this script? Or has it evolved?I had all but given up on FB with iMacros because whatever I have tried has been painful. I think I originally tried something along the lines you have above and could not get it to work. Went over to X/Y methodology with same result. Still looking every now and then and stumbled across your post, tried you code above and well for me it is the same old thing. Even repeating the line as per the above I am getting the text field selected with a blue surrounding line but no content pasted into the textfield. Where is this going wrong - format of the content perhaps?Here is what I am trying to use - any help gratefully appreciated!
Code:
CMDLINE !DATASOURCE "C:\\post_to_facebook.csv"TAB CLOSEALLOTHERS  TAB T=1 Set !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*10 + 10); randomNumber;")    SET !VAR2 EVAL("var randomNumber=Math.floor(Math.random()*10 + 20); randomNumber;")Set !VAR3 "C:\\DocumentsandSettings\\xxxxxxxx\\MyDocuments\\Facebook_Tasting_Vietnam.txt"SET !VAR4 "GoodMorningVietnam"SET !ERRORIGNORE YESSET !REPLAYSPEED FASTSET !DATASOURCE_COLUMNS 1SET !TIMEOUT_PAGE 15SET !DATASOURCE_LINE {{!LOOP}}URL GOTO={{!COL1}}TAG POS=1 TYPE=TEXTAREA FORM=ACTION:/ajax/updatestatus.php ATTR=NAME:xhpc_message CONTENT={{!VAR4}}TAG POS=1 TYPE=TEXTAREA FORM=ACTION:/ajax/updatestatus.php ATTR=NAME:xhpc_message CONTENT={{!VAR4}}WAIT SECONDS ={{!VAR1}}TAG POS=1 TYPE=INPUT:SUBMIT ATTR=VALUE:PostWAIT SECONDS ={{!VAR2}}
 
Last edited:
i tried everything but it just don't write a text can anyone please help me?
 
always try out any bots on a test account to start with, there is a high chance of getting banned.
 
i have my own coded software

i get manually all friends list
then the rest is done by the software

but even 180 sec delay get marked as spam after a while and it forces you to change password answer captcha etc :D

i am using internet explorer 10
 
Would like a bot to post on all friends wall too.. Ive been looking for ages and no luck :(
 
Back
Top