1. PostWorks

    PostWorks is a PHP framework I’m coding right now, that allows automated posting on popular forum software such as MyBB and vBulletin. The goal is to make automation for forum bots simple and effective. Here’s an example of  the code required to login into a forum and make a thread:


    [code lang="php"]
    include "core.php";
    $poster->useForum('mybb');
    $poster->baseUrl = "http://compwhizii.net/mybbdev/";
    $poster->forum->login('bot', 'pass');
    $poster->forum->newThread('2', 'Test thread', '4',
    'This is a test of the threadworks posting robot.');
    [/code]


    The bot framework will have support for features such as avatars and signatures, and over time more forum software. Also in progress is modules, for features specific to certain sites or addons to stock forum code. An example of this would be MyPS on MyBB.

    The code is over at github, fork it and help out http://github.com/compwhizii/PostWorks

    2 years ago  /  0 notes  /  Comments

  2. blog comments powered by Disqus