Jump to content
UBot Underground

rumen

Fellow UBotter
  • Content Count

    55
  • Joined

  • Last visited

Community Reputation

3 Neutral

About rumen

  • Rank
    Advanced Member

Profile Information

  • Gender
    Male
  • Location
    Bulgaria

System Specs

  • OS
    Windows 8
  • Total Memory
    3Gb
  • Framework
    v3.5 & v4.0
  • License
    Professional Edition

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Make bot read variables from txt file in appl dir.With bat file 1.write txt file to appl dir with vars needed . Next pass command line with /auto only. Good luck
  2. Hi ugakebet, You have this kind of problems long time ago. This can be solution for U. define $Substring(#Sign to search, #String to search, #After which sign is substrin to return) { set(#string, #String to search, "Local") loop(#After which sign is substrin to return) { set(#Index, $find index(#string, #Sign to search), "Local") set(#string, $substring(#string, $eval($add(#Index, 1)), $eval($subtract($text length(#string), $eval($add(#Index, 1))))), "Local") } return(#string) } set(#Substring, $Substring(",", "Random Question,jessica biel,If you have five
  3. To test any js in the page where must be declared.To test your java script You can use load html("<script type=\"text/javascript></script>") then "run java script" command. Best
  4. Thats my way. clear table(&Old table) clear table(&New table) clear list(%Temp) create table from file(".yourDataFile", &Old table) save to file(".temp", &Old table) clear table(&Old table) add list to list(%Temp, $list from file(".temp"), "Delete", "Global") save to file(".temp", %Temp) clear list(%Temp) create table from file(".temp", &New table) Have luck
  5. Thanks Kevin for good idea and Chainsaw for implement. Just small correction in the define to work : define append(#data, #filename) { save to file(".temp", "{#data}{$new line}") shell("cmd.exe /C type .temp >> \"{#filename}\"") }
  6. load html("asdkdsfsdfsdf<br> sdfslkdfjlskdfj<br> <br> http://google.com/<br> <br> asdasdasd<br> asdasdasd<br> asdasdaffdgökfdjgöfjklghfg<br> hfgöhklfölgkhölfkghfghfgh<br>") set(#Url_text, $find regular expression($document text, "[a-z][a-z0-9+\\-.]*://.*\\.[a-z][a-z0-9+\\-.]*"), "Global")
  7. rumen

    About Tables

    ui open file("Excel File To Process", #xcel) define test { create table from file(#xcel, &excel) type text(<name="q">, $table cell(&excel, 1, 1), "Standard") } if($comparison(#xcel, "=", $nothing)) { then { alert("Please choose file first") stop script } else { navigate("google.com", "Wait") test() } } ps:ui commands must be outside define.
  8. Smarter is to use "load html" command in new browser where You can format all text using html tags like <br> <strong>.... then scrape "document text" to variable and "change value" of field in main window.
  9. Smarter way is to check and see how many processes yourexename.exe*32 is running via shell with VBscript on start up.Good news is You can limit how many bots can be run.VBscript can parse a list of processes in a text file and You can count the processes.If You have other questions for this way I will response tomorrow because of 1 post per day restriction of the forum.
  10. Hi ugakabet, Sorry for my late response but in the forum has restriction for 1 post a day. Next regex will match all after second comma in the given example ' from 'Name::,cfield_6,First and/or last name.' (?<=\,.*?\,).* Hope this will help.
  11. When You have "cfield_6" You can replace it with nothing in Your text. Result will be "match everything except" that You want. Best
  12. Here is the regex for You. (?<=\,).*?(?=\,) Use find regular expression to add item or list to Your list.
  13. navigate("http://www.whynotad.com/login", "Wait") if($exists(<email field>)) { then { change attribute(<name="login">, "value", "rebekahc294") change attribute($element offset(<email field>, 0), "value", "rebekahc294@dispostable.com") change attribute(<password field>, "value", "z8tPvPCy33") click($element offset(<login link>, 2), "Left Click", "No") wait for browser event("Page Loaded", "") } else { } } navigate("http://www.whynotad.com/place-free-advertising", "Wait") type text(<name="title">, "This i
  14. The good news is CS resolves more type captchas than offered. I'm using command line because of more control and with some test captchas that are unknown are resolved with very good percent.So - my advice : test it even with not offered captchas .
  15. This is my answer to Mikey/Captcha sniper developer/ how I'm using captcha sniper in my bots.This is one of the methods to use Captha sniper.If You have questions on usage PM me.
×
×
  • Create New...