Jump to content
UBot Underground

bestmacros

Fellow UBotter
  • Content Count

    415
  • Joined

  • Last visited

  • Days Won

    13

Posts posted by bestmacros

  1. this should do the trick:

     

     

    set(#scraped, "<a href=\"/watch?v=-55U2DIeAYw\" class=\"vm-video-title-content yt-uix-sessionlink\" data-sessionlink=\"ei=CJzZ_Z2XorUCFcuBIQod82TudA%3D%3D\">My Movie</a>", "Global")
    set(#index, $find index(#scraped, "v="), "Global")
    set(#index2, $find index(#scraped, "class"), "Global")
    set(#result, $substring(#scraped, $add(#index, 2), $subtract($subtract(#index2, 4), #index)), "Global")
  2. Hello!
    I'm interested in exchanging links with websites related to UBOT bots, iMacros scripts, web automation and so on.
    I can put your link on one of my websites:
    http://www.bestmacros.com - PR2
    http://imacrosbot.com - PR1
    http://bimacros.com - PR1
    http://bestfirefoxmacros.com - PR1


    I will put up to 100 links on each site.
    I will exchange in 1:1 ratio - if you put 4 links on your site, I will put your link on all of my websites, while if you put one link, I will put your link only to one of my websites.
    I will check existence of my links on your site once a week.

    Requirements:
    1. your website should be related to imacros, bots, scripts, web automation and so on.
    2. your website should have PR1 or higher.
    3. you should put link to one of my sites (or all of them) on the page accessible from the main page of your site (do not put it on some kind of hidden internal page).
    4. you should own your domain, no free 3rd level domain.

    examples:
    http://imacrosbot.com/imacrosbot---links
    http://www.bestmacros.com/page/links
    http://www.bimacros.com/bimacros---links
    http://www.bestfirefoxmacros.com/links

  3. You right ! I'm using Global all other the place, will try to switch to local for each define. Thanks for the help!

    I'm not really sure that is the issue that you have, but if you're stating that you need to re-DEFINE your custom commands/functions for each thread, then I'm afraid YOU are doing something wrong there. 
    (no offense meant, just trying to help you)

     

    My guess is you are using GLOBAL variables in your code, all over, including the DEFINEs .. which, if it were true, might indeed mix up values and render you bots useless, in my opinion.

     

    On the other hand, if your variables are set as LOCAL in each DEFINE, you can repeatedly call the same function/command in each thread and it should keep the values confined to that thread, thus, w/o mixing them with other threads running concurrently, there is no room left for errors anymore
    (at least from THIS issue << which I observed to be a common mistake in people's coding)

     

    Hope this helps...

  4. it is good post and I've encountered same problem with thread command, in my opinion current implementation of thread command is only useful for ddos some site or things like this, because if I want to perform some task in let's say 20 threads I would need to create 20 define's for each tread - it is insane!

    And what if I want 100 threads :o ?  

×
×
  • Create New...