Heres a little php curl script that i made the other day that auto posts random messages across vbulltein forums
the idea of this php script is to random generate a thread number then tag on a generic post to that thread , saying something like, thanks for info, cool thats nice, that info helped me, just like random thank you messages etc etc
once you have then made hunderds or thousands of posts in a forum you can go back into the usr cp and add in your sig etc, of course linking into your site(s), or use something like the link in a simily in the posts , like mentioned here on the forums
edit the config variables at the top of the script
1: you will of course first need to sign up to a vbulltein forum
2: enter in your username and password
3: enter the forum url
4: look at the amount of threads in the forum and change the rand number generater to the max amount of threads ( also its good to set the lower number in the random number generater to a few thousand under the max amount so your not posting to threads that are years old)
5: then just point your browser to the script and it will randomly post to a forum you have entered in the config variables
6: in vbposter.php also change the curl path to cookies , 'C:xampphtdocscurlbotcookies.txt'); //cookies.txt, you will need to change this to your path where cookies are stored, notice the backward slashes are remove, you need to re enter them if you testing this on a windows box, or change this to somthing like /tmp in linux servers
LIB_parse.php
the idea of this php script is to random generate a thread number then tag on a generic post to that thread , saying something like, thanks for info, cool thats nice, that info helped me, just like random thank you messages etc etc
once you have then made hunderds or thousands of posts in a forum you can go back into the usr cp and add in your sig etc, of course linking into your site(s), or use something like the link in a simily in the posts , like mentioned here on the forums
edit the config variables at the top of the script
1: you will of course first need to sign up to a vbulltein forum
2: enter in your username and password
3: enter the forum url
4: look at the amount of threads in the forum and change the rand number generater to the max amount of threads ( also its good to set the lower number in the random number generater to a few thousand under the max amount so your not posting to threads that are years old)
5: then just point your browser to the script and it will randomly post to a forum you have entered in the config variables
6: in vbposter.php also change the curl path to cookies , 'C:xampphtdocscurlbotcookies.txt'); //cookies.txt, you will need to change this to your path where cookies are stored, notice the backward slashes are remove, you need to re enter them if you testing this on a windows box, or change this to somthing like /tmp in linux servers
LIB_parse.php
Code:
<?php
/***********************************************************************
$value = return_between($string, $start, $end, $type)
-------------------------------------------------------------
DESCRIPTION:
Returns a substring of $string delineated by $start and $end
The parse is not case sensitive, but the case of the parsed
string is not effected.
INPUT:
$string Input string to parse
$start Defines the beginning of the sub string
$end Defines the end of the sub string
$type INCL: include delineators in parsed string
EXCL: exclude delineators in parsed string
***********************************************************************/
function return_between($string, $start, $stop, $type)
{
$temp = split_string($string, $start, AFTER, $type);
return split_string($temp, $stop, BEFORE, $type);
}
?>
Last edited: