Jump to content
UBot Underground

Varo

Fellow UBotter
  • Content Count

    111
  • Joined

  • Last visited

  • Days Won

    9

Posts posted by Varo

  1. add your value (0.22) to the list, sort the list, find index position value from list.

    set(#target,0.22,"Global")
    clear list(%source)
    add list to list(%source,$list from text("0.38
    0.33
    0.30
    0.25
    0.20
    0.17
    0.12","
    "),"Delete","Global")
    add item to list(%source,#target,"Delete","Global")
    clear list(%sorted)
    add list to list(%sorted,$list from text($sort list(%source,"Ascending"),"
    "),"Delete","Global")
    set(#position,0,"Global")
    loop while($comparison(#target,"!= Does not equal",$list item(%sorted,#position))) {
        increment(#position)
    }
    alert("value under target price : {$list item(%sorted,$subtract(#position,1))} 
    value over target price: {$list item(%sorted,$add(#position,1))}")
    

     

  2. Your if condition is wrong.

    Try this :

    clear table(&data)
    ui open file("Load CSV",#data)
    create table from file(#data,&data)
    ui drop down("Column to Check","0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26",#columnToCheck)
    ui block text("Desired Keywords",#desiredKeywords)
    set(#row,1,"Global")
    loop(5) {
        if($contains($table cell(&data,#row,#columnToCheck),#desiredKeywords)) {
            then {
                alert("Found")
            }
            else {
                alert("Not Found")
            }
        }
        increment(#row)
    }
    

     

  3. You mean like this:

    set user agent("Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:80.0) Gecko/20100101 Firefox/80.0")

    set header("Referrer","https://www.dogs.com")

    navigate("https://whatismyreferer.com","Wait")

     

    Nope - that doesn't work either.

    i use this site and worked

    https://www.whatismybrowser.com/detect/what-http-headers-is-my-browser-sending
    

    i tried _https://whatismyreferer.com/

    not working.

     

    edit:

    try use this :

    set header("Referer","https://www.dogs.com")

    navigate("https://whatismyreferer.com/","Wait")

     

    i just tried it and it worked

     

    • Like 1
  4. I already installed the plugin and seems to work, but when i try to add scraped content to a lage list using page scrape it gives me a plugin error that sais that the command is not in the dictionary. 

     

    How do i scrape content in a page to add to a large list?

     

    plugin command("Bigtable.dll", "large List from text", "test", $scrape attribute(<tagname="a">,"href"), "
    ", "replace")
    alert($plugin function("Bigtable.dll", "Large list return", "test"))
    

     

  5. Hi you can use this code to click Like comment button on youtube

    The number inside bracket [3] is show the sequence of the comment,

    for comment no 1 you use [1].

    plugin command("ExBrowser.dll", "ExBrowser Click", "x:(//ytd-toggle-button-renderer[@id=\'like-button\']/a/*/button[contains(@aria-label,\'like this comment\')])[3]")
    
    
×
×
  • Create New...