Jump to content
UBot Underground

cob007

Members
  • Content Count

    352
  • Joined

  • Last visited

  • Days Won

    6

Posts posted by cob007

  1. hI TJ,

     

    So can we use exbrowser to make autotweets on twitter? Because even using http plugin as below(purchased from a vendor)  doesnt seem to work and doesn't auto-post anything on twitter....

     

    define RANKINCREASER_TWITTER {
        plugin command
    ("HTTP post.dll"
    , "http max redirects", 10)
        plugin command("HTTP post.dll", "http auto redirect", "Yes")
        plugin command("HTTP post.dll", "http cookies folder", "C:\\cookies")
        set(#rankincreaser_twitter_accounts_listpos,0,"Global")
        set(#rankincreaser_current_action,"Starting Twitter Module","Global")
        loop($list total(%rankincreaser_twitter_accounts_list)) {
            set(#rankincreaser_videos_kw_listpos,0,"Global")
            set(#twitter_home_html,$plugin function("HTTP post.dll", "$http get", "http://twitter.com", "", "", #rankincreaser_proxy, ""),"Global")
            load html(#twitter_home_html)
            set(#twitter_auth_token,$plugin function("File Management.dll", "$Find Regex First", #twitter_home_html, "(?<=<input type=\"hidden\" value=\").*?(?=\" name=\"auth)"),"Global")
            set(#twitter_user,$replace($replace($find regular expression($list item(%rankincreaser_twitter_accounts_list,#rankincreaser_twitter_accounts_listpos),".*?(?=:)"),"
    ",""),"
    ",""),"Global")
            set(#twitter_pass,$find regular expression($list item(%rankincreaser_twitter_accounts_list,#rankincreaser_twitter_accounts_listpos),"(?<=:).*"),"Global")
            set(#rankincreaser_current_action,"Logging {#twitter_user}","Global")
            set(#twitter_login_post,$plugin function("HTTP post.dll", "$http post", "https://twitter.com/sessions", "session%5Busername_or_email%5D={$plugin function("SocketCommands.dll", "$url encode", #twitter_user)}&session%5Bpassword%5D={$plugin function("SocketCommands.dll", "$url encode", #twitter_pass)}&return_to_ssl=true&scribe_log=&redirect_after_login=%2F&authenticity_token={#twitter_auth_token}", "", "", #rankincreaser_proxy, ""),"Global")
            load html(#twitter_login_post)
            increment(#rankincreaser_twitter_accounts_listpos)
            if($comparison($find regular expression(#twitter_login_post,"login\\\\/error"),"=","login\\/error")) {
                then {
                    set(#rankincreaser_current_action,"Login error({#twitter_user})","Global")
                }
                else {
                    RANKINCREASER_WAIT()
                    loop($list total(%rankincreaser_videos_kws_list)) {
                        set(#rankincreaser_current_action,"Sharing({#rankincreaser_videos_kw_listpos})","Global")
                        set(#twitter_home_html,$plugin function("HTTP post.dll", "$http get", "http://twitter.com", "", "", #rankincreaser_proxy, ""),"Global")
                        set(#twitter_auth_token,$find regular expression(#twitter_home_html,"(?<=<input type=\"hidden\" value=\").*?(?=\" name=\"auth)"),"Global")
                        set(#twitter_status_text,$replace regular expression($list item(%rankincreaser_videos_kws_list,#rankincreaser_videos_kw_listpos),"(?<=.*v.*):"," "),"Global")
                        set(#twitter_post_status_HTML,$plugin function("HTTP post.dll", "$http post", "https://twitter.com/i/tweet/create", "authenticity_token={#twitter_auth_token}&place_id=&status={$plugin function("HTTP post.dll", "$url encode", #twitter_status_text)}&tagged_users=", "", "", #rankincreaser_proxy, ""),"Global")
                        load html(#twitter_post_status_HTML)
                        increment(#rankincreaser_videos_kw_listpos)
                        wait(15)
                    }
                    RANKINCREASER_CHANGE_PROXY()
                }
            }
        }

  2. i already explained and sent you all the required need to be done changes. liquidweb is your host, and meter's web server is working using the localhost a.k.a your liquidweb php mailer host

     

    if you want to use liquidweb follow my instructions and do the changes i sent you to send email using the local mailer.

     

    follow the instructions, simpler, impossible!

     

    It is all working fine now, thanks for the great support!

    • Like 1
  3. Hi macster,

     

    Thanks for great product and support! I was referring to this post by sunny on #147 where he mentions about solving the antivirus issue and that you had introduced that method for the same, but I couldn't find it anywhere.

    For anyone still sitting on the fence, I would highly recommend all 3 licensing products by meter, tj and macster to make your bots more professional.

  4. Yes you will be able to use your ubotlocker protection and dll's and same API from the mod, and you can either continue using the online service to license your apps to worry only on developing, or buy the Unleashed Mod to manage it for your self. 

    Hi macster,

     

    I am a little confused, should I now wait and buy the online service of unleased mod of yours or else buy the ubot locker unleashed for 147? Whats the difference?Which one is better?

  5. Hi,

     

    For all those who purchased this if you try running the software now, the youtube titles, descriptions, comments etc is not working because I think youtube has changed its API to V3.0.

     

    I contacted runsoftware through skype about the software not working because at that time I didn't know it was an API issue and he was saying it was possibly a Regex issue but basically runsoftware didn't co-operate to make changes to the software.

     

    I paid 150 bucks for both versions and I had expected him to atleast offer some customer support and look into his code and make the change.

     

    if anyone who has purchased is able to make the change themselves it would be great if you can share the code. I am not an API expert by any means although I tried looking into the youtube API V3.0 documentation and tried making the change but it didn't work.

  6. Hello,

     

    This was the original command to scrape youtube API which used to work before youtube decided to stop API-2.Although I replaced http://gdata.youtube.com/feeds/api/videoswith "https://www.googleapis.com/youtube/v3" even that didn't help to scrape the titles, views,likes and comments.

    I guess its more of problem with youtube API than regular expression used here.

     

     

     

    define GET VIDEO TITLE {
        set
    (#logtext
    ,"[{$find regular expression($date,"\\d+:\\d+:\\d+")}]Getting title, views, likes and comments of video: {$plugin function("LocalDictionary.dll", "$local dictionary get", "video id")}<br>","Global")
        navigate("http://gdata.youtube.com/feeds/api/videos/{$ /{$plugin function("LocalDictionary.dll", "$local dictionary get", "video id")}?v=2&alt=json","Wait")
        save to file("C:\\1.csv.txt",$document text)
        plugin command("LocalDictionary.dll", "local dictionary add", "video html", $document text)
        plugin command("LocalDictionary.dll", "local dictionary add", "video title", $find regular expression($plugin function("LocalDictionary.dll", "$local dictionary get", "video html"),"(?<=\"title\":\\\{\"\\$t\":\").*?(?=\")"))
        set table cell(&table,$plugin function("LocalDictionary.dll", "$local dictionary get", "thread row"),2,"<td>{$plugin function("LocalDictionary.dll", "$local dictionary get", "video title")}</td>")
        plugin command("LocalDictionary.dll", "local dictionary add", "views", $replace($find regular expression($plugin function("LocalDictionary.dll", "$local dictionary get", "video html"),"(?<=viewCount\":\").*?(?=\")"),".",""))
        plugin command("LocalDictionary.dll", "local dictionary add", "likes", $replace($find regular expression($plugin function("LocalDictionary.dll", "$local dictionary get", "video html"),"(?<=\"numLikes\":\").*?(?=\")"),".",""))
        plugin command("LocalDictionary.dll", "local dictionary add", "comments", $find regular expression($plugin function("LocalDictionary.dll", "$local dictionary get", "video html"),"(?<=\"countHint\":)\\d+"))
        set table cell(&table,$plugin function("LocalDictionary.dll", "$local dictionary get", "thread row"),4,"<td>{$plugin function("LocalDictionary.dll", "$local dictionary get", "views")}</td>")
        set table cell(&table,$plugin function("LocalDictionary.dll", "$local dictionary get", "thread row"),5,"<td>{$plugin function("LocalDictionary.dll", "$local dictionary get", "likes")}</td>")
        set table cell(&table,$plugin function("LocalDictionary.dll", "$local dictionary get", "thread row"),6,"<td>{$plugin function("LocalDictionary.dll", "$local dictionary get", "comments")}</td>")
    }
     

  7. Hi botguru

     

    Looks great, just a few feature requests if at all possible:

     

    1. ability to reset license for a set number of times per week or month

    2. Trial licenses valid for 24 or 48 hours etc -based on time..

    3. Add date of when license was added to database.

    - last access data, last access ip, and last access version added to licenses.

  8. Hi CJ,

     

    Thanks a lot, I didn't know advanced systems was able to do that, I used my advanced systems plugin. Between what I don't get it is,what is the use of,

     

    on load("Bot Loaded") {
        plugin command("Advanced Ubot.dll""auto free memory""Force", 30, "False""False""True")
    }

     

    what does auto free memory do and why is it important?

  9. If I don't want the user to right-click and run as an admin each time he runs the bot, is there any way possible to override the settigs. This so happens to run as admin because of ubot locker and some users dont want to right-click and run as an admin again and again or tend to forget

  10. Thanks pash,

     

     

     

    How do I get the memory optimizer status to show how much memory etc is being used in the bot like in the image?

     

    I used the following command;do I have to use this command and assign to it some varaible to track or some other command?

     

    on load("Bot Loaded") {
        plugin command("Advanced Ubot.dll""auto free memory""Force", 30, "False""False""True")
    }

     

     

     

     

    post-16700-0-59231700-1453550478_thumb.png

  11. Ok just to update, I did create restart button and it restarted after 5 seconds, but it didn't restart exactly from where I had stopped the bot. what is the app restart check as shown in above video and how can we use the argument field inside the restart app command?

×
×
  • Create New...