Jump to content
UBot Underground

Varo

Fellow UBotter
  • Content Count

    111
  • Joined

  • Last visited

  • Days Won

    9

Varo last won the day on November 9 2021

Varo had the most liked content!

Community Reputation

28 Excellent

About Varo

  • Rank
    Advanced Member

Profile Information

  • Gender
    Not Telling

System Specs

  • OS
    Windows 10
  • Total Memory
    More Than 9Gb
  • Framework
    unsure
  • License
    Developer Edition

Recent Profile Visitors

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

  1. Ubot 6.3.9 is unstable at the moment, you can downgrade to version 5.9.55.
  2. Ubot built in browser is pretty old. It keep crashing on twitter.
  3. 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
  4. You should use add list to list not add item to list. %businessnames already using add list to list, but the other lists are still using add item to list.
  5. I've tried on exbrowser and external browser ubot 6, both worked.
  6. Have you tried using exbrowser plugin or external browser on ubot 6 ?
  7. when you run the bot, close the csv file.
  8. I've tried it too, and its worked. Remember that your desired keywords is case sensitive. Try use Owner, not owner.
  9. 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) }
  10. Its not direct link download, you must through login process to get cookie, and then download the file. send POST request to : and then you can download the file
  11. i suggest to clear all ubot installation and reinstall, Make sure Net Framework and Microsoft Visual C++ installed correctly. And you need fast internet connection on first launch ubot.
  12. You can try on another machine and compare the results. To find the problem is your system or uBot.
×
×
  • Create New...