BlingBling
Newbie
- Oct 3, 2009
- 22
- 19
I am working on an imacros script myself. It is a auto poster for my vbulletin forums
Here is what I have so far
This will only post to the first category, but I will just use admin account to move posts to other sections of the forum.
Col 1 is a list of usernames on the forum (all passwords the same)
Col 2 is a list of Post Content, with spaces replaced with <SP>
Col 3 is a list of Post Titles, with spaces replaced with <SP>
Any idea on how to improve on this as it is quite simple so far.
Like one question I have is can I use something within excel to automatically convert spaces into <SP>? I'm using Notepad to do it and its kind of a pain.
Thanks alot!!
Code:
TAB T=1
SET !DATASOURCE C:\Poster.csv
SET !DATASOURCE_COLUMNS 3
SET !LOOP 1
SET !DATASOURCE_LINE {{!LOOP}}
TAB CLOSEALLOTHERS
URL GOTO=http://www.websitegoeshere.com/forum/login.php?do=logout
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:http://www.website.com/forum/login.php?do=login ATTR=ID:navbar_username CONTENT={{!COL1}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:http://www.cpacracked.com/forum/login.php?do=login ATTR=ID:navbar_password CONTENT=passwordgoeshere
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:http://www.cpacracked.com/forum/login.php?do=login ATTR=VALUE:Log<SP>in
TAG POS=1 TYPE=A ATTR=TXT:CATEGORY<SP>NAME<SP>HERE
TAG POS=1 TYPE=A ATTR=ID:newthreadlink_top
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:vbform ATTR=ID:subject CONTENT={{!COL3}}
TAG POS=1 TYPE=TEXTAREA FORM=NAME:vbform ATTR=ID:vB_Editor_001_textarea CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:vbform ATTR=ID:vB_Editor_001_save
TAG POS=1 TYPE=A ATTR=TXT:Forum
ONDIALOG POS=1 BUTTON=OK CONTENT=
TAG POS=1 TYPE=A ATTR=TXT:Log<SP>Out
Col 1 is a list of usernames on the forum (all passwords the same)
Col 2 is a list of Post Content, with spaces replaced with <SP>
Col 3 is a list of Post Titles, with spaces replaced with <SP>
Any idea on how to improve on this as it is quite simple so far.
Like one question I have is can I use something within excel to automatically convert spaces into <SP>? I'm using Notepad to do it and its kind of a pain.
Thanks alot!!
Last edited: